16 lines
354 B
Twig
16 lines
354 B
Twig
<body>
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col">
|
|
{% if previous != null %}
|
|
<a href="{{previous.url}}">Previous Page: {{previous.title}}</a>
|
|
{% endif %}
|
|
</div>
|
|
<div class="col">
|
|
{% if next != null %}
|
|
<a href="{{next.url}}">Next Page: {{next.title}}</a>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body> |