diff options
| author | user@node5.net <user@node5.net> | 2025-09-25 23:07:45 +0200 |
|---|---|---|
| committer | user@node5.net <user@node5.net> | 2025-09-25 23:07:45 +0200 |
| commit | 83f461c2ee691007e6c8a08d878f4abaae1803f4 (patch) | |
| tree | e9d16387808530b6456841f1f31404ce1610621e | |
| parent | 0bb054b23547e150a2795314ae246d7479e23f4d (diff) | |
Article meta data dates bottom, icons
| -rw-r--r-- | blog.node5.net/templates/article.html | 1 | ||||
| -rw-r--r-- | blog.node5.net/templates/article_meta_data.html | 9 | ||||
| -rw-r--r-- | blog.node5.net/templates/base.html | 1 |
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"> |
