Signed-off-by: blake <blake@mobiusconsortium.org>
.footer a {
color: var(--footer-link-font-color);
}
+
+.article-footer {
+ width: 100%;
+}
+
+.article-footer .article-footer-next {
+ float: right;
+ width: 35%;
+ text-align: right;
+}
+
+.article-footer .article-footer-previous {
+ float: left;
+ width: 35%;
+}
<h1 class="page">{{{page.title}}}</h1>
{{/if}}
{{{page.contents}}}
+<div class="article-footer">
+ <div class="article-footer-previous">
+ <a href="{{site.path}}{{page.previous.url}}">Previous</a>
+ </div>
+ <div class="article-footer-next">
+ <a href="{{site.path}}{{page.next.url}}">Next</a>
+ </div>
+</div>
{{/if}}
</article>