chore: organization + loading

This commit is contained in:
Cory Dransfeldt 2023-08-25 09:18:03 -07:00
parent 51f25e786f
commit 8108dfc25f
No known key found for this signature in database
4 changed files with 13 additions and 15 deletions

View file

@ -0,0 +1,9 @@
<p id="now-playing" class="mb-0 flex flex-row items-start md:items-center">
<span id="now-playing-loading" class="icon--spin">
{% tablericon 'loader-2' 'Loading...' %}
</span>
<span id="now-playing-display">
<span id="now-playing-emoji" class="pt-1 md:pt-0 mr-1"></span>
<span id="now-playing-content"></span>
</span>
</p>

View file

@ -0,0 +1,20 @@
<div class="border-b border-gray-200 dark:border-gray-700 mb-8 pb-8">
<h2 class="m-0 mb-4 inline">
<a class="text-gray-700 dark:text-gray-200 text-xl font-black leading-tight tracking-normal md:text-2xl no-underline not-prose" href="/now">
Now
</a>
</h2>
<div class="dark:text-white text-gray-800">
<p>I'm a software developer in Camarillo, California. I enjoy hanging out with my beautiful family and 4 rescue dogs, technology, automation,
<a href="https://www.last.fm/user/cdrn_" rel="noopener noreferrer">music</a>, writing,
<a href="https://www.goodreads.com/user/show/168570560-cory-dransfeldt" rel="noopener noreferrer">reading</a>,
<a href="https://trakt.tv/users/cdransf" rel="noopener noreferrer">tv</a>
and
<a href="https://letterboxd.com/cdme" rel="noopener noreferrer">movies</a>.</p>
<p class="mb-0 flex flex-row items-start md:items-center">
<span class="pt-1 md:pt-0 mr-1">{{ status.emoji }}</span>
<span>{{ status.content }}</span>
</p>
{% include "partials/now/playing.liquid" %}
</div>
</div>