mirror of
https://github.com/silverstripe/silverstripe-docsviewer
synced 2024-10-22 11:05:56 +02:00
11 lines
308 B
Scheme
11 lines
308 B
Scheme
|
<% if NextPage || PreviousPage %>
|
||
|
<div class="next-prev">
|
||
|
<% if PreviousPage %>
|
||
|
<p class="prev-link"><a href="$PreviousPage.Link">$PreviousPage.Title</a></p>
|
||
|
<% end_if %>
|
||
|
|
||
|
<% if NextPage %>
|
||
|
<p class="next-link"><a href="$NextPage.Link">$NextPage.Title</a></p>
|
||
|
<% end_if %>
|
||
|
</div>
|
||
|
<% end_if %>
|