+
+
+ {% capture author_name %}{{ site.data.authors[page.author].name | default: site.social.name }}{% endcapture %}
+ {% assign author_link = nil %}
-
- {% if page.last_modified_at %}
-
- {{ site.data.locales[lang].post.updated }}
- {% include datetime.html date=page.last_modified_at tooltip=true %}
-
+ {% if page.author %}
+ {% assign author_link = site.data.authors[page.author].url %}
+ {% elsif author_name == site.social.name %}
+ {% assign author_link = site.social.links[0] %}
{% endif %}
-
- {% include read-time.html content=content prompt=true %}
+ {{ site.data.locales[lang].post.written_by }}
+
+ {% if author_link %}
+ {{ author_name }}
+ {% else %}
+ {{ author_name }}
+ {% endif %}
+
+
+
+
{% if site.google_analytics.pv.proxy_endpoint or site.google_analytics.pv.cache_path %}
@@ -84,6 +84,9 @@ tail_includes:
{{ site.data.locales[lang].post.pageview_measure }}
{% endif %}
+
+
+ {% include read-time.html content=content prompt=true %}