Skip to content
Snippets Groups Projects
Commit 1a4c3182 authored by Nikos Roussos's avatar Nikos Roussos
Browse files

Miinor template engines

parent 46a49b33
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -62,7 +62,7 @@ body {
 
.container {
margin-top: 20px;
width: 960px;
width: 800px;
}
 
a {
Loading
Loading
@@ -79,3 +79,7 @@ a:visited {
a.text-muted {
color: #555;
}
.avatar {
margin-bottom: 15px;
}
Loading
Loading
@@ -19,10 +19,14 @@
<div class="container">
<div class="row">
<div class="col-md-12 text-center">
<p><img src="/static/img/avatar.png" alt="{{ author }}" class="img-circle" /></p>
<p class="avatar">
<a href="/">
<img src="/static/img/avatar.png" alt="{{ author }}" class="avatar img-circle" />
</a>
</p>
<a href="/index.html">About</a> &bull;
<a href="/blog.html">Blog</a>
<a href="/blog.html">Blog</a> &bull;
<a href="/feed.xml" target="_blank">Feed</a>
</div>
</div>
</div>
Loading
Loading
Loading
Loading
@@ -11,7 +11,7 @@
<tr>
<td id="pubdate">{{ post['shortdate'] }}</td>
<td>
<a href="{{ post.link }}">{{ post.title }}</a><br>
<a href="/{{ post.link }}">{{ post.title }}</a><br>
{% for tag in post.tags %}
<a href="/tag/{{ tag }}/" class="text-muted">#{{ tag }}</a>&nbsp;
{% endfor %}
Loading
Loading
Loading
Loading
@@ -5,11 +5,11 @@
<div class="row">
<div class="col-md-12">
<h2>
<a href="{{ link }}">{{ title }}</a>
<a href="/{{ link }}">{{ title }}</a>
</h2>
<small>
{% for tag in tags %}
#{{ tag }}
<a href="/tag/{{ tag }}/">#{{ tag }}</a>
{% endfor %}
</small>
</div>
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment