Implement redesign first stage

This commit is contained in:
Josh Lockhart
2015-09-27 19:29:22 -04:00
parent d1baa3081d
commit a7e08ea53a
9 changed files with 869 additions and 68 deletions

View File

@@ -5,15 +5,14 @@ sitemap: true
---
{% capture welcome_content %}{% include welcome.md %}{% endcapture %}
{{ welcome_content|markdownify }}
<section class="chapter" id="welcome">
{{ welcome_content|markdownify }}
</section>
{% capture backtotop %}[Back to Top](#top){:.top}{% endcapture %}
{% for post in site.posts reversed %}
{% if post.isChild != true and loop.first != true %}
{{ backtotop|markdownify }}
{% endif %}
<div id="{{ post.anchor }}">
{% if post.isChild != true and loop.first != true %}<div class="back-to-top">{{ backtotop|markdownify }}</div>{% endif %}
<section class="chapter" id="{{ post.anchor }}">
{{ post.content }}
</div>
</section>
{% endfor %}
{{ backtotop|markdownify }}