Created
May 24, 2017 17:54
-
-
Save NandoKstroNet/c9df4d0d6c85cb9528050b82b902bbe6 to your computer and use it in GitHub Desktop.
View Twig da série sobre Symfony da Code Experts Learning
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% extends 'base.html.twig' %} | |
{% block stylesheets %} | |
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/css/bootstrap.css"> | |
{% endblock %} | |
{% block body %} | |
<div class="container"> | |
<div class="col-md-12"> | |
{% for p in posts %} | |
<div class="col-md-4"> | |
<h2> | |
<a href="{{ path('view_post',{'slug' : p.slug}) }}">{{ p.title }}</a> | |
</h2> | |
<small>Criado em {{ p.createdAt|date('d/m/Y H:i:s') }}</small> | |
</div> | |
{% endfor %} | |
</div> | |
</div> | |
{% endblock %} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment