From 320be779116f8cc40362b58380d094b8d1da313e Mon Sep 17 00:00:00 2001 From: Kris Jordan Date: Mon, 9 Jul 2012 20:21:06 -0400 Subject: [PATCH] Restructure includes to posts --- .../01-01-01-Getting-Started.md | 0 .../02-01-01-Code-Style-Guide.md | 0 .../03-01-01-Language-Highlights.md | 0 .../04-01-01-Dependency-Management.md | 0 .../05-01-01-Databases-and-PDO.md | 0 .../06-01-01-Security.md | 0 .../testing.md => _posts/07-01-01-Testing.md | 0 .../08-01-01-Servers-and-Deployment.md | 0 .../09-01-01-Libraries-and-Frameworks.md | 0 .../10-01-01-Resources.md | 0 index.html | 32 ++----------------- 11 files changed, 3 insertions(+), 29 deletions(-) rename _includes/getting-started.md => _posts/01-01-01-Getting-Started.md (100%) rename _includes/code-style-guide.md => _posts/02-01-01-Code-Style-Guide.md (100%) rename _includes/language-highlights.md => _posts/03-01-01-Language-Highlights.md (100%) rename _includes/dependency-management.md => _posts/04-01-01-Dependency-Management.md (100%) rename _includes/databases.md => _posts/05-01-01-Databases-and-PDO.md (100%) rename _includes/security.md => _posts/06-01-01-Security.md (100%) rename _includes/testing.md => _posts/07-01-01-Testing.md (100%) rename _includes/servers-and-deployment.md => _posts/08-01-01-Servers-and-Deployment.md (100%) rename _includes/libraries-and-frameworks.md => _posts/09-01-01-Libraries-and-Frameworks.md (100%) rename _includes/resources.md => _posts/10-01-01-Resources.md (100%) diff --git a/_includes/getting-started.md b/_posts/01-01-01-Getting-Started.md similarity index 100% rename from _includes/getting-started.md rename to _posts/01-01-01-Getting-Started.md diff --git a/_includes/code-style-guide.md b/_posts/02-01-01-Code-Style-Guide.md similarity index 100% rename from _includes/code-style-guide.md rename to _posts/02-01-01-Code-Style-Guide.md diff --git a/_includes/language-highlights.md b/_posts/03-01-01-Language-Highlights.md similarity index 100% rename from _includes/language-highlights.md rename to _posts/03-01-01-Language-Highlights.md diff --git a/_includes/dependency-management.md b/_posts/04-01-01-Dependency-Management.md similarity index 100% rename from _includes/dependency-management.md rename to _posts/04-01-01-Dependency-Management.md diff --git a/_includes/databases.md b/_posts/05-01-01-Databases-and-PDO.md similarity index 100% rename from _includes/databases.md rename to _posts/05-01-01-Databases-and-PDO.md diff --git a/_includes/security.md b/_posts/06-01-01-Security.md similarity index 100% rename from _includes/security.md rename to _posts/06-01-01-Security.md diff --git a/_includes/testing.md b/_posts/07-01-01-Testing.md similarity index 100% rename from _includes/testing.md rename to _posts/07-01-01-Testing.md diff --git a/_includes/servers-and-deployment.md b/_posts/08-01-01-Servers-and-Deployment.md similarity index 100% rename from _includes/servers-and-deployment.md rename to _posts/08-01-01-Servers-and-Deployment.md diff --git a/_includes/libraries-and-frameworks.md b/_posts/09-01-01-Libraries-and-Frameworks.md similarity index 100% rename from _includes/libraries-and-frameworks.md rename to _posts/09-01-01-Libraries-and-Frameworks.md diff --git a/_includes/resources.md b/_posts/10-01-01-Resources.md similarity index 100% rename from _includes/resources.md rename to _posts/10-01-01-Resources.md diff --git a/index.html b/index.html index 1bf79e0..d107b22 100644 --- a/index.html +++ b/index.html @@ -5,32 +5,6 @@ layout: default {% capture welcome_content %}{% include welcome.md %}{% endcapture %} {{ welcome_content|markdownify }} -{% capture getting_started_content %}{% include getting-started.md %}{% endcapture %} -{{ getting_started_content|markdownify }} - -{% 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 }} +{% for post in site.posts reversed %} + {{ post.content }} +{% endfor %}