about summary refs log tree commit diff
path: root/blog.node5.net
diff options
context:
space:
mode:
Diffstat (limited to 'blog.node5.net')
-rw-r--r--blog.node5.net/templates/article.html1
-rw-r--r--blog.node5.net/templates/article_meta_data.html9
-rw-r--r--blog.node5.net/templates/base.html1
3 files changed, 4 insertions, 7 deletions
diff --git a/blog.node5.net/templates/article.html b/blog.node5.net/templates/article.html
index 1164eb6..da3b668 100644
--- a/blog.node5.net/templates/article.html
+++ b/blog.node5.net/templates/article.html
@@ -3,7 +3,6 @@
 {% block head %}
 	{{ super() }}
 	<link rel="stylesheet" type="text/css" href="/article.css">
-	<link rel="stylesheet" type="text/css" href="/devicons.css">
 {% endblock %}
 {% block content %}
 	<h1 class="inline">{{ article.name }}</h1> {% include 'article_meta_data.html' %}
diff --git a/blog.node5.net/templates/article_meta_data.html b/blog.node5.net/templates/article_meta_data.html
index cd6968e..5e9068e 100644
--- a/blog.node5.net/templates/article_meta_data.html
+++ b/blog.node5.net/templates/article_meta_data.html
@@ -1,12 +1,9 @@
+<h4>{{ article.metadata.description }}</h4>
 <br>
-<span title="Created: {{ article.metadata.created }}" class="grey">Created: {{ article.metadata.created.strftime('%Y-%m-%d') }}</span>
 
+<span title="Created: {{ article.metadata.created }}" class="grey">🗓️ Created: {{ article.metadata.created.strftime('%Y-%m-%d') }}</span>
 <span class="dark-grey"> | </span>
-
-
 <a href="https://git.node5.net/blog/articles/log/{{ article.source_path | replace('blog.node5.net/articles', '') }}">
     <span title="Modified: {{ article.modified }}
-Click to see article history" class="grey">Modified: {{ article.modified.strftime('%Y-%m-%d') }}</span>
+Click to see article history" class="grey"><span class="devicons devicons-git" style="color: orange"></span> Modified: {{ article.modified.strftime('%Y-%m-%d') }}</span>
 </a>
-
-<h4>{{ article.metadata.description }}</h4>
diff --git a/blog.node5.net/templates/base.html b/blog.node5.net/templates/base.html
index fc0be7d..d064d6b 100644
--- a/blog.node5.net/templates/base.html
+++ b/blog.node5.net/templates/base.html
@@ -5,6 +5,7 @@
     <link rel="stylesheet" href="/main.css"/>
     <link rel="stylesheet" type="text/css" href="/comment_section.css">
     <link rel="stylesheet" type="text/css" href="/pygmentize_code_highlight.css">
+    <link rel="stylesheet" type="text/css" href="/devicons.css">
     <title>{% block title_prefix %}{% endblock %}{{title}}</title>
     <link rel="icon" type="image/x-icon" href="https://node5.net/static/dmg_01.png">
     <meta charset="UTF-8">