_includes/header.html in jekyll-theme-prologue-0.2.3 vs _includes/header.html in jekyll-theme-prologue-0.2.4
- old
+ new
@@ -3,27 +3,22 @@
<div class="top">
<!-- Logo -->
<div id="logo">
- <span class="image avatar48"><img src="{{ 'assets/images/avatar.jpg' | relative_url }}" alt="" /></span>
- <h1 id="title">{{ site.title}}</h1>
+ <span class="image avatar48"><img src="{{ 'assets/images/avatar.jpg' | relative_url }}" alt="{{ site.author | default: 'unknown person' | prepend: 'Avatar of ' }}" /></span>
+ <h1 id="title">{{ site.title }}</h1>
<p>{{ site.subtitle }}</p>
</div>
<!-- Nav -->
<nav id="nav">
<!--
Prologue's nav expects links in one of two formats:
- 1. Hash link (scrolls to a different section within the page)
-
- <li><a href="#foobar" id="foobar-link" class="icon fa-whatever-icon-you-want skel-layers-ignoreHref"><span class="label">Foobar</span></a></li>
-
- 2. Standard link (sends the user to another page/site)
-
- <li><a href="http://foobar.tld" id="foobar-link" class="icon fa-whatever-icon-you-want"><span class="label">Foobar</span></a></li>
+ 1. Hash link (scrolls to a different section within the page); i.e., #portfolio
+ 2. Standard link (sends the user to another page/site); i.e., www.google.com
-->
<ul>
{% assign sections = site.sections | where_exp: 'section','section.order >= 1' %}
{% unless sections == null %}