forked from codeguy/php-the-right-way
-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathindex.html
More file actions
18 lines (16 loc) · 702 Bytes
/
Copy pathindex.html
File metadata and controls
18 lines (16 loc) · 702 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
---
layout: default
description: "Une référence rapide à lire pour apprendre les meilleurs pratiques PHP, les conventions d'écritures et les liens sur les tutoriaux faisant autorité sur le web"
sitemap: true
---
{% capture welcome_content %}{% include welcome.md %}{% endcapture %}
<section class="chapter" id="welcome">
{{ welcome_content|markdownify }}
</section>
{% capture backtotop %}[Retour en haut](#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 %}