symlinked default

This commit is contained in:
2022-11-15 16:34:59 +01:00
parent 5ee0e85903
commit 1d783f0cc6
21 changed files with 934 additions and 16 deletions

View File

@@ -0,0 +1,13 @@
{% extends '@default/base.html.twig' %}
{% block title %}page_name{% endblock %}
{% block body %}
{{ page.content | raw }}
<br>
Page created by: <a href="{{ path('app_profile', { 'username': page.owner.username }) }}">{{ page.owner.username }}</a>
{{ page.createdAt | ago }}
{% if page.modifiedAt %}
(last update: {{ page.modifiedAt | ago }})
{% endif %}
{% endblock %}