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

15
templates/pages/root.html Normal file
View file

@ -0,0 +1,15 @@
{% extends "base.html" %}
{% block container %}
{% include "pages/root/hero-image.html" %}
<main class="container mx-auto px-4 md:px-8 lg:px-16 py-16">
{% include "pages/root/whoami.html" %}
<div class="my-16 space-y-16 md:space-y-32">
{% include "pages/root/www.html" %}
{% include "pages/root/jobs.html" %}
{% include "pages/root/projects.html" %}
{% include "pages/root/talks.html" %}
{% include "pages/root/friends.html" %}
</div>
</main>
{% endblock %}