10 lines
208 B
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 %}
|