chore: organization
This commit is contained in:
parent
1932b02c8f
commit
e3e4ab0335
39 changed files with 44 additions and 44 deletions
|
@ -89,7 +89,7 @@ layout: default
|
|||
</h2>
|
||||
{% assign bookData = books | bookStatus: 'started' | reverse %}
|
||||
{% render "partials/now/media-grid.liquid", data:bookData, shape: "vertical", count: 6 %}
|
||||
{% render "partials/recent-links.liquid", links:collections.links %}
|
||||
{% render "partials/widgets/recent-links.liquid", links:collections.links %}
|
||||
<h2 id="movies" class="section-header flex-centered">
|
||||
{% tablericon "movie" "Movies" %}
|
||||
Movies
|
||||
|
|
|
@ -1,8 +0,0 @@
|
|||
<div class="addon-links">
|
||||
{%- if analytics.size > 0 -%}
|
||||
<div>{% render "partials/popular-posts.liquid", posts:posts, analytics:analytics %}</div>
|
||||
{%- endif -%}
|
||||
{%- if links.size > 0 -%}
|
||||
<div>{% render "partials/recent-links.liquid", links:links %}</div>
|
||||
{%- endif -%}
|
||||
</div>
|
|
@ -4,5 +4,5 @@
|
|||
<div class="now-topper">
|
||||
<p><strong class="highlight-text">I'm a software developer based in Camarillo, California</strong>. I enjoy hanging out with my beautiful family and 3 rescue dogs, technology, automation, <a href="https://coryd.dev/now#artists">music</a>, writing, <a href="https://coryd.dev/now#books">reading</a>, <a href="https://coryd.dev/now#tv">tv</a> and <a href="https://coryd.dev/now#movies">movies</a>. Lately I've been listening to a lot of <strong class="highlight-text">{{ artist.title }}</strong>, reading <strong class="highlight-text">{{ book.title }}</strong> and watching <strong class="highlight-text">{{ show.name }}</strong>.</p>
|
||||
{% render "partials/now/status.liquid", status:status %}
|
||||
{% render "partials/now-playing.liquid" %}
|
||||
{% render "partials/widgets/now-playing.liquid" %}
|
||||
</div>
|
8
src/_includes/partials/widgets/addon-links.liquid
Normal file
8
src/_includes/partials/widgets/addon-links.liquid
Normal file
|
@ -0,0 +1,8 @@
|
|||
<div class="addon-links">
|
||||
{%- if analytics.size > 0 -%}
|
||||
<div>{% render "partials/widgets/popular-posts.liquid", posts:posts, analytics:analytics %}</div>
|
||||
{%- endif -%}
|
||||
{%- if links.size > 0 -%}
|
||||
<div>{% render "partials/widgets/recent-links.liquid", links:links %}</div>
|
||||
{%- endif -%}
|
||||
</div>
|
|
@ -7,14 +7,14 @@ schema: blog
|
|||
<div class="default-wrapper">
|
||||
<article class="h-entry">
|
||||
<div class="flex-centered gap-xs icon-small icon-light">
|
||||
{% render "partials/share-button.liquid", url:postUrl, title:title, tagMap:collections.tagMap %}
|
||||
{% render "partials/widgets/share-button.liquid", url:postUrl, title:title, tagMap:collections.tagMap %}
|
||||
{% tablericon "calendar-month" "Date" %}
|
||||
<time class="dt-published" datetime="{{ date }}">
|
||||
{{ date | date: "%B %e, %Y" }}
|
||||
</time>
|
||||
</div>
|
||||
<h2 class="p-name">{{ title }}</h2>
|
||||
<div class="text-small">{% render "partials/tags.liquid", tags:tags %}</div>
|
||||
<div class="text-small">{% render "partials/widgets/tags.liquid", tags:tags %}</div>
|
||||
<span class="p-author h-card hidden">{{ meta.author }}</span>
|
||||
<div class="p-summary hidden">{{ post_excerpt }}</div>
|
||||
<div class="e-content">
|
||||
|
@ -23,5 +23,5 @@ schema: blog
|
|||
</div>
|
||||
</article>
|
||||
</div>
|
||||
{% render "partials/mastodon-post.liquid", postUrl:postUrl, linkPosts:linkPosts %}
|
||||
{% render "partials/addon-links.liquid", posts:collections.posts, analytics:analytics, links:collections.links %}
|
||||
{% render "partials/widgets/mastodon-post.liquid", postUrl:postUrl, linkPosts:linkPosts %}
|
||||
{% render "partials/widgets/addon-links.liquid", posts:collections.posts, analytics:analytics, links:collections.links %}
|
Reference in a new issue