forked from hkulekci/php-the-right-way
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
18 lines (16 loc) · 888 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
---
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"
---
{% capture welcome_content %}{% include welcome.md %}{% endcapture %}
{{ welcome_content|markdownify }}
{% 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.title | downcase | replace:' ','_' | replace:'(','' | replace:')','' | replace:'.','' | replace:'-','' | replace:'ü','u' | replace:'ş','s' | replace:'ö','o' | replace:'ğ','g' | replace:'ç','c' | replace:'ı','i' | replace:'İ','i' | replace:'Ç','c' | replace:'Ş','s' | replace:'Ö','o' }}">
{{ post.content }}
</div>
{% endfor %}
{{ backtotop|markdownify }}