[main] More styling, and some content in job
All checks were successful
Build, Push, and Deploy to Nomad / docker-nomad (push) Successful in 51s

This commit is contained in:
2024-12-31 00:43:04 +01:00
parent 1b3d03cd70
commit a126778f16
9 changed files with 3190 additions and 7 deletions

View File

@@ -51,11 +51,11 @@
<link rel="preload" href="/static/webfonts/fa-solid-900.woff2" as="font" type="font/woff2" crossorigin="anonymous">
<!-- Hoved CSS -->
<link rel="stylesheet" href="/static/css/main.min.css?v={{ timestamp }}" media="print" onload="this.media='all'">
<link rel="stylesheet" href="/static/css/main.css?v={{ timestamp }}" media="print" onload="this.media='all'">
<!-- Fallback for brugere uden JavaScript -->
<noscript>
<link rel="stylesheet" href="/static/css/main.min.css?v={{ timestamp }}">
<link rel="stylesheet" href="/static/css/main.css?v={{ timestamp }}">
</noscript>
</head>
<body class="is-preload" lang="da">

View File

@@ -25,9 +25,8 @@
<div class="mini-posts">
{% for favorite in data.favorites %}
<article>
<!-- Fucking crap - Ignoreing all CSS image tags in mini-posts -->
<a href="/category/{{ favorite.path }}" >
<img src="/{{favorite.image}}" alt="{{ favorite.name }}" height="{{ favorite.height }}" width="{{ favorite.width }}" />
<a href="/category/{{ favorite.path }}" class="image">
<img class="fav-image" src="/{{favorite.image}}" alt="{{ favorite.name }}" height="{{ favorite.height }}" width="{{ favorite.width }}" />
</a>
<p><b>{{ favorite.path }}</b>: {{ favorite.description }}</p>
</article>