mirror of
https://github.com/kennethreitz/kjvstudy.org.git
synced 2026-06-05 23:00:16 +00:00
17 lines
400 B
HTML
17 lines
400 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>{{ book }} {{ chapter }}</title>
|
|
</head>
|
|
<body>
|
|
<h1>{{ book }} {{ chapter }}</h1>
|
|
{% for verse in verses %}
|
|
<div>
|
|
<p><strong>{{ verse.verse }}</strong> {{ verse.text }}</p>
|
|
<textarea rows="2" cols="80" placeholder="Your commentary..."></textarea>
|
|
</div>
|
|
{% endfor %}
|
|
<a href="/book/{{ book }}">Back to {{ book }}</a>
|
|
</body>
|
|
</html>
|