{{ page.title }}
- -- {%- if page.taxonomies %} - {%- for name, taxon in page.taxonomies %} - {{ name | capitalize }}: - {%- for item in taxon %} - {{ item }} - {%- endfor %} - {%- endfor %} - {%- endif %} -
-From cea3e75c68070d180311f6dea56c192a7f90c23d Mon Sep 17 00:00:00 2001 From: Alan Pearce Date: Wed, 19 Apr 2023 14:06:56 +0200 Subject: Switch to bear blog theme --- themes/bear | 2 +- themes/xmin/static/css/style.css | 75 ---------------------------- themes/xmin/templates/base.html | 25 ---------- themes/xmin/templates/categories/list.html | 1 - themes/xmin/templates/categories/single.html | 1 - themes/xmin/templates/index.html | 36 ------------- themes/xmin/templates/page.html | 28 ----------- themes/xmin/templates/section.html | 18 ------- themes/xmin/templates/tags/list.html | 18 ------- themes/xmin/templates/tags/single.html | 25 ---------- themes/xmin/theme.toml | 12 ----- 11 files changed, 1 insertion(+), 240 deletions(-) delete mode 100644 themes/xmin/static/css/style.css delete mode 100644 themes/xmin/templates/base.html delete mode 120000 themes/xmin/templates/categories/list.html delete mode 120000 themes/xmin/templates/categories/single.html delete mode 100644 themes/xmin/templates/index.html delete mode 100644 themes/xmin/templates/page.html delete mode 100644 themes/xmin/templates/section.html delete mode 100644 themes/xmin/templates/tags/list.html delete mode 100644 themes/xmin/templates/tags/single.html delete mode 100644 themes/xmin/theme.toml (limited to 'themes') diff --git a/themes/bear b/themes/bear index c78a3f2..6687460 160000 --- a/themes/bear +++ b/themes/bear @@ -1 +1 @@ -Subproject commit c78a3f2301caa3dc4c03d3b2a75f4f003e5863d0 +Subproject commit 66874604ae503ee450c056817478f92b7d446cd0 diff --git a/themes/xmin/static/css/style.css b/themes/xmin/static/css/style.css deleted file mode 100644 index e605297..0000000 --- a/themes/xmin/static/css/style.css +++ /dev/null @@ -1,75 +0,0 @@ -body { - font-family: sans-serif; - line-height: 1.5em; - margin: auto; - max-width: 800px; - padding: 1em; -} - -/* header and footer areas */ -nav > ul { padding: 0; } -nav > ul > li { display: inline-block; } -article > header, nav > ul a { - background: #eee; - border-radius: 5px; - padding: 5px; - text-decoration: none; -} -.terms { font-size: .9em; } -nav > ul, article > header, footer { text-align: center; } -.title { font-size: 1.1em; } -footer a { text-decoration: none; } -hr { - border-style: dashed; - color: #ddd; -} -body > nav { - border-bottom: 1px solid #ddd; -} -body > footer { - border-top: 1px solid #ddd; -} - -/* code */ -pre { - border: 1px solid #ddd; - overflow-x: auto; - padding: 1em; -} -code { background: #f9f9f9; } -pre code { background: none; } - -/* misc elements */ -img, iframe, video { max-width: 100%; } -main { hyphens: auto; } -blockquote { - background: #f9f9f9; - border-left: 5px solid #ccc; - padding: 3px 1em 3px; -} - -table thead th { border-bottom: 1px solid #ddd; } -th, td { padding: 5px; } -thead, tfoot, tr:nth-child(even) { background: #eee; } -.hl { background-color: #ffc; } - -@media (prefers-color-scheme: dark) { - body { - background-color: #111; - color: white; - } - article > header, nav > ul a { - background: #222; - } - a { - color: #C4D4EE; - } - a:visited { - color: #CEDEE0; - } - code { background-color: #444; } - thead, tfoot, tr:nth-child(even) { background: #222; } - .hl { - background-color: #555; - } -} diff --git a/themes/xmin/templates/base.html b/themes/xmin/templates/base.html deleted file mode 100644 index 5942342..0000000 --- a/themes/xmin/templates/base.html +++ /dev/null @@ -1,25 +0,0 @@ - - -
- - -- {%- if page.taxonomies %} - {%- for name, taxon in page.taxonomies %} - {{ name | capitalize }}: - {%- for item in taxon %} - {{ item }} - {%- endfor %} - {%- endfor %} - {%- endif %} -
-