diff --git a/_includes/popular-frameworks.md b/_includes/libraries-and-frameworks.md similarity index 90% rename from _includes/popular-frameworks.md rename to _includes/libraries-and-frameworks.md index e8ea6d0..ba32489 100644 --- a/_includes/popular-frameworks.md +++ b/_includes/libraries-and-frameworks.md @@ -1,10 +1,12 @@ -# Popular Frameworks +# Libraries and Frameworks + +## Web Frameworks Rather than re-invent the wheel, many PHP developers use _frameworks_ to build out web applications. Frameworks abstract away many of the low-level concerns and provide helpful, easy-to-use interfaces to complete common tasks. _You do not need to use a framework for every project_. Sometimes, plain PHP is the right way to go. But if you do need a framework, here are a few of the most popular ones (in alphabetical order): -## Full-Stack Frameworks +### Full-Stack Frameworks * [CakePHP](http://cakephp.org/) * [CodeIgniter](http://codeigniter.com/) @@ -16,11 +18,10 @@ _You do not need to use a framework for every project_. Sometimes, plain PHP is * [Yii](http://www.yiiframework.com/) * [Zend](http://framework.zend.com/) -## Micro Frameworks +### Micro Frameworks * [Fat-Free](http://bcosca.github.com/fatfree/) * [Limonade](http://limonade-php.github.com/) * [Silex](http://silex.sensiolabs.org/) * [Slim](http://www.slimframework.com/) -[Back to Top](#top){.top} diff --git a/_includes/links-and-resources.md b/_includes/resources.md similarity index 90% rename from _includes/links-and-resources.md rename to _includes/resources.md index 249b512..e9e22c3 100644 --- a/_includes/links-and-resources.md +++ b/_includes/resources.md @@ -1,6 +1,4 @@ -# Links and Resources - -Here are some miscellaneous resources that are worth a read. +# Resources ## From the Source diff --git a/_layouts/default.html b/_layouts/default.html index e8b67aa..dc86711 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -41,8 +41,8 @@
  • Web Application Security
  • Testing
  • Command Line Interface
  • -
  • Popular Frameworks
  • -
  • Links & Resources
  • +
  • Libraries and Frameworks
  • +
  • Resources
  • Tweet diff --git a/index.html b/index.html index 8733799..528909e 100644 --- a/index.html +++ b/index.html @@ -32,8 +32,8 @@ layout: default {% capture cli_content %}{% include command-line-interface.md %}{% endcapture %} {{ cli_content|markdownify }} -{% capture frameworks_content %}{% include popular-frameworks.md %}{% endcapture %} +{% capture frameworks_content %}{% include libraries-and-frameworks.md %}{% endcapture %} {{ frameworks_content|markdownify }} -{% capture links_content %}{% include links-and-resources.md %}{% endcapture %} -{{ links_content|markdownify }} +{% capture resources_content %}{% include resources.md %}{% endcapture %} +{{ resources_content|markdownify }}