rolandjesse.de/_layouts/index.html
Jorge Arias d7203acf3a Sections display in sorted of the configuration
The content in index.html is now sorted in _config.yml pages_list order.

* Close PanosSakkos/personal-jekyll-theme#40 issue
* Moved latest-posts to latest-post.html for conflict with blog.html
* Changed the ID in sections for page.section-type
* Subtracted 50 in offset Scrollspy
2015-11-13 02:20:57 -03:00

30 lines
574 B
HTML
Executable file

<!-- Index Layout Start -->
<!DOCTYPE html>
<html lang="{{ site.lang }}">
{% include head.html %}
<body id="page-top" data-spy="scroll" data-target=".navbar-fixed-top" data-offset="50">
{% include navigation.html %}
{% include header.html %}
{% for p in site.pages_list %}
{% for page in site.pages %}
{% if p[1] == page.section-type%}
{% include {{ page.path }} %}
{% endif %}
{% endfor %}
{% endfor %}
{% include footer.html %}
{% include js.html %}
</body>
</html>
<!-- Index Layout End -->