Compare commits

..

No commits in common. "28705fac331054bf1eec07a02b6dcd2e54c78080" and "bde90e8f571b70bb25379ccaf78df1a2540aea34" have entirely different histories.

3 changed files with 17 additions and 16 deletions

View File

@ -21,10 +21,7 @@
<time>{{ post.date | date_to_string }} </time> <time>{{ post.date | date_to_string }} </time>
</div> </div>
<div class="col-2 image"> <div class="col-2 image">
<img src="{{ post.author_image }}" alt="{{ post.author }}" /> <img src="{{ post.author_image }}" alt="{{ post.author }}" /><span class="name">{{ post.author }}</span>
</div>
<div class="col-3 name">
<div>{{ post.author }}</div>
</div> </div>
</div> </div>
{% endif %} {% endif %}

View File

@ -66,15 +66,19 @@ layout: welcome
<p>{{ post.content | strip_html | truncatewords: 50 }}</p> <p>{{ post.content | strip_html | truncatewords: 50 }}</p>
<footer> <footer>
<div class="row"> <div class="row">
<div class="col-4">
<div class="col-4">
<p><a href="{{ post.url }}">Continue Reading</a></p>
</div>
<div class="col-2">
<p>Category: <a href="#">{{ post.category }}</a></p> <p>Category: <a href="#">{{ post.category }}</a></p>
</div> </div>
<div class="col-6"> <div class="col-5">
<p>Tags: <a href="#">{{ post.tags }}</a></p> <p>Tags: <a href="#">{{ post.tags }}</a></p>
</div> </div>
<div class="col-2"> <div class="col-1">
<p><a href="{{ post.url }}" class="fa-solid fa-comment"></a> 43</p> <p><a href="{{ post.url }}" class="fa-solid fa-comment"></a> 43</p>
</div> </div>

View File

@ -132,7 +132,7 @@ details[open] > summary {
/* Content Area */ /* Content Area */
.col-9.wrapper { .col-9.wrapper {
padding: 0 0em; padding: 0 3em;
} }
#content-area { #content-area {
@ -180,12 +180,8 @@ details[open] > summary {
.image img { .image img {
border-radius: 100%; border-radius: 100%;
width: 50px; height: 75px;
}
.col-2.image {
width: auto; width: auto;
margin-right: 1em;
} }
.row.author { .row.author {
@ -195,7 +191,7 @@ details[open] > summary {
} }
.col-2.date { .col-2.date {
margin-top: 1.5em; margin-top: 1.75em;
margin-right: 1.5em; margin-right: 1.5em;
width: auto; width: auto;
} }
@ -204,11 +200,15 @@ details[open] > summary {
color: white; color: white;
} }
.col-3.name div { .col-2.image .name {
color: white; color: white;
margin-top: 1.5em; margin-left: .75em;
} }
.col-2.image.name {
margin-top: 1.75em;
margin-left: 1.5em;
}
/* Content Footer */ /* Content Footer */