--- title: Statistics layout: default permalink: /stats.html ---

My first post was published on {{ collections.postStats.firstPostDate | dateToReadableDate }} and my most recent one was published on {{ collections.postStats.lastPostDate | dateToReadableDate }}. I've published {{ collections.postStats.postCount }} posts containing {{ collections.postStats.totalWordCount }} words and {{ collections.postStats.totalCodeBlockCount }} code samples.

Posts have, on average, {{ collections.postStats.avgWordCount | round }} words and a gap of {{ collections.postStats.avgDays | round }} days between them.

Popular posts

    {% assign posts = collections.posts | getPopularPosts: analytics %} {% for post in posts limit: 10 %}
  1. {{ post.data.title }}
  2. {% endfor %}

Posts by year

{% render "partials/post-graph.liquid", postYears: collections.postStats.years %}

Post distribution graphs

{%- postGraph collections.posts -%}