61 lines
No EOL
1.2 KiB
HTML
61 lines
No EOL
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
{% include head.html %}
|
|
|
|
<body>
|
|
{% include theme-switcher.html %}
|
|
|
|
<div id="wrap">
|
|
|
|
<!-- Navigation -->
|
|
{% include menu-toggle.html %}
|
|
{% include menu.html %}
|
|
|
|
<!-- Header -->
|
|
{% if site.custom_header == true %}
|
|
{% include header-custom.html %}
|
|
{% else %}
|
|
{% include header.html %}
|
|
{% endif %}
|
|
|
|
<!-- Main content -->
|
|
<div id="container">
|
|
<main>
|
|
{{ content }}
|
|
</main>
|
|
|
|
<!-- Pagination links -->
|
|
<div class="pagination">
|
|
{% if paginator.total_pages > 1 %}
|
|
<div class="page-numbers">
|
|
<p>
|
|
{% if paginator.previous_page %}
|
|
<a href="{{ paginator.previous_page_path}}" class="page-button prev">Prev</a>
|
|
{% endif %}
|
|
|
|
{% for page in (1..paginator.total_pages) %}
|
|
{% assign total = paginator.total_pages %}
|
|
{% if page == paginator.page %}
|
|
{{ page }} of {{total}}
|
|
{% endif %}
|
|
{% endfor %}
|
|
|
|
{% if paginator.next_page %}
|
|
<a href="{{ paginator.next_page_path}}" class="page-button next">Next</a>
|
|
{% endif %}
|
|
</p>
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Footer -->
|
|
{% include footer.html %}
|
|
|
|
<!-- Script -->
|
|
{% include script.html %}
|
|
|
|
</div><!-- div#wrap -->
|
|
</body>
|
|
</html> |