alexdaniels.me/templates/front/page/index.html.twig

17 lines
388 B
Twig
Raw Normal View History

2026-06-03 17:18:50 -07:00
{% 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 %}