Oops, add unstaged files
This commit is contained in:
parent
6e9a76aa64
commit
87b9544ef8
2 changed files with 73 additions and 0 deletions
50
content/art/stats/_index.md
Normal file
50
content/art/stats/_index.md
Normal file
|
@ -0,0 +1,50 @@
|
||||||
|
---
|
||||||
|
title: Stats
|
||||||
|
layout: art-stats
|
||||||
|
total: 182
|
||||||
|
years:
|
||||||
|
- year: 2019
|
||||||
|
num: 60
|
||||||
|
- year: 2022
|
||||||
|
num: 44
|
||||||
|
- year: 2020
|
||||||
|
num: 29
|
||||||
|
- year: 2021
|
||||||
|
num: 27
|
||||||
|
- year: 2018
|
||||||
|
num: 7
|
||||||
|
- year: 2023
|
||||||
|
num: 7
|
||||||
|
- year: 2016
|
||||||
|
num: 7
|
||||||
|
- year: 2017
|
||||||
|
num: 1
|
||||||
|
characters:
|
||||||
|
- name: Juritta
|
||||||
|
num: 13
|
||||||
|
- name: Mysterious Swordswoman
|
||||||
|
num: 9
|
||||||
|
- name: Merume
|
||||||
|
num: 7
|
||||||
|
- name: Mari
|
||||||
|
num: 5
|
||||||
|
- name: Asuka
|
||||||
|
num: 5
|
||||||
|
- name: Sakura
|
||||||
|
num: 4
|
||||||
|
- name: Mythra
|
||||||
|
num: 4
|
||||||
|
- name: Elisanne
|
||||||
|
num: 2
|
||||||
|
- name: Byleth
|
||||||
|
num: 2
|
||||||
|
- name: Tifa
|
||||||
|
num: 2
|
||||||
|
tags:
|
||||||
|
- name: technical
|
||||||
|
num: 1
|
||||||
|
- name: landscape
|
||||||
|
num: 7
|
||||||
|
- name: drawpile
|
||||||
|
num: 8
|
||||||
|
---
|
23
themes/red/layouts/_default/art-stats.html
Normal file
23
themes/red/layouts/_default/art-stats.html
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
{{ define "main" }}
|
||||||
|
<h2>{{ .Title }}</h2>
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
<h3># of Artworks by Year</h3>
|
||||||
|
<ol>
|
||||||
|
{{ range $.Param "years" }}
|
||||||
|
{{ $year := .year }}
|
||||||
|
{{ $num := .num }}
|
||||||
|
<li><a href="/art/{{ $year }}">{{ $year }}</a> ({{ $num }} artworks)</li>
|
||||||
|
{{ end }}
|
||||||
|
</ol>
|
||||||
|
|
||||||
|
<h3>Most Drawn Characters</h3>
|
||||||
|
<ol>
|
||||||
|
{{ range $.Param "characters" }}
|
||||||
|
{{ $year := .name }}
|
||||||
|
{{ $num := .num }}
|
||||||
|
<li><a href="/art/characters/{{ urlize $year }}">{{ $year }}</a> ({{ $num }} artworks)</li>
|
||||||
|
{{ end }}
|
||||||
|
</ol>
|
||||||
|
{{ end }}
|
Loading…
Add table
Reference in a new issue