mirror of
https://github.com/kennethreitz/kjvstudy.org.git
synced 2026-06-05 23:00:16 +00:00
16 lines
302 B
HTML
16 lines
302 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>{{ book }}</title>
|
|
</head>
|
|
<body>
|
|
<h1>{{ book }}</h1>
|
|
<ul>
|
|
{% for chapter in chapters %}
|
|
<li><a href="/book/{{ book }}/chapter/{{ chapter }}">{{ book }} {{ chapter }}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
<a href="/">Back to Books</a>
|
|
</body>
|
|
</html>
|