This repository has been archived on 2025-06-23. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
joeac.net-symfony/templates/note.html.twig

10 lines
208 B
Twig

{% extends 'base.html.twig' %}
{% block content %}
<section>
<h1>Note</h1>
<time>{{ note.getPublishedDate().format('c') }}
<p>{{ note.content }}</p>
</section>
{% endblock %}