Initial Build

This commit is contained in:
Alex 2026-06-03 17:18:50 -07:00
parent 71cd3acccd
commit 6c0d9a3f98
140 changed files with 9802 additions and 2403 deletions

View file

@ -0,0 +1,16 @@
{% extends 'base.html.twig' %}
{% block title %}{{page.title}} | Alex Daniels{% endblock %}
{% block body %}
<section class="page">
<h2>{{page.title}}</h2>
{% if app.user %}
<a href="/brain/page/edit/{{page.id}}">Edit</a><br>
{% endif %}
<div class="text">
{{ page.text|raw}}
</div>
</section>
{% endblock %}