aboutsummaryrefslogtreecommitdiffstats
path: root/medio/templates/index.html
diff options
context:
space:
mode:
authorPachamaltese <mvargas@dcc.uchile.cl>2017-04-08 08:49:35 -0300
committerAlexis Metaireau <alexis@notmyidea.org>2017-04-08 13:49:35 +0200
commitb201e57315350340366ca8d2659e5429b85aab10 (patch)
tree2b6fe40e630e8916285d9293da8e057d50b30db9 /medio/templates/index.html
parentaad467728fc44d967a410cea977bf67a67355fb6 (diff)
downloadpelican-themes-b201e57315350340366ca8d2659e5429b85aab10.tar.gz
uploaded medio theme (#477)
* uploaded medio theme * cons example * Added example_pelicanconf.py
Diffstat (limited to 'medio/templates/index.html')
-rwxr-xr-xmedio/templates/index.html67
1 files changed, 67 insertions, 0 deletions
diff --git a/medio/templates/index.html b/medio/templates/index.html
new file mode 100755
index 0000000..77e1a0b
--- /dev/null
+++ b/medio/templates/index.html
@@ -0,0 +1,67 @@
+{% extends "base.html" %}
+{% block content %}
+<div class="main-container">
+ <div class="pure-g">
+ <div class="pure-u-1 pure-u-lg-2-3">
+
+ {% if tag %}
+ <div class="post heading">
+ <div class="heading-prefix">Tagged in </div>
+ <h3>{{ tag }}</h3>
+ </div>
+ {% endif %}
+
+ {% include "includes/posts.html" %}
+
+ {% include "pagination.html" %}
+
+ </div>
+
+ <div class="pure-u-1 pure-u-lg-1-3">
+ <div class="right-container">
+ <div class="right-bar">
+ <div class="right-head">
+ About Me
+ </div>
+
+ <div class="tags">
+ <p>
+ My name is John Doe and this is dummy text.
+ </p>
+ </div>
+
+ <div class="right-head">
+ Links
+ </div>
+
+ <div class="tags">
+ <p>
+ Replace this links
+ <a title="Twitter" href="https://twitter.com/replace-this"><i class="fa fa-twitter fa-2x"></i></a>
+ <a title="GitHub" href="https://github.com/replace-this"><i class="fa fa-github fa-2x"></i></a>
+
+ </p>
+ </div>
+
+ <div class="right-head">
+ Blogroll
+ </div>
+ <div class="tags">
+ <a href="http://replace-this.io/">Replace This</a>
+ </div>
+ <div class="right-head">
+ Tags
+ </div>
+ <div class="tags">
+ {% for tag, null in tags %}
+ <a href="{{ SITEURL }}/{{ tag.url }}">{{ tag }}</a>
+ {% endfor %}
+ </div>
+ </div>
+ </div>
+ </div>
+
+ </div>
+</div>
+
+{% endblock content %}