rescue old vm stuff

This commit is contained in:
2022-11-05 17:18:04 +01:00
parent e17cf3eaeb
commit 219f4097ff
17 changed files with 1405 additions and 1617 deletions

View File

@@ -3,7 +3,11 @@
{% block title %}page_name{% endblock %}
{% block body %}
{{ page_content | raw }}
{{ page.content | raw }}
<br>
Page created by: {{ owner }} at {{ created_at }}
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 %}