* Implement AUTHOR_BIO "name" and "cover" fields. In the theme readme, there's are "name" and "cover" fields in the AUTHOR_BIO example, but these two fields weren't implemented yet. Instead, the author page was displaying the author entry through the title Jinja2 filter (which doesn't work so well for surnames like mine, which contains multiple capital letters ;) ), and the cover image was being used for the avatar image. This change uses the "name" and "cover" fields for these, respectfully. The cover image on the author page will also gracefully fall back to the site default if an author cover isn't specified as well. * Correct name author name display in post loop * Set author name if author bio not set default author name string will be title and that can be override form auther bio name
99 lines
4.8 KiB
HTML
99 lines
4.8 KiB
HTML
{% extends "index.html" %}
|
|
|
|
<!-- To support both image in relative path and url -->
|
|
{% set author_name = author.name | title %}
|
|
{% if AUTHORS_BIO and author.name.lower() in AUTHORS_BIO %}
|
|
{% set author_avatar = AUTHORS_BIO[author.name.lower()].image %}
|
|
{% if author_avatar %}
|
|
{% if author_avatar|lower|truncate(4, True, '') != "http" %}
|
|
{% set author_avatar = SITEURL+"/"+author_avatar %}
|
|
{% endif %}
|
|
{% endif %}
|
|
|
|
{% set author_cover = AUTHORS_BIO[author.name.lower()].cover %}
|
|
{% if author_cover %}
|
|
{% if author_cover|lower|truncate(4, True, '') != "http" %}
|
|
{% set author_cover= SITEURL+"/"+author_cover %}
|
|
{% endif %}
|
|
{% endif %}
|
|
|
|
{% set author_name = AUTHORS_BIO[author.name.lower()].name or author.name %}
|
|
{% endif %}
|
|
|
|
{% block title %}{{ SITENAME }} - Articles by {{ author_name }}{% endblock %}
|
|
|
|
{% block opengraph %}
|
|
{{ super() }}
|
|
<meta property="og:title" content="{{ SITENAME }} - Articles by {{ author }}">
|
|
<meta property="og:type" content="profile">
|
|
<meta property="profile:first_name" content="{{ author.name.split(' ')[0] }}">
|
|
<meta property="profile:last_name" content="{{ author.name.split(' ')[1:]|join(' ') }}">
|
|
<meta property="profile:username" content="{{ author.slug }}">
|
|
{% endblock opengraph %}
|
|
|
|
{% block header %}
|
|
<!-- Page Header -->
|
|
<!-- Set your background image for this header on the line below. -->
|
|
<header id="blog-header" class="has-cover">
|
|
<div class="inner">
|
|
<nav id="navigation">
|
|
{% if SITE_LOGO %}
|
|
<span class="blog-logo">
|
|
<a href="{{ SITEURL }}/"><img src="{{SITE_LOGO}}" alt="Blog Logo" /></a>
|
|
</span>
|
|
{% else %}
|
|
<span id="home-button" class="nav-button">
|
|
<a class="home-button" href="{{ SITEURL }}/" title="Home"><i class="ic ic-arrow-left"></i> Home</a>
|
|
</span>
|
|
{% endif %}
|
|
<span id="menu-button" class="nav-button">
|
|
<a class="menu-button"><i class="ic ic-menu"></i> Menu</a>
|
|
</span>
|
|
</nav>
|
|
{% if AUTHORS_BIO and author.name.lower() in AUTHORS_BIO and author_cover %}
|
|
<div class="blog-cover cover" style="background-image: url('{{ author_cover }}')">
|
|
{% elif HEADER_COVER %}
|
|
<div class="blog-cover cover" style="background-image: url('{{ HEADER_COVER }}')">
|
|
{% elif HEADER_COLOR %}
|
|
<div class="post-cover cover" style="background-color: {{ HEADER_COLOR }}">
|
|
{% else %}
|
|
<div class="post-cover cover" style="background-image: url('{{ SITEURL }}/{{ THEME_STATIC_DIR }}/images/post-bg.jpg')">
|
|
{% endif %}
|
|
</div>
|
|
</header>
|
|
|
|
{% if AUTHORS_BIO and author.name.lower() in AUTHORS_BIO %}
|
|
<section id="blog-author" class="has-cover" >
|
|
<div class="inner">
|
|
<aside class="post-author">
|
|
{% if author_avatar %}
|
|
<figure class="post-author-avatar">
|
|
<img src="{{author_avatar}}" alt="{{author_name}}" />
|
|
</figure>
|
|
{% endif %}
|
|
<div class="post-author-bio">
|
|
<h4 class="post-author-name"><a href="{{ SITEURL }}/{{author.url}}">{{author_name}}</a></h4>
|
|
{% if AUTHORS_BIO[author.name.lower()].bio %}
|
|
<p class="post-author-about">{{AUTHORS_BIO[author.name.lower()].bio}}</p>
|
|
{% endif %}
|
|
{% if AUTHORS_BIO[author.name.lower()].location %}
|
|
<span class="post-author-location"><i class="ic ic-location"></i> {{AUTHORS_BIO[author.name.lower()].location}}</span>
|
|
{% endif %}
|
|
{% if AUTHORS_BIO[author.name.lower()].website %}
|
|
<span class="post-author-website"><a href="{{AUTHORS_BIO[author.name.lower()].website}}"><i class="ic ic-link"></i> Website</a></span>
|
|
{% endif %}
|
|
{% if AUTHORS_BIO[author.name.lower()].twitter %}
|
|
<span class="post-author-twitter"><a target="_blank" href="https://twitter.com/{{AUTHORS_BIO[author.name.lower()].twitter}}"><i class="ic ic-twitter"></i> Twitter</a></span>
|
|
{% endif %}
|
|
{% if AUTHORS_BIO[author.name.lower()].facebook %}
|
|
<span class="post-author-facebook"><a target="_blank" href="https://facebook.com/{{AUTHORS_BIO[author.name.lower()].facebook}}"><i class="ic ic-facebook"></i> Facebook</a></span>
|
|
{% endif %}
|
|
<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 %}
|