feat: link author name to about page; link color
This commit is contained in:
parent
828d550b71
commit
cf00073e04
2 changed files with 11 additions and 1 deletions
|
@ -25,7 +25,9 @@ layout: default
|
|||
{% if page.author %} By
|
||||
<span itemprop="author" itemscope itemtype="http://schema.org/Person">
|
||||
<span class="blog-post__header__meta__author h-card" itemprop="name"
|
||||
>{{ page.author }}</span
|
||||
><a href="{{ 'about' | relative_url }}"
|
||||
>{{ page.author }}</a
|
||||
></span
|
||||
></span
|
||||
>
|
||||
| {% endif %} {% assign date_format = site.minima.date_format |
|
||||
|
|
|
@ -31,6 +31,14 @@ body {
|
|||
font-style: normal;
|
||||
text-rendering: optimizeLegibility;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
|
||||
a:hover {
|
||||
color: #2f5db4;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #2b6be2;
|
||||
}
|
||||
}
|
||||
|
||||
header.site-header {
|
||||
|
|
Loading…
Reference in a new issue