--- layout: page ---
{% assign rawtags = "" %} {% for post in site.posts %} {% if post.tags.size > 0 %} {% assign post_tags = post.tags | join:'|' | append:'|' %} {% assign rawtags = rawtags | append:post_tags %} {% endif %} {% endfor %} {% assign portfolio = site.portfolio | map: 'tags' | join: ',' | split: ',' | uniq %} {% for tag in portfolio %} {% assign portfolio_tags = tag | join: '|' | append: '|' %} {% assign rawtags = rawtags | append: portfolio_tags %} {% endfor %} {% for page in site.pages %} {% if page.tags.size > 0 %} {% assign page_tags = page.tags | join:'|' | append:'|' %} {% assign rawtags = rawtags | append:page_tags %} {% endif %} {% endfor %} {% include tags_list.html tags=rawtags %}
{% for tag in tags %}

{{ tag }}

{% for page in site.pages %} {% if page.tags contains tag %}
{{ page.title }}
{{ "today" | date: "%B %-d, %Y" }}
{% endif %} {% endfor %} {% for post in site.posts %} {% if post.tags contains tag %}
{{ post.title }}
{{ post.date | date: "%B %-d, %Y" }}
{% endif %} {% endfor %} {% for note in site.portfolio %} {% if note.tags contains tag %}
{{ note.title }}
{{ note.date | date: "%B %-d, %Y" }}
{% endif %} {% endfor %}
{% endfor %}