PHP Classes

File: app/Resources/HerzultForumBundle/views/Topic/show.html.twig

Recommend this page to a friend!
  Classes of Manolo Salsas   Online PHP Image Transform   app/Resources/HerzultForumBundle/views/Topic/show.html.twig   Download  
File: app/Resources/HerzultForumBundle/views/Topic/show.html.twig
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Online PHP Image Transform
Application to do interactive image manipulation
Author: By
Last change:
Date: 4 years ago
Size: 866 bytes
 

Contents

Class file image Download
{% extends 'HerzultForumBundle::layout.html.twig' %} {% block title %}{{ topic.subject}}{% endblock %} {% block content %} <div class="forum forum_topic"> <ul class="crumbs"> <li><a href="{{ path('herzult_forum_index') }}">Forum</a></li> <li><a href="{{ forum_urlForCategory(topic.category) }}">{{ topic.category.name }}</a></li> <li>{{ topic.subject }}</li> </ul> <div class="main topic"> <h2>{{ topic.subject }}</h2> <a href="{{ forum_urlForTopicAtomFeed(topic) }}" title="Atom feed" class="feed atom">Atom feed</a> {% include 'HerzultForumBundle:Post:list.html.twig' with {'posts': posts} %} {{ pagerfanta(posts, 'default', {'proximity': 3}) }} </div> <div class="side menu"> <a href="{{ forum_urlForTopicReply(topic) }}">Add a New Reply</a> </div> </div> {% endblock %}