Files
kjvstudy.org/kjvstudy_org/templates/base.html
T
2025-11-11 12:24:34 -05:00

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>