We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5b21c3b commit bc40891Copy full SHA for bc40891
_layouts/post.html
@@ -45,6 +45,13 @@ <h1>{{page.title}}</h1>
45
46
{%- include author_panel.html author=author linked="true" -%}
47
{% endfor %}
48
+
49
+ {% assign additional_author_info = page.additional_author_info | default: '' %}
50
+ {% if additional_author_info.size > 0 %}
51
+ <div class="additional-author-info">
52
+ <p>{{additional_author_info}}</p>
53
+ </div>
54
+ {% endif %}
55
</div>
56
{% endcapture %}
57
_sass/_opensearch.scss
@@ -210,6 +210,12 @@
210
}
211
212
213
+.additional-author-info {
214
+ border-top: 1px solid $secondary-sanfrancisco-fog-s2;
215
+ margin-top: 2rem;
216
+ font-style: italic;
217
+}
218
219
.tree, .tree ul {
220
margin:0;
221
padding:0;
0 commit comments