-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e8a0127
commit e2b91bf
Showing
1 changed file
with
16 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
--- | ||
layout: default | ||
title: Features tagged on Can I email… | ||
permalink: /tags/ | ||
--- | ||
{% assign tags = site.features | map:"tags" | join: ',' | split: ',' | uniq %} | ||
{% assign tags = tags | sort_natural %} | ||
{% for tag in tags %} | ||
<h1 class="list-title" id="title-{{ tag | slugify }}">{{ site.data.nicenames.tags[tag] | default: tag }}</h1> | ||
{% assign features-by-tag = site.features | where:"tags", tag %} | ||
<ul class="list list--features"> | ||
{% for feature in features-by-tag %} | ||
<li><a href="{{ feature.url }}">{{ feature.title | escape_once }}</a></li> | ||
{% endfor %} | ||
</ul> | ||
{% endfor %} |