rolandjesse.de/_layouts/index.html
Jorge Arias d241d0bb94 Subtracted the padding in sections of content
Amplified the offset Scrollspy for adapte to new margin-top.
2015-11-14 18:43:55 -03:00

30 lines
575 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="151">
{% 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 -->