Dendritic Nix - Community-driven Nix distribution based on the Dendritic pattern.

upgrade index.hb for mdbook

see https://github.com/rust-lang/mdBook/pull/2794

+8 -8
+8 -8
dev/book/theme/index.hbs
··· 207 207 208 208 <nav class="nav-wrapper" aria-label="Page navigation"> 209 209 <!-- Mobile navigation buttons --> 210 - {{#previous}} 210 + {{#if previous}} 211 211 <a rel="prev" href="{{ path_to_root }}{{link}}" class="mobile-nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> 212 212 <i class="fa fa-angle-left"></i> 213 213 </a> 214 - {{/previous}} 214 + {{/if}} 215 215 216 - {{#next}} 216 + {{#if next}} 217 217 <a rel="next prefetch" href="{{ path_to_root }}{{link}}" class="mobile-nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> 218 218 <i class="fa fa-angle-right"></i> 219 219 </a> 220 - {{/next}} 220 + {{/if}} 221 221 222 222 <div style="clear: both"></div> 223 223 </nav> ··· 225 225 </div> 226 226 227 227 <nav class="nav-wide-wrapper" aria-label="Page navigation"> 228 - {{#previous}} 228 + {{#if previous}} 229 229 <a rel="prev" href="{{ path_to_root }}{{link}}" class="nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> 230 230 <i class="fa fa-angle-left"></i> 231 231 </a> 232 - {{/previous}} 232 + {{/if}} 233 233 234 - {{#next}} 234 + {{#if next}} 235 235 <a rel="next prefetch" href="{{ path_to_root }}{{link}}" class="nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> 236 236 <i class="fa fa-angle-right"></i> 237 237 </a> 238 - {{/next}} 238 + {{/if}} 239 239 </nav> 240 240 241 241 </div>