diff options
author | Volpeon <git@volpeon.ink> | 2021-01-01 22:29:18 +0100 |
---|---|---|
committer | Volpeon <git@volpeon.ink> | 2021-01-01 22:29:18 +0100 |
commit | d5b7ccf56aaef1e35bc5a95a7dfd86d512a6f57e (patch) | |
tree | 0815f53de784260d05fbbe8e03ffffb694bda12f /templates/partials | |
parent | Support drafts via _ prefix in filename (diff) | |
download | volpeon.ink-d5b7ccf56aaef1e35bc5a95a7dfd86d512a6f57e.tar.gz volpeon.ink-d5b7ccf56aaef1e35bc5a95a7dfd86d512a6f57e.tar.bz2 volpeon.ink-d5b7ccf56aaef1e35bc5a95a7dfd86d512a6f57e.zip |
Small design revisions
Diffstat (limited to 'templates/partials')
-rw-r--r-- | templates/partials/categoriesByCount.html | 7 | ||||
-rw-r--r-- | templates/partials/categoriesById.html | 7 | ||||
-rw-r--r-- | templates/partials/pagelistByYear.html | 11 |
3 files changed, 0 insertions, 25 deletions
diff --git a/templates/partials/categoriesByCount.html b/templates/partials/categoriesByCount.html deleted file mode 100644 index 9388cf9..0000000 --- a/templates/partials/categoriesByCount.html +++ /dev/null | |||
@@ -1,7 +0,0 @@ | |||
1 | $if(categories.by_count)$ | ||
2 | <ul class="c-hlist"> | ||
3 | $for(categories.by_count)$ | ||
4 | <li class="c-hlist__item"><strong>$it.key/uppercase$</strong> $it.value.name$</li> | ||
5 | $endfor$ | ||
6 | </ul> | ||
7 | $endif$ | ||
diff --git a/templates/partials/categoriesById.html b/templates/partials/categoriesById.html deleted file mode 100644 index fc11cc2..0000000 --- a/templates/partials/categoriesById.html +++ /dev/null | |||
@@ -1,7 +0,0 @@ | |||
1 | $if(categories.by_id)$ | ||
2 | <ul class="c-hlist"> | ||
3 | $for(categories.by_id)$ | ||
4 | <li class="c-hlist__item"><strong>$it.key/uppercase$</strong> $it.value.name$</li> | ||
5 | $endfor$ | ||
6 | </ul> | ||
7 | $endif$ | ||
diff --git a/templates/partials/pagelistByYear.html b/templates/partials/pagelistByYear.html deleted file mode 100644 index ff55f0f..0000000 --- a/templates/partials/pagelistByYear.html +++ /dev/null | |||
@@ -1,11 +0,0 @@ | |||
1 | $for(pages)$ | ||
2 | $for(it.by_year)$ | ||
3 | <ul> | ||
4 | $for(it.value)$ | ||
5 | <li class="c-page__prefixed c-page__prefixed--ref"> | ||
6 | <a href="$it.url.rel$">$it.category/uppercase$ $it.date.yyyy_mm_dd$ - $it.title$</a> | ||
7 | </li> | ||
8 | $endfor$ | ||
9 | </ul> | ||
10 | $endfor$ | ||
11 | $endfor$ | ||