Upgrades to 0.4.0 and adds tag pages

This commit is contained in:
Zach Leatherman 2018-06-20 22:43:11 -05:00
parent 4185f33c15
commit 67f9c1be98
6 changed files with 16 additions and 13 deletions

View File

@ -11,9 +11,5 @@
"author": {
"name": "Your Name Here",
"email": "youremailaddress@example.com"
},
"tagPages": [
"another-tag",
"second-tag"
]
}
}

View File

@ -1,10 +1,10 @@
<ol class="postlist" style="counter-reset: start-from {{ postslist.length + 1 }}">
{% for post in postslist | reverse %}
<li class="postlist-item{% if post.url == url %} postlist-item-active{% endif %}">
<a href="{{ post.url | url }}" class="postlist-link">{{ post.data.title }}</a>
<a href="{{ post.url | url }}" class="postlist-link">{% if post.data.title %}{{ post.data.title }}{% else %}<code>{{ post.url }}</code>{% endif %}</a>
<span class="postlist-date">{{ post.date | readableDate }}</span>
{% for tag in post.data.tags %}
{%- if tag != "post" and metadata.tagPages.indexOf(tag) > -1 -%}
{%- if tag != "post" -%}
{% set tagUrl %}/tags/{{ tag }}/{% endset %}
<a href="{{ tagUrl | url }}" class="tag">{{ tag }}</a>
{%- endif -%}

View File

@ -1,9 +1,10 @@
---
layout: layouts/post.njk
title: About Me
tags: nav
tags:
- nav
navtitle: About
templateClass: tmpl-post
---
I am a person that writes stuff.
I am a person that writes stuff.

View File

@ -1,6 +1,7 @@
---
layout: layouts/home.njk
tags: nav
tags:
- nav
navtitle: Home
---

View File

@ -21,8 +21,8 @@
"url": "https://github.com/11ty/eleventy-base-blog/issues"
},
"homepage": "https://github.com/11ty/eleventy-base-blog#readme",
"dependencies": {
"@11ty/eleventy": "^0.3.6",
"devDependencies": {
"@11ty/eleventy": "^0.4.0",
"@11ty/eleventy-plugin-rss": "^1.0.2",
"@11ty/eleventy-plugin-syntaxhighlight": "^1.0.5",
"luxon": "^1.0.0",

View File

@ -1,8 +1,13 @@
---
pagination:
data: metadata.tagPages
data: collections
size: 1
alias: tag
filter:
- all
- nav
- post
- posts
permalink: /tags/{{ tag }}/
layout: layouts/home.njk
---