forked from github/pelican
Compare commits
2 commits
c188ce1152
...
bfed925127
| Author | SHA1 | Date | |
|---|---|---|---|
| bfed925127 | |||
| 6716c43b32 |
2 changed files with 6 additions and 14 deletions
|
|
@ -83,6 +83,9 @@ 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
|
||||
|
|
@ -109,6 +112,9 @@ module.exports = {
|
|||
color: theme("colors.rp-moon-iris"), // align w/ main text color
|
||||
fontWeight: "800",
|
||||
},
|
||||
th: {
|
||||
color: theme("colors.rp-moon-iris"),
|
||||
},
|
||||
},
|
||||
},
|
||||
}),
|
||||
|
|
|
|||
|
|
@ -1,14 +0,0 @@
|
|||
{% 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 %}
|
||||
Loading…
Add table
Add a link
Reference in a new issue