next and prev attributes on the next and prev links, and #content
This commit is contained in:
parent
8500d1c8a7
commit
980ea5796e
|
@ -21,11 +21,9 @@
|
||||||
<link rel="stylesheet" href="tomorrow-night.css">
|
<link rel="stylesheet" href="tomorrow-night.css">
|
||||||
|
|
||||||
{{#previous}}
|
{{#previous}}
|
||||||
<link rel="prev" href="{{link}}#content">
|
|
||||||
{{/previous}}
|
{{/previous}}
|
||||||
|
|
||||||
{{#next}}
|
{{#next}}
|
||||||
<link rel="next" href="{{link}}#content">
|
|
||||||
{{/next}}
|
{{/next}}
|
||||||
|
|
||||||
<!-- MathJax -->
|
<!-- MathJax -->
|
||||||
|
@ -80,13 +78,13 @@
|
||||||
|
|
||||||
<!-- Mobile navigation buttons -->
|
<!-- Mobile navigation buttons -->
|
||||||
{{#previous}}
|
{{#previous}}
|
||||||
<a href="{{link}}" class="mobile-nav-chapters previous">
|
<a rel="prev" href="{{link}}#content" class="mobile-nav-chapters previous">
|
||||||
<i class="fa fa-angle-left"></i>
|
<i class="fa fa-angle-left"></i>
|
||||||
</a>
|
</a>
|
||||||
{{/previous}}
|
{{/previous}}
|
||||||
|
|
||||||
{{#next}}
|
{{#next}}
|
||||||
<a href="{{link}}" class="mobile-nav-chapters next">
|
<a rel="next" href="{{link}}#content" class="mobile-nav-chapters next">
|
||||||
<i class="fa fa-angle-right"></i>
|
<i class="fa fa-angle-right"></i>
|
||||||
</a>
|
</a>
|
||||||
{{/next}}
|
{{/next}}
|
||||||
|
|
Loading…
Reference in New Issue