Upgrades to 0.4.0 and adds tag pages
This commit is contained in:
parent
4185f33c15
commit
67f9c1be98
@ -11,9 +11,5 @@
|
||||
"author": {
|
||||
"name": "Your Name Here",
|
||||
"email": "youremailaddress@example.com"
|
||||
},
|
||||
"tagPages": [
|
||||
"another-tag",
|
||||
"second-tag"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
@ -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 -%}
|
||||
|
@ -1,7 +1,8 @@
|
||||
---
|
||||
layout: layouts/post.njk
|
||||
title: About Me
|
||||
tags: nav
|
||||
tags:
|
||||
- nav
|
||||
navtitle: About
|
||||
templateClass: tmpl-post
|
||||
---
|
||||
|
@ -1,6 +1,7 @@
|
||||
---
|
||||
layout: layouts/home.njk
|
||||
tags: nav
|
||||
tags:
|
||||
- nav
|
||||
navtitle: Home
|
||||
---
|
||||
|
||||
|
@ -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",
|
||||
|
Loading…
Reference in New Issue
Block a user