diff options
author | Pachamaltese <mvargas@dcc.uchile.cl> | 2017-04-08 08:49:35 -0300 |
---|---|---|
committer | Alexis Metaireau <alexis@notmyidea.org> | 2017-04-08 13:49:35 +0200 |
commit | b201e57315350340366ca8d2659e5429b85aab10 (patch) | |
tree | 2b6fe40e630e8916285d9293da8e057d50b30db9 /medio/templates/author.html | |
parent | aad467728fc44d967a410cea977bf67a67355fb6 (diff) | |
download | pelican-themes-b201e57315350340366ca8d2659e5429b85aab10.tar.gz |
uploaded medio theme (#477)
* uploaded medio theme
* cons example
* Added example_pelicanconf.py
Diffstat (limited to 'medio/templates/author.html')
-rwxr-xr-x | medio/templates/author.html | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/medio/templates/author.html b/medio/templates/author.html new file mode 100755 index 0000000..b17d010 --- /dev/null +++ b/medio/templates/author.html @@ -0,0 +1,52 @@ +{% extends "base.html" %} +{% block title %}{{ SITENAME }} - {{ author }}{% endblock %} +{% block content %} +<div class="author-page-header"> + {% if author|string in BLOG_AUTHORS %} + <!-- + {% if BLOG_AUTHORS.get(author|string).cover %} + <div class="cover" style="background-image: url({{ BLOG_AUTHORS.get(author|string).cover }});background-color: rgba(102, 102, 102, 0.3);background-blend-mode: multiply;"></div> + {% endif %} + --> + <div class="author-profile" style="text-align:left;padding-top:5%"> + <div class="pure-u-17-24"> + <h1>{{ author }}</h1> + <p class="author-description"> + {{ BLOG_AUTHORS.get(author|string).description }} + {% for icon, link in BLOG_AUTHORS.get(author|string).links %} + <a href="{{ link }}" style="color:rgba(0,0,0,0.6)"><i class="fa fa-{{ icon }}"></i></a> + {% endfor %} + </p> + <!-- + <ul class="author-links"> + {% for icon, link in BLOG_AUTHORS.get(author|string).links %} + <li><a href="{{ link }}"><i class="fa fa-{{ icon }}"></i></a> + {% endfor %} + </ul> + --> + </div> + <div class="pure-u-6-24" style="padding-top:1%"> + <div class="avatar{% if not BLOG_AUTHORS.get(author|string).cover %}-no-cover{% endif %}"><img src="{{ BLOG_AUTHORS.get(author|string).image}}" alt="{{ author|striptags }}"></div> + </div> + </div> + {% endif %} +</div> + +<div class="author-page-divider"> + <span>Latest Posts</span> +</div> + + +<div class="main-container"> + <div class="pure-g"> + <div class="pure-u-1"> + + {% include "includes/posts.html" %} + + {% include "pagination.html" %} + + </div> + </div> +</div> + +{% endblock content %} |