feat: initial commit

This commit is contained in:
Cory Dransfeldt 2025-03-27 16:46:02 -07:00
commit e214116e40
No known key found for this signature in database
253 changed files with 17406 additions and 0 deletions

View file

@ -0,0 +1,42 @@
---
title: Stats
permalink: /stats/index.html
description: Some basic stats about my activity on this site.
updated: "now"
---
<h2 class="page-title">Stats</h2>
<p>I share the <a href="/music" class="music">music I listen to</a>, <a href="/music/concerts" class="concerts">concerts I attend</a>, <a href="watching" class="tv">shows and movies I watch</a>, <a href="books" class="books">books I read</a>, <a href="/posts" class="article">posts I write</a>, and <a href="/links" class="link">links I enjoy</a> on this site. I have some basic counts of each below.</p>
<hr />
<p class="music">I've listened to <mark>{{ stats.listen_count }} {{ stats.listen_count | pluralize: "track" }}</mark> by <mark>{{ stats.artist_count }} {{ stats.artist_count | pluralize: "artist" }}</mark> across <mark>{{ stats.genre_count }} {{ stats.genre_count | pluralize: "genre" }}</mark>.</p>
<p class="concerts">I've been to <mark>{{ stats.concert_count }} {{ stats.concert_count | pluralize: "concert" }}</mark> at <mark>{{ stats.venue_count }} {{ stats.venue_count | pluralize: "venue" }}</mark>.</p>
<p class="tv">I've watched <mark>{{ stats.episode_count }} {{ stats.episode_count | pluralize: "episode" }}</mark> of <mark>{{ stats.show_count }} {{ stats.show_count | pluralize: "show" }}</mark>{% if stats.episode_count != "1" %} (some more than once){% endif %}.</p>
<p class="movies">I've watched <mark>{{ stats.movie_count }} {{ stats.movie_count | pluralize: "movie" }}</mark>{% if stats.movie_count != "1" %} (some more than once){% endif %}.</p>
<p class="books">I've read <mark>{{ stats.book_count }} {{ stats.book_count | pluralize: "book" }}</mark>. I've read <mark>{{ books.daysRead }} {{ books.daysRead | pluralize: "day" }}</mark> in a row and counting.</p>
<p class="article">I've written <mark>{{ stats.post_count }} {{ stats.post_count | pluralize: "post" }}</mark>.</p>
<p class="link">I've shared <mark>{{ stats.link_count }} {{ stats.link_count | pluralize: "link" }}</mark>.</p>
<hr />
{% for year_stats in stats.yearly_breakdown %}
<h3>{{ year_stats.year }}</h3>
<ul>
{% if year_stats.listen_count %}
<li class="music">Listened to <mark>{{ year_stats.listen_count }} {{ year_stats.listen_count | pluralize: "track" }}</mark> by <mark>{{ year_stats.artist_count }} {{ year_stats.artist_count | pluralize: "artist" }}</mark> across <mark>{{ year_stats.genre_count }} {{ year_stats.genre_count | pluralize: "genre" }}</mark>.</li>
{% endif %}
{% if year_stats.concert_count %}
<li class="concerts">Attended <mark>{{ year_stats.concert_count }} {{ year_stats.concert_count | pluralize: "concert" }}</mark> at <mark>{{ year_stats.venue_count }} {{ year_stats.venue_count | pluralize: "venue" }}</mark>.</li>
{% endif %}
{% if year_stats.episode_count %}
<li class="tv">Watched <mark>{{ year_stats.episode_count }} {{ year_stats.episode_count | pluralize: "episode" }}</mark> of <mark>{{ year_stats.show_count }} {{ year_stats.show_count | pluralize: "show" }}</mark>{% if year_stats.episode_count != "1" %} (some more than once){% endif %}.</li>
{% endif %}
{% if year_stats.movie_count %}<li class="movies">Watched <mark>{{ year_stats.movie_count }} {{ year_stats.movie_count | pluralize: "movie" }}</mark>{% if year_stats.movie_count != "1" %} (some more than once){% endif %}.</li>
{% endif %}
{% if year_stats.book_count %}
<li class="books">Read <mark>{{ year_stats.book_count }} {{ year_stats.book_count | pluralize: "book" }}</mark>.</li>
{% endif %}
{% if year_stats.post_count %}
<li class="article">Wrote <mark>{{ year_stats.post_count }} {{ year_stats.post_count | pluralize: "post" }}</mark>.</li>
{% endif %}
{% if year_stats.link_count %}
<li class="link">Shared <mark>{{ year_stats.link_count }} {{ year_stats.link_count | pluralize: "link" }}</mark>.</li>
{% endif %}
</ul>
{% endfor %}