art.md (view raw)
1---
2title: art
3permalink: /art/
4---
5
6{% assign image_files = site.static_files | where: "art", true %}
7
8here are some photos and pictures.
9
10feel free to use them if and as you wish (don't forget to attribute).
11
12<div class="art">
13{% for img in image_files %}
14 <div class="art-img">
15 <img src="{{ img.path }}" alt="{{ img.name }}">
16 </div>
17{% endfor %}
18</div>