mirror of
https://github.com/kennethreitz/kjvstudy.org.git
synced 2026-06-05 23:00:16 +00:00
112 lines
2.6 KiB
HTML
112 lines
2.6 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Parables of Jesus (KJV)</title>
|
|
<style>
|
|
@page {
|
|
size: letter;
|
|
margin: 0.85in;
|
|
@bottom-center {
|
|
content: counter(page);
|
|
font-family: "et-book", Georgia, serif;
|
|
font-size: 10pt;
|
|
color: #666;
|
|
}
|
|
}
|
|
|
|
body {
|
|
font-family: "et-book", Georgia, "Times New Roman", serif;
|
|
font-size: 11pt;
|
|
line-height: 1.6;
|
|
color: #111;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 24pt;
|
|
font-weight: normal;
|
|
margin: 0 0 0.2in 0;
|
|
letter-spacing: 0.04em;
|
|
}
|
|
|
|
h2 {
|
|
font-size: 16pt;
|
|
font-weight: normal;
|
|
margin-top: 0.35in;
|
|
}
|
|
|
|
h3 {
|
|
font-size: 13pt;
|
|
font-weight: normal;
|
|
margin-bottom: 0.05in;
|
|
}
|
|
|
|
.subtitle {
|
|
font-style: italic;
|
|
color: #666;
|
|
margin-bottom: 0.3in;
|
|
}
|
|
|
|
.description {
|
|
margin-bottom: 0.15in;
|
|
}
|
|
|
|
.verses {
|
|
margin: 0 0 0.2in 0;
|
|
}
|
|
|
|
.verse-item {
|
|
margin-bottom: 0.1in;
|
|
padding-left: 0.2in;
|
|
border-left: 2px solid #ddd;
|
|
}
|
|
|
|
.verse-ref {
|
|
font-weight: 600;
|
|
color: #444;
|
|
}
|
|
|
|
.verse-text {
|
|
font-style: italic;
|
|
color: #555;
|
|
}
|
|
|
|
.footer {
|
|
margin-top: 0.5in;
|
|
font-size: 9pt;
|
|
color: #888;
|
|
text-align: center;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>Parables of Jesus</h1>
|
|
<p class="subtitle">Teaching in earthly stories with heavenly meanings</p>
|
|
|
|
{% for category, parables in parables_data.items() %}
|
|
<section>
|
|
<h2>{{ category }}</h2>
|
|
{% for name, parable in parables.items() %}
|
|
<article>
|
|
<h3>{{ name }} — {{ parable.title }}</h3>
|
|
<div class="description">{{ parable.description | safe }}</div>
|
|
|
|
{% if parable.verses %}
|
|
<div class="verses">
|
|
{% for verse in parable.verses %}
|
|
<div class="verse-item">
|
|
<div class="verse-ref">{{ verse.reference }}</div>
|
|
<div class="verse-text">{{ verse.text | link_names | safe }}</div>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
{% endif %}
|
|
</article>
|
|
{% endfor %}
|
|
</section>
|
|
{% endfor %}
|
|
|
|
<div class="footer">From KJV Study • kjvstudy.org</div>
|
|
</body>
|
|
</html>
|