old website
This commit is contained in:
commit
218487dc22
557 changed files with 7054 additions and 0 deletions
36
_src/pages/gallery.html
Normal file
36
_src/pages/gallery.html
Normal file
|
@ -0,0 +1,36 @@
|
|||
---
|
||||
title: "Gallery"
|
||||
date: 2002-01-01
|
||||
icon: "M 30 26 L 27 26 L 21 14 L 16 23 L 11 17 L 5 26 L 2 26 L 2 2 Q 2 2 10 6 A 1 1 0 0 0 10 13 A 1 1 0 0 0 10 6 L 2 2 L
|
||||
30 2 L 30 26 L 30 30 L 2 30 L 2 26"
|
||||
---
|
||||
<section id="artworks">
|
||||
<h2>Original characters</h2>
|
||||
<ul>
|
||||
{% for item in art.items %}
|
||||
<li>
|
||||
<a href="{{item.url}}">
|
||||
<figure>
|
||||
<img src="{{item.url}}" alt="{{item.alt}}">
|
||||
<figcaption>{{item.title}}</figcaption>
|
||||
<time datetime="{{item.date}}">{{item.date | humanReadable }}</time>
|
||||
</figure>
|
||||
</a>
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
<h2>Fan art</h2>
|
||||
<ul>
|
||||
{% for item in fanart.items %}
|
||||
<li>
|
||||
<a href="{{item.url}}">
|
||||
<figure>
|
||||
<img src="{{item.url}}" alt="{{item.alt}}">
|
||||
<figcaption>{{item.title}}</figcaption>
|
||||
<time datetime="{{item.date}}">{{item.date | humanReadable}}</time>
|
||||
</figure>
|
||||
</a>
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</section>
|
Loading…
Add table
Add a link
Reference in a new issue