Compare commits

..

No commits in common. "f9f0709bce2dc0a25066629068ae1f6ad81afc7a" and "8f28d9a11df09f8f74875f0341167f8dd1f4c63a" have entirely different histories.

3 changed files with 12 additions and 60 deletions

View file

@ -218,7 +218,7 @@ th {
@font-face {
font-family: 'icons';
src: url("../font/icon.woff") format("woff");
src: url("../font/awesome/fa-solid-900.woff2") format("woff2");
font-weight: normal;
font-style: normal
}
@ -237,15 +237,15 @@ th {
font-variant: normal;
text-transform: none;
line-height: 1em;
margin-left: .2em;
margin-left: .2em
}
.ic-star:before {
content: '\e9d9'
content: '\f004'
}
.ic-rss:before {
content: '\ea9c'
content: '\f09e'
}
.ic-posts:before {
@ -257,38 +257,27 @@ th {
}
.ic-link:before {
content: '\e9cb'
content: '\f0c1'
}
.ic-arrow-right:before {
content: '\ea3c'
content: '\f061'
}
.ic-arrow-left:before {
content: '\ea40'
content: '\f060'
}
.ic-twitter:before {
content: '\e904'
content: '\f099'
}
.ic-mastodon:before {
content: '\e908'
}
.ic-linkedin:before {
content: '\e905'
}
.ic-git:before {
content: '\e906'
}
.ic-github:before {
content: '\e907'
content: '\f4f6'
}
.ic-menu:before {
content: '\e9bd'
content: '\f0c9'
}
@font-face {
@ -1063,8 +1052,7 @@ img {
top: -2px;
margin: auto;
font-size: 0.625em;
line-height: 1.6em;
top:1px
line-height: 1.6em
}
#menu {
@ -1564,7 +1552,7 @@ img {
.post-author-bio span {
position: relative;
font-size: 1em;
font-size: 0.8em;
display: inline-block;
margin-top: 1.25em;
margin-right: 1.25em;

Binary file not shown.

View file

@ -52,42 +52,6 @@
</div>
</header>
<!-- Author info on first page -->
{% if not articles_page.has_previous() %}
<section id="blog-author" {% if selected_cover or selected_color %}class="has-cover"{% endif %} >
<div class="inner">
<aside class="post-author">
{% if PROFILE_IMAGE %}
<figure class="post-author-avatar">
<img src="/{{PROFILE_IMAGE}}" alt="{{AUTHOR}}" />
</figure>
{% endif %}
<div class="post-author-bio">
<h4 class="post-author-name">{{AUTHOR}}</h4>
{% if BIO %}
<p class="post-author-about">{{BIO}}</p>
{% endif %}
{% if LOCATION %}
<span class="post-author-location"><i class="ic ic-location"></i>
{{LOCATION}}
</span>
{% endif %}
<!-- Social linkes in alphabet order. -->
{% for name,link in SOCIAL %}
<span class="post-author-{{name}}">
<a target="_blank" href="{{link}}"><i class="ic ic-{{name}}"></i>{{name}}</a></span>
{% endfor %}
<span class="post-author-stats">
<i class="ic ic-posts"></i> {{ articles|count }}
{% if articles|count > 1 %} posts {% else %} post {% endif %}
</span>
</div>
<div class="clear"></div>
</aside>
</div>
</section>
{% endif %}
{% endblock header %}
{% block content %}