diff --git a/content/writings/_index.md b/content/writings/_index.md index 2a27145..7ab5f00 100644 --- a/content/writings/_index.md +++ b/content/writings/_index.md @@ -1,7 +1,7 @@ +++ -title = "My writings" +title = "Writings" sort_by = "date" -template = "blog.html" +template = "writings.html" page_template = "page.html" draft = false +++ diff --git a/templates/external.html b/templates/external.html index 29e47e0..4b9b615 100644 --- a/templates/external.html +++ b/templates/external.html @@ -1,7 +1,7 @@ {% extends "base.html" %} {% block content %} -
+

Things I find value in sharing

{% set data = load_data(path="content/external/external.toml") %} {% for category in data.categories %} diff --git a/templates/writings.html b/templates/writings.html new file mode 100644 index 0000000..758f737 --- /dev/null +++ b/templates/writings.html @@ -0,0 +1,18 @@ +{% extends "base.html" %} + +{% block content %} +
+

Writings

+
    + {% for post in section.pages %} +
  • + +
  • + {% endfor %} +
+
+{% endblock content %} +