46 lines
1.9 KiB
HTML
46 lines
1.9 KiB
HTML
{% extends "index.html" %}
|
|
|
|
{% block title %}{{ SITENAME }} - Articles by {{ author }}{% 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>
|
|
<h1 class="post-title">Articles by {{ author|capitalize }}</h1>
|
|
<span class="blog-description">Posts: {{ articles|count }}</span>
|
|
{% if 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>
|
|
{% endblock header %}
|
|
|
|
<!-- TODO : author bio -->
|