PHP Classes

File: app/Resources/HerzultForumBundle/views/Post/list.html.twig

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

Contents

Class file image Download
<ul class="forum_posts_list"> {% for post in posts %} <li id="{{ post.number}}"> <div class="metas"> <div class="author"> <span class="username">{{ post.authorName }}</span> </div> <div class="date"> <span class="createdAt">{{ post.createdAt|date }}</span> </div> </div> <div class="content"> {{ post.message }} </div> </li> {% endfor %} </ul>