Created
May 24, 2017 18:08
-
-
Save NandoKstroNet/ef4d44aba319d046ac04b565281f6c05 to your computer and use it in GitHub Desktop.
View single de post criado na série de posts 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"> | |
<div class="col-md-6"> | |
<h2> | |
{{ post.title }} | |
</h2> | |
</div> | |
<div class="col-md-6 text-right"> | |
<small>Criado em {{ post.createdAt|date('d/m/Y H:i:s') }}</small> | |
</div> | |
<div class="clearfix"></div> | |
<hr> | |
{{ post.content|raw }} | |
</div> | |
</div> | |
{% endblock %} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment