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