forked from codeguy/php-the-right-way
-
Notifications
You must be signed in to change notification settings - Fork 10
/
index.html
18 lines (16 loc) · 942 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
---
layout: default
description: "Кратък наръчник за най-добрите актуални практики в PHP, приети стандарти за писане на код и връзки към качествени PHP ръководства в Интернет"
sitemap: true
---
{% capture welcome_content %}{% include welcome.md %}{% endcapture %}
<section class="chapter" id="welcome">
{{ welcome_content|markdownify }}
</section>
{% capture backtotop %}[Нагоре](#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="{% if post.anchor %}{{ post.anchor }}{% else %}{{ post.title | downcase | replace:' ','_' | replace:'(','' | replace:')','' | replace:'.','' | replace:'-','' }}{% endif %}">
{{ post.content }}
</section>
{% endfor %}