chore: organization

This commit is contained in:
Cory Dransfeldt 2024-04-29 18:12:37 -07:00
parent 1932b02c8f
commit e3e4ab0335
No known key found for this signature in database
39 changed files with 44 additions and 44 deletions

View file

@ -11,6 +11,6 @@ image: /assets/img/404.jpg
What kind of idiots do you have working here? <a href="/">Hurry up and skip out on the room service bill!</a>
</div>
<hr class="large-spacing" />
{% render "partials/tags.liquid", tags:collections.tagsSortedByCount, hasSpace:true %}
{% render "partials/addon-links.liquid", posts:collections.posts, analytics:analytics, links:collections.links %}
{% render "partials/widgets/tags.liquid", tags:collections.tagsSortedByCount, hasSpace:true %}
{% render "partials/widgets/addon-links.liquid", posts:collections.posts, analytics:analytics, links:collections.links %}
</div>

View file

@ -22,4 +22,4 @@ I tend to write about whatever strikes me, with a focus on development, technolo
[You can also see what I'm doing now](/now), [take a look at the links I've shared recently](/links) or [check out the webrings I'm a member of](/webrings).
{% render "partials/badge-grid.liquid" %}
{% render "partials/widgets/badge-grid.liquid" %}

View file

@ -22,4 +22,4 @@ permalink: "/books/want-to-read/{{ pagination.pageNumber }}/index.html"
</li>
{% endfor %}
</ul>
{% render "partials/paginator.liquid", pagination:pagination %}
{% render "partials/widgets/paginator.liquid", pagination:pagination %}

View file

@ -8,5 +8,5 @@ permalink: /contact/success.html
I'll be in touch soon! <a href="/">Head home</a>
</div>
<hr class="large-spacing" />
{% render "partials/tags.liquid", tags:collections.tagsSortedByCount, hasSpace:true %}
{% render "partials/addon-links.liquid", posts:collections.posts, analytics:analytics, links:links %}
{% render "partials/widgets/tags.liquid", tags:collections.tagsSortedByCount, hasSpace:true %}
{% render "partials/widgets/addon-links.liquid", posts:collections.posts, analytics:analytics, links:links %}

View file

@ -55,5 +55,5 @@ permalink: /search.html
<input class="search__form--fallback" type="hidden" placeholder="Search" name="sites" value="coryd.dev">
</form>
<ul class="search__results hidden"></ul>
{% render "partials/tags.liquid", tags:collections.tagsSortedByCount, hasSpace:true %}
{% render "partials/addon-links.liquid", posts:collections.posts, analytics:analytics, links:collections.links %}
{% render "partials/widgets/tags.liquid", tags:collections.tagsSortedByCount, hasSpace:true %}
{% render "partials/widgets/addon-links.liquid", posts:collections.posts, analytics:analytics, links:collections.links %}

View file

@ -8,7 +8,7 @@ permalink: /stats.html
<p>My first post was published on <strong class="highlight-text">{{ collections.postStats.firstPostDate | dateToReadableDate }}</strong> and my most recent one was published on <strong class="highlight-text">{{ collections.postStats.lastPostDate | dateToReadableDate }}</strong>. I've published <strong class="highlight-text">{{ collections.postStats.postCount }} posts</strong> containing <strong class="highlight-text">{{ collections.postStats.totalWordCount }} words</strong> and <strong class="highlight-text">{{ collections.postStats.totalCodeBlockCount }} code samples</strong>.</p>
<p>Posts have, on average, <strong class="highlight-text">{{ collections.postStats.avgWordCount | round }} words</strong> and a gap of <strong class="highlight-text">{{ collections.postStats.avgDays | round }} days</strong> between them.</p>
<p><strong>Top tags</strong></p>
{% render "partials/tags.liquid", tags:collections.tagsSortedByCount %}
{% render "partials/widgets/tags.liquid", tags:collections.tagsSortedByCount %}
<p><strong>Popular posts</strong></p>
<ol class="link-list">
{% assign posts = collections.posts | getPopularPosts: analytics %}
@ -21,6 +21,6 @@ permalink: /stats.html
{% endfor %}
</ol>
<p><strong>Posts by year</strong></p>
{% render "partials/post-graph.liquid", postYears: collections.postStats.years %}
{% render "partials/widgets/post-graph.liquid", postYears: collections.postStats.years %}
<p><strong>Post distribution graphs</strong></p>
{%- postGraph collections.posts -%}