src/Ox/HoardBundle/Resources/views/contentPage/show.html.twig line 1

Open in your IDE?
  1. {% extends '@OxHoardBundle//layout.html.twig' %}
  2. {% block title %}{{ entity.title }}{% endblock %}
  3. {% block body %}
  4.     <div class="marginTop clearfix"></div>
  5.     <div id="content" class="container">
  6.         <div class="row marginTop">
  7.             <div class="hoardlistview-6col col-md-12">
  8.                 <h1>{{ entity.title }}</h1>
  9.                 <div class="image">
  10.                     <img href = "{{ entity.image}}"/>
  11.                 </div>
  12.                 <div class="body">
  13.                     {{ entity.body | markdown }}
  14.                 </div>
  15.                 {% if is_authorised_to_edit %}
  16.                 <ul class="record_actions">
  17.                     <li>
  18.                         <a href="{{ path('content') }}">
  19.                             Back to the list
  20.                         </a>
  21.                     </li>
  22.                     <li>
  23.                         <a href="{{ path('content_edit', { 'id': entity.id }) }}">
  24.                             Edit
  25.                         </a>
  26.                     </li>
  27.                 </ul>
  28.                 {% endif %}
  29.             </div>
  30.         </div>
  31.     </div>
  32. {% endblock %}