diff options
Diffstat (limited to 'blog/plt')
-rw-r--r-- | blog/plt/page.html | 3 | ||||
-rw-r--r-- | blog/plt/page_nav.html | 28 |
2 files changed, 31 insertions, 0 deletions
diff --git a/blog/plt/page.html b/blog/plt/page.html index dbb2734..1b0afd9 100644 --- a/blog/plt/page.html +++ b/blog/plt/page.html @@ -16,6 +16,9 @@ {{page.content}} + {%import "page_nav.html" as page_nav%} + {{page_nav.print(page, config)}} + <hr> <div class="article-info"> <p>By {{page.author}}</p> diff --git a/blog/plt/page_nav.html b/blog/plt/page_nav.html new file mode 100644 index 0000000..b15b9eb --- /dev/null +++ b/blog/plt/page_nav.html @@ -0,0 +1,28 @@ +{%macro print(page, config)%} +<div class="page-nav"> + {%if page.next is not none%} + <span class="next"> + <a href="{{page.next.url}}" alt="Next"> + <i class="fas fa-arrow-left" alt="Arrow left"></i> + <span>Next</span> + </a> + </span> + {%endif%} + + <span class="index"> + <a href="{{config.url}}" alt="Index"> + <i class="fas fa-home" alt="Home"></i> + <span>Index</span> + </a> + </span> + + {%if page.previous is not none%} + <span class="previous"> + <a href="{{page.previous.url}}" alt="Previous"> + <i class="fas fa-arrow-right" alt="Arrow right"></i> + <span>Previous</span> + </a> + </span> + {%endif%} +</div> +{%endmacro%} |