Skip to content

Instantly share code, notes, and snippets.

@joanteixi
Last active December 28, 2015 01:39
Show Gist options
  • Save joanteixi/7421670 to your computer and use it in GitHub Desktop.
Save joanteixi/7421670 to your computer and use it in GitHub Desktop.
{% macro box(concert) %}
<div>
{% spaceless %}
<h2>
<span class='time'>{{ concert.time|date('d-m-Y, H:i') }}</span>
{{ concert.name | title}}
</h2>
{% endspaceless %}
<p class="place">{{ concert.place }}</p>
</div>
{% endmacro %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment