Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,17 @@
sitemap: true
---

{% capture welcome_content %}{% include welcome.md %}{% endcapture %}
{% capture welcome_content %}
{% include welcome.md %}
{% endcapture %}
<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 %}<div class="back-to-top">{{ backtotop|markdownify }}</div>{% endif %}

<section class="chapter" id="{{ post.anchor }}">
{{ post.content }}
</section>
Expand Down