Lets see what lighthouse says
All checks were successful
Build, Push, and Deploy to Nomad / docker-nomad (push) Successful in 37s

This commit is contained in:
2024-12-22 00:09:07 +01:00
parent 42f765366d
commit 87efffe1c1
5 changed files with 24 additions and 39 deletions

View File

@@ -110,11 +110,11 @@
</div> <!-- Closing wrapper div -->
<!-- Scripts med defer for at undgå blokerende indlæsning -->
<script src="/js/jquery.min.js" defer></script>
<script src="/js/browser.min.js" defer></script>
<script src="/js/breakpoints.min.js" defer></script>
<script src="/js/util.js" defer></script>
<script src="/js/main.js" defer></script>
<script src="/js/modal_handler.js?v={{ timestamp }}" defer></script>
<script src="/static/js/jquery.min.js" defer></script>
<script src="/static/js/browser.min.js" defer></script>
<script src="/static/js/breakpoints.min.js" defer></script>
<script src="/static/js/util.js" defer></script>
<script src="/static/js/main.js" defer></script>
<script src="/static/js/modal_handler.js?v={{ timestamp }}" defer></script>
</body>
</html>

View File

@@ -26,7 +26,7 @@
{% for favorite in data.favorites %}
<article>
<a href="/category/{{ favorite.path }}" class="image">
<img src="{{favorite.image}}" alt="{{ favorite.name }}" height=300 width=40/>
<img src="/static/{{favorite.image}}" alt="{{ favorite.name }}" height=300 width=40/>
</a>
<p><b>{{ favorite.path }}</b>: {{ favorite.description }}</p>
</article>