1616 < h1 data-toc-skip > {{ page.title }}</ h1 >
1717
1818 < div class ="post-meta text-muted d-flex flex-column ">
19- <!-- Published Date and Categoreis -->
19+ <!-- Published date and author -->
2020 < div >
21+ Posted
2122 < span class ="timeago " data-toggle ="tooltip " data-placement ="bottom "
2223 title ="{{ page.date | date: site.data.date_format.tooltip }} ">
2324 {{ page.date | date: site.data.date_format.post }}
2425 < i class ="unloaded "> {{ page.date | date_to_xmlschema }}</ i >
2526 </ span >
26- {% if page.categories.size > 0 %}on{% endif %}
27- {% for category in page.categories %}
28- < a href ='{{ site.baseurl }}/categories/{{ category | replace: ' ', '-' | downcase | url_encode }}/'> {{ category }}</ a >
29- {%- unless forloop.last -%}, {%- endunless -%}
30- {% endfor %}
27+ by
28+ < span class ="author ">
29+ {% if page.author %}
30+ {{ page.author }}
31+ {% else%}
32+ {{ site.author }}
33+ {% endif %}
34+ </ span >
35+ </ div >
36+
37+ <!-- lastmod -->
38+ {% if page.seo.date_modified > page.date %}
39+ < div >
40+ Updated
41+ < span class ="timeago lastmod "
42+ data-toggle ="tooltip " data-placement ="bottom "
43+ title ="{{ page.seo.date_modified | date: site.data.date_format.tooltip }} ">
44+ {{ page.seo.date_modified | date: site.data.date_format.post }}
45+ < i class ="unloaded "> {{ page.seo.date_modified | date_to_xmlschema}}</ i >
46+ </ span >
3147 </ div >
48+ {% endif %}
3249
3350 <!-- page views -->
3451 {% if site.google_analytics.pv.enabled %}
3552 < div >
36- < span id ="pv " class ="pageviews "> < i class ="fas fa-spinner fa-spin fa-fw "> </ i > </ span > views
53+ < span id ="pv " class ="pageviews "> < i class ="fas fa-spinner fa-spin fa-fw "> </ i > </ span >
54+ views
3755 </ div >
3856 {% endif %}
3957
@@ -57,22 +75,21 @@ <h1 data-toc-skip>{{ page.title }}</h1>
5775
5876 <div class="post-tail-wrapper text-muted">
5977
60- <!-- lastmod -->
61- {% if page.seo.date_modified > page.date %}
62- <div>
63- Updated
64- <span class="timeago lastmod"
65- data-toggle="tooltip" data-placement="top"
66- title="{{ page.seo.date_modified | date: site.data.date_format.tooltip }}">
67- {{ page.seo.date_modified | date: site.data.date_format.post }}
68- <i class="unloaded">{{ page.seo.date_modified | date_to_xmlschema}}</i>
69- </span>
78+ <!-- categories -->
79+ {% if page.categories.size > 0 %}
80+ <div class="post-meta mb-3">
81+ <i class="far fa-folder-open fa-fw mr-1"></i>
82+ {% for category in page.categories %}
83+ <a href= '{{ site.baseurl }} /categories/{{ category | replace: ' ', '-' | downcase | url_encode }}/'> {{ category }}</ a >
84+ {%- unless forloop.last -%}, {%- endunless -%}
85+ {% endfor %}
7086 </ div >
7187 {% endif %}
7288
73- <!-- Tags -->
89+ <!-- tags -->
7490 {% if page.tags.size > 0 %}
75- <div class="pt-3">
91+ < div class ="post-tags ">
92+ < i class ="fa fa-tags fa-fw mr-1 "> </ i >
7693 {% for tag in page.tags %}
7794 < a href ="{{ site.baseurl }}/tags/{{ tag | replace: ' ', '-' | downcase | url_encode }}/ "
7895 class ="post-tag no-text-decoration " >
@@ -84,18 +101,11 @@ <h1 data-toc-skip>{{ page.title }}</h1>
84101
85102 < div class ="post-tail-bottom
86103 d-flex justify-content-between align-items-center pt-5 pb-2 ">
87-
88- {% if site.data.right.license %}
104+ {% if site.data.rights.license %}
89105 < div class ="license-wrapper ">
90- < span class ="license-text ml-1 mr-1 ">
91- {{ site.data.right.license.prompt }}
92- < a href ="{{ site.data.right.license.link }} ">
93- {{ site.data.right.license.name }}
94- {% for icon in site.data.right.license.icons %}
95- < i class ="{{ icon }} "> </ i >
96- {% endfor %}
97- </ a >
98- </ span >
106+ This post is licensed under
107+ < a href ="{{ site.data.rights.license.link }} "> {{ site.data.rights.license.name }}</ a >
108+ by the author.
99109 </ div >
100110 {% endif %}
101111
0 commit comments