fix: tag list pages
This commit is contained in:
parent
a6a192d735
commit
e7cc27ca5d
4 changed files with 10 additions and 5 deletions
4
package-lock.json
generated
4
package-lock.json
generated
|
@ -1,12 +1,12 @@
|
||||||
{
|
{
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "16.5.6",
|
"version": "16.5.7",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "16.5.6",
|
"version": "16.5.7",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@cdransf/api-text": "^1.2.2",
|
"@cdransf/api-text": "^1.2.2",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "16.5.6",
|
"version": "16.5.7",
|
||||||
"description": "The source for my personal site. Built using 11ty.",
|
"description": "The source for my personal site. Built using 11ty.",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
|
||||||
body,
|
body,
|
||||||
html {
|
html {
|
||||||
color: var(--text-color);
|
color: var(--text-color);
|
||||||
|
@ -376,6 +377,10 @@ article {
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
article.tag-post:last-of-type {
|
||||||
|
border-bottom: none;
|
||||||
|
}
|
||||||
|
|
||||||
.article-widget-wrapper {
|
.article-widget-wrapper {
|
||||||
border-bottom: 1px solid var(--gray-light);
|
border-bottom: 1px solid var(--gray-light);
|
||||||
margin-bottom: var(--sizing-base);
|
margin-bottom: var(--sizing-base);
|
||||||
|
|
|
@ -4,14 +4,14 @@ pagination:
|
||||||
data: collections
|
data: collections
|
||||||
size: 1
|
size: 1
|
||||||
alias: tag
|
alias: tag
|
||||||
permalink: "/tags/{% if pagination.pageNumber > 0 %}{{ pagination.pageNumber }}/{% endif %}index.html"
|
permalink: /tags/{{ tag }}/
|
||||||
eleventyComputed:
|
eleventyComputed:
|
||||||
title: '{{ tag }}'
|
title: '{{ tag }}'
|
||||||
---
|
---
|
||||||
{% assign posts = collections[tag] | reverse %}
|
{% assign posts = collections[tag] | reverse %}
|
||||||
{% for post in posts %}
|
{% for post in posts %}
|
||||||
{% assign author = post.data.link | stripUtm | authorLookup %}
|
{% assign author = post.data.link | stripUtm | authorLookup %}
|
||||||
<article class="h-entry">
|
<article class="h-entry tag-post">
|
||||||
<div class="flex-centered gap-xs icon-small icon-light">
|
<div class="flex-centered gap-xs icon-small icon-light">
|
||||||
{% if author %}{% tablericon "link" "Link" %}{% endif %}
|
{% if author %}{% tablericon "link" "Link" %}{% endif %}
|
||||||
{% tablericon "calendar-month" "Date" %}
|
{% tablericon "calendar-month" "Date" %}
|
||||||
|
|
Reference in a new issue