Browse Source

Merge branch 'release/20190115'

master
Julio Biason 6 years ago
parent
commit
7306515e5c
  1. 4
      content/thoughts/_index.md
  2. 15
      templates/shortcodes/chapters.html

4
content/thoughts/_index.md

@ -0,0 +1,4 @@
+++
transparent = true
title = "Thoughts"
+++

15
templates/shortcodes/chapters.html

@ -0,0 +1,15 @@
<div>
{% if prev_chapter_link %}
<div style="float:left">
&lt;&lt; <a href="{{ prev_chapter_link }}">{{ prev_chapter_title }}</a>
</div>
{% endif %}
&nbsp;
{% if next_chapter_link %}
<div style="float:right">
<a href="{{ next_chapter_link }}">{{ next_chapter_title }}</a> &gt;&gt;
</div>
{% endif %}
</div>
Loading…
Cancel
Save