mirror of
https://github.com/kennethreitz/kjvstudy.org.git
synced 2026-06-05 23:00:16 +00:00
19 lines
391 B
HTML
19 lines
391 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>{% block title %}Bible Study{% endblock %}</title>
|
|
<link href="/static/style.css" rel="stylesheet">
|
|
</head>
|
|
<body>
|
|
<div class="sidebar">
|
|
<h2>Bible Books</h2>
|
|
{% for book in books %}
|
|
<a href="/book/{{ book }}">{{ book }}</a>
|
|
{% endfor %}
|
|
</div>
|
|
<div class="main">
|
|
{% block content %}{% endblock %}
|
|
</div>
|
|
</body>
|
|
</html>
|