_layouts/log.html in jekyll-lab-notebook-0.1.3 vs _layouts/log.html in jekyll-lab-notebook-0.1.4
- old
+ new
@@ -9,14 +9,14 @@
</header>
{% if page.next.url or page.previous.url %}
<div class="postNav cf">
{% if page.next.url %}
- <a class="next{% if page.next.image %} image{% endif %}" href="{{ page.next.url | prepend: site.baseurl }}"><span>{{ page.next.date | date: "%B %Y" }} »</span></a>
+ <a class="next" href="{{ page.next.url | prepend: site.baseurl }}"><span>{{ page.next.date | date: "%B %Y" }} »</span></a>
{% endif %}
{% if page.previous.url %}
- <a class="prev{% if page.previous.image %} image{% endif %}" href="{{ page.previous.url | prepend: site.baseurl }}"><span>« {{ page.previous.date | date: "%B %Y" }}</span></a>
+ <a class="prev" href="{{ page.previous.url | prepend: site.baseurl }}#bottomNav"><span>« {{ page.previous.date | date: "%B %Y" }}</span></a>
{% endif %}
</div>
{% endif %}
<div class="post-content" itemprop="articleBody">
@@ -27,15 +27,15 @@
'<li class="box_done task-list-item">
<input type="checkbox" class="task-list-item-checkbox" value="on" disabled checked>' }}
</div>
{% if page.next.url or page.previous.url %}
- <div class="postNav cf">
+ <div class="postNav cf" id="bottomNav">
{% if page.next.url %}
- <a class="next{% if page.next.image %} image{% endif %}" href="{{ page.next.url | prepend: site.baseurl }}"><span>{{ page.next.date | date: "%B %Y" }} »</span></a>
+ <a class="next" href="{{ page.next.url | prepend: site.baseurl }}"><span>{{ page.next.date | date: "%B %Y" }} »</span></a>
{% endif %}
{% if page.previous.url %}
- <a class="prev{% if page.previous.image %} image{% endif %}" href="{{ page.previous.url | prepend: site.baseurl }}"><span>« {{ page.previous.date | date: "%B %Y" }}</span></a>
+ <a class="prev" href="{{ page.previous.url | prepend: site.baseurl }}#bottomNav"><span>« {{ page.previous.date | date: "%B %Y" }}</span></a>
{% endif %}
</div>
{% endif %}
</article>