all repos — aaoth.xyz @ 97c19c29cd3b9d7d69e103b6b78cd299a6428086

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>