mirror of
https://github.com/kennethreitz/kjvstudy.org.git
synced 2026-06-05 23:00:16 +00:00
15 lines
234 B
HTML
15 lines
234 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Bible Browser</title>
|
|
</head>
|
|
<body>
|
|
<h1>Select a Book</h1>
|
|
<ul>
|
|
{% for book in books %}
|
|
<li><a href="/book/{{ book }}">{{ book }}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
</body>
|
|
</html>
|