22 lines
610 B
HTML
Executable File
22 lines
610 B
HTML
Executable File
---
|
||
layout: art
|
||
title: "hexaitos.com – Art of Hexaitos"
|
||
description: "This page contains art that I have comissioned of Hexaitos."
|
||
---
|
||
|
||
<h1>Art of Hexaitos</h1>
|
||
|
||
<div class="art">
|
||
{% for artwork in site.art %}
|
||
<div class="responsive">
|
||
<div class="gallery">
|
||
<a target="_blank" href="{{ artwork.image }}">
|
||
<img src="{{ artwork.thumb }}" alt="{{ artwork.alt }}" width="600" height="400">
|
||
</a>
|
||
<div class="desc">{{ artwork.desc }}</div>
|
||
</div>
|
||
</div>
|
||
{% endfor %}
|
||
</div>
|
||
|
||
<div class="clearfix"></div> |