Compare commits

..

No commits in common. "045ac235f1e7bb9aa65378337cca1fd52e5ed398" and "ab9ea30f8c605a1ff921ecd4ca84849bd32f62aa" have entirely different histories.

3 changed files with 1 additions and 57 deletions

View file

@ -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"

View file

@ -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!
````

View file

@ -1,32 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="{{ lang }}">
<title>{% if section.title %}{{ section.title }}{% else %}{{ config.title }}{% endif %}</title>
{%- if section.description %}
<subtitle>{{ section.description }}</subtitle>
{%- elif config.description %}
<subtitle>{{ config.description }}</subtitle>
{%- endif %}
<link href="{{ feed_url | safe }}" rel="self" type="application/atom+xml"/>
<link href="
{%- if section -%}
{{ section.permalink | escape_xml | safe }}
{%- else -%}
{{ config.base_url | escape_xml | safe }}
{%- endif -%}
"/>
<updated>{{ last_updated | date(format="%+") }}</updated>
<id>{{ feed_url | safe }}</id>
{%- for page in pages %}
<entry xml:lang="{{ page.lang }}">
<title>{{ page.title }}</title>
<published>{{ page.date | date(format="%+") }}</published>
<updated>{{ page.updated | default(value=page.date) | date(format="%+") }}</updated>
{%- if page.summary %}
<summary>{{ page.summary }}</summary>
{%- endif %}
<link href="{{ page.permalink | safe }}" type="text/html"/>
<id>{{ page.permalink | safe }}</id>
<content type="html">{{ page.content }}</content>
</entry>
{%- endfor %}
</feed>