1
0
Fork 0
forked from github/pelican

Compare commits

..

No commits in common. "bfed925127fe44a2ba57cf78dcaf605be59846a6" and "c188ce1152ed0a15ffed95608a7910b6452fdbfa" have entirely different histories.

2 changed files with 14 additions and 6 deletions

View file

@ -83,9 +83,6 @@ module.exports = {
color: theme("colors.rp-dawn-text"), // align w/ main text color
fontWeight: "800",
},
th: {
color: theme("colors.rp-dawn-text"),
},
},
},
// NOTE: This is for prose (Markdown) in DARK mode
@ -112,9 +109,6 @@ module.exports = {
color: theme("colors.rp-moon-iris"), // align w/ main text color
fontWeight: "800",
},
th: {
color: theme("colors.rp-moon-iris"),
},
},
},
}),

View file

@ -0,0 +1,14 @@
{% extends "base.html" %}
{% block title %}{{ SITENAME|striptags }} - {{ period | reverse | join(' ') }} archives{% endblock %}
{% block content %}
<h2>Archives for {{ period | reverse | join(' ') }}</h2>
<dl>
{% for article in dates %}
<dt>{{ article.locale_date }}</dt>
<dd><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></dd>
{% endfor %}
</dl>
{% endblock %}