templates/story/diary_entry.html.twig line 1

Open in your IDE?
  1. {% extends "base.html.twig" %}
  2. {% block body %}
  3.     <br>
  4.     <a class="pagebtbck" href="{{ path('story_diary_list') }}"><i class="fa fa-chevron-left"></i>Back to the Outbreak Diary </a>
  5.     <div class="row" style="margin-top: 3%">
  6.         <div class="twelve columns">
  7.             {{ diaryContent|raw }}
  8.             <br>
  9.             {% if previous is not null %}
  10.                 <a class="pagebtn" href="{{ path('story_diary_entry', {'diary': previous.file}) }}"><i class="fa fa-chevron-left"></i> {{ previous.title }}</a>
  11.             {% endif %}
  12.             {% if next is not null %}
  13.                 <a class="pagebtn" href="{{ path('story_diary_entry', {'diary': next.file}) }}">{{ next.title }}<i class="fa fa-chevron-right"></i></a>
  14.             {% endif %}
  15.             <br><br>
  16.         </div>
  17.     </div>
  18. {% endblock %}