Skip to content

Instantly share code, notes, and snippets.

@ottaviano
Created December 12, 2018 00:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ottaviano/98a22faf341121198a88ab46ba36031d to your computer and use it in GitHub Desktop.
Save ottaviano/98a22faf341121198a88ab46ba36031d to your computer and use it in GitHub Desktop.
{% extends 'base.html.twig' %}
{% block body %}
<ul>
{% for key, post in posts %}
<li>#{{ key + 1 }} | {{ post.title }} ({{ post.date|date('d/m/y') }})</li>
{% endfor %}
</ul>
{% endblock %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment