Restructure includes to posts

This commit is contained in:
Kris Jordan
2012-07-09 20:21:06 -04:00
parent 0b5683dc77
commit 320be77911
11 changed files with 3 additions and 29 deletions

View File

@@ -5,32 +5,6 @@ layout: default
{% capture welcome_content %}{% include welcome.md %}{% endcapture %} {% capture welcome_content %}{% include welcome.md %}{% endcapture %}
{{ welcome_content|markdownify }} {{ welcome_content|markdownify }}
{% capture getting_started_content %}{% include getting-started.md %}{% endcapture %} {% for post in site.posts reversed %}
{{ getting_started_content|markdownify }} {{ post.content }}
{% endfor %}
{% capture codestyleguide_content %}{% include code-style-guide.md %}{% endcapture %}
{{ codestyleguide_content|markdownify }}
{% capture highlights_content %}{% include language-highlights.md %}{% endcapture %}
{{ highlights_content|markdownify }}
{% capture dependencies_content %}{% include dependency-management.md %}{% endcapture %}
{{ dependencies_content|markdownify }}
{% capture databases_content %}{% include databases.md %}{% endcapture %}
{{ databases_content|markdownify }}
{% capture security_content %}{% include security.md %}{% endcapture %}
{{ security_content|markdownify }}
{% capture testing_content %}{% include testing.md %}{% endcapture %}
{{ testing_content|markdownify }}
{% capture servers_and_deployment_content %}{% include servers-and-deployment.md %}{% endcapture %}
{{ servers_and_deployment_content|markdownify }}
{% capture frameworks_content %}{% include libraries-and-frameworks.md %}{% endcapture %}
{{ frameworks_content|markdownify }}
{% capture resources_content %}{% include resources.md %}{% endcapture %}
{{ resources_content|markdownify }}