minijinja running

This commit is contained in:
Per Stark
2024-12-18 20:37:31 +01:00
parent 7712537f23
commit e54533d005
10 changed files with 1402 additions and 31 deletions

View File

@@ -1,3 +1,4 @@
HELLO THIS IS OUTSIDE THE BLOCK
{% block content %}
<div class="max-h-full grid place-items-center place-content-center">
<div class="max-w-md mx-auto">

View File

@@ -1,3 +1,5 @@
{% extends "body_base.html" %}
{% block content %}
<div class="flex flex-col items-center justify-center min-h-[80vh] space-y-8">
<!-- Hero Section -->
<div class="text-center space-y-4 mb-8">
@@ -24,4 +26,5 @@
<div id="search-results" class="w-full max-w-2xl mt-4">
<!-- Results will be populated here by HTMX -->
</div>
</div>
</div>
{% endblock %}