all repos — aaoth.xyz @ 3e30c7241cb18c5e02195e889b9e4dc73490214a

aaoth.xyz website

_layouts/art-category.html (view raw)

 1---
 2layout: default
 3---
 4
 5<h1>{{ page.title }}</h1>
 6
 7{{ content }}
 8
 9{%- include pic-path.html -%} <!-- provides artpics array -->
10
11<div class="art">
12{%- for imgpath in artpics -%}
13    {% assign imgname = imgpath | split: "/" | last | split: "." | first %}
14    <div class="art-img">
15        <img src="{{ imgpath }}" alt="{{ imgname }}">
16    </div>
17{% endfor %}
18</div>