Skip to content

Instantly share code, notes, and snippets.

@NandoKstroNet
Created May 24, 2017 17:54
Show Gist options
  • Save NandoKstroNet/c9df4d0d6c85cb9528050b82b902bbe6 to your computer and use it in GitHub Desktop.
Save NandoKstroNet/c9df4d0d6c85cb9528050b82b902bbe6 to your computer and use it in GitHub Desktop.
View Twig da série sobre Symfony da Code Experts Learning
{% 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