using rocket instead of astro

This commit is contained in:
Philippe Loctaux 2023-12-01 10:54:31 +01:00
parent eb72400722
commit e61ef1d4c3
79 changed files with 4406 additions and 8501 deletions

10
templates/content.html Normal file
View file

@ -0,0 +1,10 @@
{% extends "base.html" %}
{% block container %}
<main class="container mx-auto px-4 py-16">
<h1 class="text-3xl sm:text-4xl font-bold">{{ title }}</h1>
<div class="mt-8">
{% block content %}{% endblock %}
</div>
</main>
{% endblock %}