Skip to content

Commit

Permalink
Reordered sections, added testing to nav.
Browse files Browse the repository at this point in the history
  • Loading branch information
KrisJordan committed Jul 9, 2012
1 parent 381983a commit fb3aaff
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
3 changes: 2 additions & 1 deletion _layouts/default.html
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,12 @@
<li><a href="#introduction">Introduction</a></li>
<li><a href="#code_style_guide">Code Style Guide</a></li>
<li><a href="#namespaces">Namespaces</a></li>
<li><a href="#dependency_management">Dependency Management</a></li>
<li><a href="#input_filtering">Input Filtering</a></li>
<li><a href="#databases_and_pdo">Databases and PDO</a></li>
<li><a href="#password_hashing_with_bcrypt">Password Hashing with Bcrypt</a></li>
<li><a href="#dependency_management">Dependency Management</a></li>
<li><a href="#web_application_security">Web Application Security</a></li>
<li><a href="#testing">Testing</a></li>
<li><a href="#command_line_interface">Command Line Interface</a></li>
<li><a href="#popular_frameworks">Popular Frameworks</a></li>
<li><a href="#links_and_resources">Links &amp; Resources</a></li>
Expand Down
16 changes: 8 additions & 8 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,29 +11,29 @@
{% capture namespaces_content %}{% include namespaces.md %}{% endcapture %}
{{ namespaces_content|markdownify }}

{% capture dependencies_content %}{% include dependency-management.md %}{% endcapture %}
{{ dependencies_content|markdownify }}

{% capture inputfiltering_content %}{% include input-filtering.md %}{% endcapture %}
{{ inputfiltering_content|markdownify }}

{% capture databases_content %}{% include databases.md %}{% endcapture %}
{{ databases_content|markdownify }}

{% capture security_content %}{% include web-application-security.md %}{% endcapture %}
{{ security_content|markdownify }}

{% capture passwords_content %}{% include passwords.md %}{% endcapture %}
{{ passwords_content|markdownify }}

{% capture dependencies_content %}{% include dependency-management.md %}{% endcapture %}
{{ dependencies_content|markdownify }}

{% capture security_content %}{% include web-application-security.md %}{% endcapture %}
{{ security_content|markdownify }}
{% capture testing_content %}{% include testing.md %}{% endcapture %}
{{ testing_content|markdownify }}

{% capture cli_content %}{% include command-line-interface.md %}{% endcapture %}
{{ cli_content|markdownify }}

{% capture frameworks_content %}{% include popular-frameworks.md %}{% endcapture %}
{{ frameworks_content|markdownify }}

{% capture testing_content %}{% include testing.md %}{% endcapture %}
{{ testing_content|markdownify }}

{% capture links_content %}{% include links-and-resources.md %}{% endcapture %}
{{ links_content|markdownify }}

0 comments on commit fb3aaff

Please sign in to comment.