You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
328 B
16 lines
328 B
6 years ago
|
<div>
|
||
|
{% if prev_chapter_link %}
|
||
|
<div style="float:left">
|
||
|
<< <a href="{{ prev_chapter_link }}">{{ prev_chapter_title }}</a>
|
||
|
</div>
|
||
|
{% endif %}
|
||
|
|
||
|
|
||
|
|
||
|
{% if next_chapter_link %}
|
||
|
<div style="float:right">
|
||
|
<a href="{{ next_chapter_link }}">{{ next_chapter_title }}</a> >>
|
||
|
</div>
|
||
|
{% endif %}
|
||
|
</div>
|