yay website
This commit is contained in:
parent
623e26a808
commit
4d44fd94a2
585 changed files with 5066 additions and 0 deletions
20
_src/pages/blog.html
Normal file
20
_src/pages/blog.html
Normal file
|
@ -0,0 +1,20 @@
|
|||
---
|
||||
title: "Blog"
|
||||
order: 3
|
||||
icon: "M 4 2 L 28 2 L 28 30 L 4 30 Z M 8 8 L 24 8 L 24 6 L 8 6 Z M 8 14 L 24 14 L 24 12 L 8 12 Z M 8 20 L 20 20 L 20 18
|
||||
L 8 18 Z"
|
||||
---
|
||||
<section id="posts">
|
||||
<ul>
|
||||
{% for post in collections.posts reversed %}
|
||||
<li>
|
||||
<a href="{{post.url}}"></svg>{{post.fileSlug}}<p>published: <time
|
||||
datetime="{{post.data.date | ISO }}">{{post.data.date
|
||||
| readable }}</time></p>{% if post.data.modified %}<p>last edited:<time
|
||||
datetime="{{post.data.modified}}">{{post.data.modified | readable}}</time></p>{% endif %}
|
||||
<p>{{post.data.description}}</p>
|
||||
</a>
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</section>
|
12
_src/pages/changelog.html
Normal file
12
_src/pages/changelog.html
Normal file
|
@ -0,0 +1,12 @@
|
|||
---
|
||||
title: "Changelog"
|
||||
order: 2
|
||||
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"
|
||||
---
|
||||
|
||||
{%for update in collections.updates reversed%}
|
||||
<article>
|
||||
<h3><time datetime="{{update.page.fileSlug|ISO}}">{{update.page.fileSlug|readable}}</time></h3><p>{%if update.data.title%}{{update.data.title}}{%endif%}</p>{{ update.content }}
|
||||
</article>
|
||||
{%endfor%}
|
46
_src/pages/gallery.html
Normal file
46
_src/pages/gallery.html
Normal file
|
@ -0,0 +1,46 @@
|
|||
---
|
||||
title: "Gallery"
|
||||
order: 4
|
||||
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>
|
||||
{% assign sortedArtworks = collections.artworks | sortByFirstDate %}
|
||||
{% for artwork in sortedArtworks %}
|
||||
<li>
|
||||
<a href="{{ artwork.page.url }}">
|
||||
<figure>
|
||||
{% if artwork.data.images[0] %}
|
||||
<img src="{{ artwork.data.images[0].src }}" alt="{{ artwork.data.images[0].alt }}">
|
||||
<figcaption>{{ artwork.page.fileSlug }}</figcaption>
|
||||
{% if artwork.data.images[0].date %}
|
||||
<time datetime="{{ artwork.data.images[0].date | ISO }}">{{ artwork.data.images[0].date | readable }}</time>
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
</figure>
|
||||
</a>
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
<h2>Fan art</h2>
|
||||
<ul>
|
||||
{% assign sortedFanarts = collections.fanarts | sortByFirstDate %}
|
||||
{% for fanart in sortedFanarts %}
|
||||
<li>
|
||||
<a href="{{ fanart.page.url }}">
|
||||
<figure>
|
||||
{% if fanart.data.images[0] %}
|
||||
<img src="{{ fanart.data.images[0].src }}" alt="{{ fanart.data.images[0].alt }}">
|
||||
<figcaption>{{ fanart.page.fileSlug }}</figcaption>
|
||||
{% if fanart.data.images[0].date %}
|
||||
<time datetime="{{ fanart.data.images[0].date | ISO }}">{{ fanart.data.images[0].date | readable }}</time>
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
</figure>
|
||||
</a>
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</section>
|
75
_src/pages/home.html
Normal file
75
_src/pages/home.html
Normal file
|
@ -0,0 +1,75 @@
|
|||
---
|
||||
title: "Home"
|
||||
order: 1
|
||||
icon: "M12 20 L12 30 4 30 4 12 16 2 28 12 28 30 20 30 20 20 Z"
|
||||
---
|
||||
<section id="intro">
|
||||
{% for article in collections.articles %}
|
||||
{{article.content}}
|
||||
{% endfor %}
|
||||
</section>
|
||||
<section id="collection">
|
||||
<article>
|
||||
<h3>Games</h3>
|
||||
<ul class="games">
|
||||
{% for item in games.items %}
|
||||
<li>
|
||||
<a href="{{item.src}}">
|
||||
<div><img src="{{item.cover}}" alt="Box art cover for {{item.title}}"></div>
|
||||
<span>{{item.title}}</span>
|
||||
</a>
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</article>
|
||||
<article>
|
||||
<h3>Albums</h3>
|
||||
<ul class="music">
|
||||
{% for item in music.items %}
|
||||
<li>
|
||||
<a href="{{item.src}}">
|
||||
<div><img src="{{item.cover}}"></div>
|
||||
<span>{{item.title}}</span>
|
||||
</a>
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</article>
|
||||
</section>
|
||||
<section id="badges">
|
||||
<article>
|
||||
<nav>
|
||||
<h3>My buttons!</h3>
|
||||
<ul>
|
||||
{% for item in 88x31-mine.items %}
|
||||
<li>
|
||||
<a href="{{item.src}}" title="{{item.name}}"><img {%if item.id%}id="{{item.id}}" {%endif%}
|
||||
src="{{item.button}}" alt="{{item.alt}}"></a>
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
<h3>Others</h3>
|
||||
<ul>
|
||||
{% for item in 88x31-others.items %}
|
||||
<li>
|
||||
<a href="{{item.src}}" title="{{item.name}}"><img {%if item.id%}id="{{item.id}}" {%endif%}
|
||||
src="{{item.button}}" alt="{{item.alt}}"></a>
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
<h3>Critters!</h3>
|
||||
<ul>
|
||||
{% for item in 88x31-outgoing.items %}
|
||||
<li>
|
||||
<a href="{{item.src}}" title="{{item.name}}"><img {%if item.id%}id="{{item.id}}" {%endif%}
|
||||
src="{{item.button}}" alt="{{item.alt}}"></a>
|
||||
</li>
|
||||
{% endfor %}
|
||||
<script src="/assets/js/cat.js"></script>
|
||||
<script src="/assets/js/fox.js"></script>
|
||||
</ul>
|
||||
</nav>
|
||||
<div id="pkmn" aria-label="Randomized list of my favorite Pokémon"><script src="/assets/js/poke.js"></script></div>
|
||||
|
||||
</article>
|
||||
</section>
|
5
_src/pages/pages.json
Normal file
5
_src/pages/pages.json
Normal file
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"layout": "base",
|
||||
"permalink": "/{{ title | slug }}/",
|
||||
"tags": "pages"
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue