diff --git a/config.toml b/config.toml index 196fe84..5efd685 100644 --- a/config.toml +++ b/config.toml @@ -1,10 +1,6 @@ # 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 @@ -13,30 +9,12 @@ compile_sass = true highlight_code = true # Whether to build a search index to be used later on by a JavaScript library -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 +build_search_index = 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" } @@ -44,3 +22,4 @@ hermit_social = [ [extra.author] name = "Lyle Mantooth" + diff --git a/content/bible_journal/_index.md b/content/bible_journal/_index.md deleted file mode 100644 index 374d6ff..0000000 --- a/content/bible_journal/_index.md +++ /dev/null @@ -1,16 +0,0 @@ -+++ -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 deleted file mode 100644 index 70ca07d..0000000 --- a/content/bible_journal/luke_1:1-4.md +++ /dev/null @@ -1,19 +0,0 @@ -+++ -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 deleted file mode 100644 index b48ae11..0000000 --- a/sass/_predefined.scss +++ /dev/null @@ -1,37 +0,0 @@ -// 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 deleted file mode 100644 index f85ae69..0000000 --- a/sass/override.scss +++ /dev/null @@ -1,3 +0,0 @@ -html { - background: #154961; -} diff --git a/templates/section.html b/templates/section.html deleted file mode 100644 index b68b2ee..0000000 --- a/templates/section.html +++ /dev/null @@ -1,72 +0,0 @@ -{% extends "index.html" %} {% import "macros.html" as macros %} {% block header -%} - -
- -
-{% endblock header %} {% block title %} {% endblock title %} {% block main %} - -
- {{ section.content | safe }} -

{{ section.title }}

- {% for year, pages in section.pages | group_by(attribute="year") %} -
-
{{ year }}
- -
- {% endfor %} -
- -{% endblock main %} {% block footer %} {{ macros::footer() }} {% endblock footer -%}