mirror of
https://github.com/kennethreitz/kjvstudy.org.git
synced 2026-06-05 23:00:16 +00:00
21 lines
547 B
HTML
21 lines
547 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8"/>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
|
|
|
<title>{% block title %}Authorized King James Version Bible{% endblock %}</title>
|
|
|
|
<meta name="description" content="{% block description %}Study the Authorized King James Version Bible{% endblock %}"/>
|
|
|
|
<link rel="stylesheet" href="/static/tufte.css"/>
|
|
|
|
{% block head %}{% endblock %}
|
|
</head>
|
|
<body>
|
|
<article>
|
|
{% block content %}{% endblock %}
|
|
</article>
|
|
</body>
|
|
</html>
|