diff --git a/config.toml b/config.toml index 511ee1c..3e6e787 100644 --- a/config.toml +++ b/config.toml @@ -15,7 +15,7 @@ compile_sass = true minify_html = true build_search_index = false # Keep this false, search is temporarily unsupported generate_feeds = true # Whether to generate a feed file in root, read docs for more info about rss feed -feed_filenames = ["feed.xml"] # The file name of feed, "feed.xml" / "atom.xml" / "rss.xml", read docs for more info +feed_filenames = ["rss.xml"] # The file name of feed, "feed.xml" / "atom.xml" / "rss.xml", read docs for more info taxonomies = [{ name = "tags" }, { name = "categories" }] [markdown] @@ -68,7 +68,6 @@ links = [ { name = "Mastodon", icon = "mastodon", url = "https://hachyderm.io/@ahoneybun" }, { name = "Linkedin", icon = "linkedin", url = "https://www.linkedin.com/in/athoneycutt/" }, { name = "Email", icon = "email", url = "mailto:aaronhoneycutt@proton.me>" }, - { name = "RSS", icon = "rss", url = "https://ahoneybun.net/feed.xml" }, ] force_theme = false # false | "light" | "dark" diff --git a/content/posts/template.md b/content/posts/template.md deleted file mode 100644 index 8fea98d..0000000 --- a/content/posts/template.md +++ /dev/null @@ -1,23 +0,0 @@ -+++ -title = "Something Something Dark side" -date = 2100-01-01 -draft = true - -[taxonomies] -categories = [ "blog" ] -tags = [ "topic" ] -+++ - -{% note(header="Note") %} -Hi! I'm a note! -{% end %} - -{% important(header="Important") %} -I'm more important! -{% end %} - -There are also `warning`, `tip` and `alert` to use as well! - -```nix -I'm a code block! -```` diff --git a/templates/feed.xml b/templates/feed.xml deleted file mode 100644 index f0c3f7e..0000000 --- a/templates/feed.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - {% if section.title %}{{ section.title }}{% else %}{{ config.title }}{% endif %} - {%- if section.description %} - {{ section.description }} - {%- elif config.description %} - {{ config.description }} - {%- endif %} - - - {{ last_updated | date(format="%+") }} - {{ feed_url | safe }} - {%- for page in pages %} - - {{ page.title }} - {{ page.date | date(format="%+") }} - {{ page.updated | default(value=page.date) | date(format="%+") }} - {%- if page.summary %} - {{ page.summary }} - {%- endif %} - - {{ page.permalink | safe }} - {{ page.content }} - - {%- endfor %} -