{{ section.title }}
+ {% for year, pages in section.pages | group_by(attribute="year") %} +-
+ {% for page in pages %}
+
- + + {{ page.title }} + {{ page.date | date(format="%b %d") }} + + + {% endfor %} +
diff --git a/config.toml b/config.toml
index 5efd685..196fe84 100644
--- a/config.toml
+++ b/config.toml
@@ -1,6 +1,10 @@
# The URL the site will be built for
base_url = "https://menteeth.us"
+title = "Annotated Annals"
+
+theme = "hermit_zola"
+
# Whether to automatically compile all Sass files in the sass directory
compile_sass = true
@@ -9,12 +13,30 @@ compile_sass = true
highlight_code = true
# Whether to build a search index to be used later on by a JavaScript library
-build_search_index = true
+build_search_index = false
+
+generate_feed = true
+
+feed_limit = 20
+
+[markdown]
+highlight_code = true
+highlight_theme = "charcoal"
+
+external_links_target_blank = true
+external_links_no_follow = true
+external_links_no_referrer = true
+
+smart_punctuation = true
[extra]
# Put all your custom variables here
home_subtitle = "Infrequently increasing in interesting entries"
+hermit_menu = [
+{ link = "/bible_journal", name = "Bible Journal" }
+]
+
hermit_social = [
{ name = "github", link = "https://github.com/IslandUsurper" },
{ name = "twitter", link = "https://fosstodon.org/@IslandUsurper" }
@@ -22,4 +44,3 @@ hermit_social = [
[extra.author]
name = "Lyle Mantooth"
-
diff --git a/content/bible_journal/_index.md b/content/bible_journal/_index.md
new file mode 100644
index 0000000..374d6ff
--- /dev/null
+++ b/content/bible_journal/_index.md
@@ -0,0 +1,16 @@
++++
+title = "Bible Journal"
+sort_by = "date"
++++
+
+As a method of accountability, a way to spark conversation, and hopefully a
+spur towards consistency, I am here and now starting to publish my Bible study
+journal to this website. This is a good time for it because I have just wrapped
+up Romans and Zephaniah in a physical journal, and now I am starting to study
+the Gospel according to Luke. My prayer is that this effort will benefit both
+myself as I continue my walk with the Lord, and also to encourage fellow
+believers to read God's Word and mine out the treasures that are in it.
+
+The format for these pages is to start with a link to the passage of Scripture
+being read, followed by a paragraph or two of notes, and ending with a short
+prayer.
diff --git a/content/bible_journal/luke_1:1-4.md b/content/bible_journal/luke_1:1-4.md
new file mode 100644
index 0000000..70ca07d
--- /dev/null
+++ b/content/bible_journal/luke_1:1-4.md
@@ -0,0 +1,19 @@
++++
+title = "Luke 1:1–4"
+date = "2022-10-15"
++++
+
+### [Read the passage.](https://biblia.com/bible/esv/Lk1.1-4)
+
+In the very beginning of his writing, Luke lays out his purpose in recording
+the life and ministry of Jesus. Though he addresses Theophilus, the style
+indicates he expected many people to read his book, so that all believers would
+have certainty about the things they have been taught. This certainty comes
+from having "followed all things closely" (_v. 3_) that came from "those who
+from the beginning were eye-witnesses and ministers of the word" (_v. 2_). So,
+while Luke is giving us a second-hand account, his sources are primary sources
+who really saw Jesus do amazing things.
+
+* * *
+
+You speak only the truth, O Lord. You give us certainty in an uncertain world.
diff --git a/sass/_predefined.scss b/sass/_predefined.scss
new file mode 100644
index 0000000..b48ae11
--- /dev/null
+++ b/sass/_predefined.scss
@@ -0,0 +1,37 @@
+// Colors
+//
+$theme: #018574;
+$text: #c6cddb;
+$light-grey: #154961; // Overridden
+$dark-grey: #3b3e48;
+$highlight-grey: #7d828a;
+$midnightblue: #31333d;
+
+// Fonts
+//
+$fonts: "Trebuchet MS", Verdana, "Verdana Ref", "Segoe UI", Candara,
+ "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Tahoma, sans-serif;
+$code-fonts: Consolas, "Andale Mono WT", "Andale Mono", Menlo, Monaco,
+ "Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono",
+ "Bitstream Vera Sans Mono", "Liberation Mono", "Nimbus Mono L", "Courier New",
+ Courier, "YaHei Consolas Hybrid", monospace, "Segoe UI Emoji", "PingFang SC",
+ "Microsoft YaHei";
+
+// Mixins
+//
+@mixin dimmed {
+ opacity: 0.6;
+}
+
+@mixin aTag {
+ a {
+ word-break: break-all;
+ border: none;
+ box-shadow: inset 0 -4px 0 $theme;
+ transition-property: background-color;
+
+ &:hover {
+ background-color: $theme;
+ }
+ }
+}
diff --git a/sass/override.scss b/sass/override.scss
new file mode 100644
index 0000000..f85ae69
--- /dev/null
+++ b/sass/override.scss
@@ -0,0 +1,3 @@
+html {
+ background: #154961;
+}
diff --git a/templates/section.html b/templates/section.html
new file mode 100644
index 0000000..b68b2ee
--- /dev/null
+++ b/templates/section.html
@@ -0,0 +1,72 @@
+{% extends "index.html" %} {% import "macros.html" as macros %} {% block header
+%}
+