From e36fd9bd1130316a63a6dd63fd7505f2755a264a Mon Sep 17 00:00:00 2001 From: Gergely Polonkai Date: Sun, 6 Jan 2013 04:49:31 +0100 Subject: [PATCH] Now displaying the article title in for blog posts --- .../FrontBundle/Resources/views/Blog/viewPost.html.twig | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/GergelyPolonkai/FrontBundle/Resources/views/Blog/viewPost.html.twig b/src/GergelyPolonkai/FrontBundle/Resources/views/Blog/viewPost.html.twig index c7fc3e8..68f80c7 100644 --- a/src/GergelyPolonkai/FrontBundle/Resources/views/Blog/viewPost.html.twig +++ b/src/GergelyPolonkai/FrontBundle/Resources/views/Blog/viewPost.html.twig @@ -1,5 +1,7 @@ {% extends 'GergelyPolonkaiFrontBundle:Default:front_base.html.twig' %} +{% block title %} - {{ post.title }}{% endblock %} + {% block content %} {% include 'GergelyPolonkaiFrontBundle:Blog:postViewer.html.twig' with {'post': post, 'title_links': false} %} {% endblock content %}