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": { "author": {
"name": "Your Name Here", "name": "Your Name Here",
"email": "youremailaddress@example.com" "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 }}"> <ol class="postlist" style="counter-reset: start-from {{ postslist.length + 1 }}">
{% for post in postslist | reverse %} {% for post in postslist | reverse %}
<li class="postlist-item{% if post.url == url %} postlist-item-active{% endif %}"> <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> <span class="postlist-date">{{ post.date | readableDate }}</span>
{% for tag in post.data.tags %} {% for tag in post.data.tags %}
{%- if tag != "post" and metadata.tagPages.indexOf(tag) > -1 -%} {%- if tag != "post" -%}
{% set tagUrl %}/tags/{{ tag }}/{% endset %} {% set tagUrl %}/tags/{{ tag }}/{% endset %}
<a href="{{ tagUrl | url }}" class="tag">{{ tag }}</a> <a href="{{ tagUrl | url }}" class="tag">{{ tag }}</a>
{%- endif -%} {%- endif -%}

View File

@ -1,7 +1,8 @@
--- ---
layout: layouts/post.njk layout: layouts/post.njk
title: About Me title: About Me
tags: nav tags:
- nav
navtitle: About navtitle: About
templateClass: tmpl-post templateClass: tmpl-post
--- ---

View File

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

View File

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

View File

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