| title | Photography |
|---|---|
| layout | base |
All my cute photos I'd like to share with the world.
{% assign all_photo_tags = "" | split: "" %} {% for photo in site.data.pix %} {% if photo.tags %} {% for tag in photo.tags %} {% unless all_photo_tags contains tag %} {% assign all_photo_tags = all_photo_tags | push: tag %} {% endunless %} {% endfor %} {% endif %} {% endfor %} {% assign all_photo_tags = all_photo_tags | sort %} {% if all_photo_tags != empty %}
Albums
{% for tag in all_photo_tags %}
{% assign album_href = tag | slugify | prepend: "/pix/" %}
{% include _tag.html tag=tag href=album_href %}
{% endfor %}
{% include _gallery.html %}