mirror of
https://github.com/codeguy/php-the-right-way.git
synced 2025-10-05 01:31:32 +02:00
19 lines
675 B
HTML
19 lines
675 B
HTML
---
|
|
layout: default
|
|
description: "An easy-to-read, quick reference for PHP best practices, accepted coding standards, and links to authoritative PHP tutorials around the Web"
|
|
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 %}
|