aboutsummaryrefslogtreecommitdiffstats
path: root/_layouts/art-category.html
blob: fb70a11a0bb3ab50c367491e823645e563d76d59 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
---
layout: default
---

<h1>{{ page.title }}</h1>

{{ content }}

{%- include pic-path.html -%} <!-- provides artpics array -->

<div class="art">
{%- for imgpath in artpics -%}
    {% assign imgname = imgpath | split: "/" | last | split: "." | first %}
    <div class="art-img">
        <img src="{{ imgpath }}" alt="{{ imgname }}">
    </div>
{% endfor %}
</div>