PHP Classes

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

Recommend this page to a friend!
  Classes of Manolo Salsas   Online PHP Image Transform   app/Resources/HerzultForumBundle/views/Category/show.html.twig   Download  
File: app/Resources/HerzultForumBundle/views/Category/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: 991 bytes
 

Contents

Class file image Download
{% extends 'HerzultForumBundle::layout.html.twig' %} {% block title %}Topics List {% endblock %} {% block content %} <div class="forum category_show"> <ul class="crumbs"> <li><a href="{{ path('herzult_forum_index') }}">Forum</a></li> <li>{{ category.name }}</li> </ul> <div class="main topics"> <h2>{{ category.name }}</h2> <a href="{{ forum_urlForCategoryAtomFeed(category) }}" title="Atom feed" class="feed atom">Atom feed</a> {% render 'HerzultForumBundle:Topic:list' with {'categorySlug': category.slug, 'pagerOptions': {'page': page, 'routeName': 'herzult_forum_category_show', 'routeParams': {'slug': category.slug}}} %} </div> <div class="side categories"> <h2>Categories</h2> {% render 'HerzultForumBundle:Category:list' %} <h2>Participate</h2> <p><a href="{{ path('herzult_forum_category_topic_new', {'slug': category.slug} ) }}">Create a new topic</a></p> </div> </div> {% endblock %}