Author casing (#5)
* added trailing slash to Home link - to properly handle root urls * updated Home link on author page * updated Home link on misc. pages * switched from capitalize to title in order to properly capitalize two word names * reverted URL changes to keep seperate from casing logic changes * updated metatag logic to remove extraneous metatags on articles * removed other changes. only author casing in this PR
This commit is contained in:
parent
49fc5bfe2f
commit
be2c4c6ff5
12 changed files with 24 additions and 23 deletions
|
@ -14,14 +14,14 @@
|
|||
</span>
|
||||
{% else %}
|
||||
<span id="home-button" class="nav-button">
|
||||
<a class="home-button" href="{{ SITEURL }}/" title="Home"><i class="ic ic-arrow-left"></i> Home</a>
|
||||
<a class="home-button" href="{{ SITEURL }}" title="Home"><i class="ic ic-arrow-left"></i> Home</a>
|
||||
</span>
|
||||
{% endif %}
|
||||
<span id="menu-button" class="nav-button">
|
||||
<a class="menu-button"><i class="ic ic-menu"></i> Menu</a>
|
||||
</span>
|
||||
</nav>
|
||||
<h1 class="post-title">Articles by {{ author|capitalize }}</h1>
|
||||
<h1 class="post-title">Articles by {{ author|title }}</h1>
|
||||
{% if HEADER_COVER %}
|
||||
<div class="blog-cover cover" style="background-image: url('{{ HEADER_COVER }}')">
|
||||
{% elif HEADER_COLOR %}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue