{% extends "base.html.twig" %}
{% block body %}
<br>
<a class="pagebtbck" href="{{ path('story_diary_list') }}"><i class="fa fa-chevron-left"></i>Back to the Outbreak Diary </a>
<div class="row" style="margin-top: 3%">
<div class="twelve columns">
{{ diaryContent|raw }}
<br>
{% if previous is not null %}
<a class="pagebtn" href="{{ path('story_diary_entry', {'diary': previous.file}) }}"><i class="fa fa-chevron-left"></i> {{ previous.title }}</a>
{% endif %}
{% if next is not null %}
<a class="pagebtn" href="{{ path('story_diary_entry', {'diary': next.file}) }}">{{ next.title }}<i class="fa fa-chevron-right"></i></a>
{% endif %}
<br><br>
</div>
</div>
{% endblock %}