This commit is contained in:
mose 2017-08-28 02:12:25 +08:00
parent 75344800dd
commit f0566ef5a8
6 changed files with 14 additions and 2 deletions

View File

@ -77,7 +77,7 @@ links:
#twitter_widget_id: xyz123abc
# Add disqus username for Disqus comment board:
disqus_shortname: foo
# disqus_shortname: foo
# Analytics and webmaster tools stuff goes here
#google_analytics: xyz123abc

View File

@ -77,7 +77,7 @@ links:
#twitter_widget_id: xyz123abc
# Add disqus username for Disqus comment board:
disqus_shortname: foo
# disqus_shortname: foo
# Analytics and webmaster tools stuff goes here
#google_analytics: xyz123abc

View File

@ -10,6 +10,9 @@ layout: default
{% unless page.show_meta == false %}
{% include meta_info.html %}
{% endunless %}
{% if page.authors %}
<div class="authors">{{ page.authors }}</div>
{% endif %}
{{ content }}

View File

@ -25,3 +25,12 @@
.text-footer span a {
padding: 0 10px;
}
.authors {
font-size: .9em;
color: #90a959;
font-weight: bold;
font-style: italic;
margin-bottom: 30px;
margin-top: -.5rem;
}