Files
php-the-right-way/index.html
2023-01-27 20:18:15 +01:00

18 lines
520 B
HTML

---
layout: default
sitemap: true
---
{% 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>
{% endfor %}