diff --git a/config.toml b/config.toml index 8226b70..1a54659 100644 --- a/config.toml +++ b/config.toml @@ -17,7 +17,7 @@ build_search_index = false generate_feed = true -feed_limit = 20 +feed_limit = 250 [markdown] highlight_code = true diff --git a/content/bible_journal/_index.md b/content/bible_journal/_index.md index 374d6ff..0cec437 100644 --- a/content/bible_journal/_index.md +++ b/content/bible_journal/_index.md @@ -1,6 +1,8 @@ +++ title = "Bible Journal" sort_by = "date" +paginate_by = 250 +generate_feed = true +++ As a method of accountability, a way to spark conversation, and hopefully a diff --git a/templates/index.html b/templates/index.html index 346e965..1d203da 100644 --- a/templates/index.html +++ b/templates/index.html @@ -26,9 +26,11 @@ {{config.title}} {% endif %} + {% block feed %} {% if config.generate_feed %} - + {% endif %} + {% endblock feed %} diff --git a/templates/section.html b/templates/section.html index fc1745c..a74aa05 100644 --- a/templates/section.html +++ b/templates/section.html @@ -1,5 +1,13 @@ -{% extends "index.html" %} {% import "macros.html" as macros %} {% block header -%} +{% extends "index.html" %} {% import "macros.html" as macros %} + +{% block feed %} +{% if config.generate_feed %} + {% set feed_path = section.path ~ config.feed_filename %} + +{% endif %} +{% endblock feed %} + +{% block header %}