Convert static HTML site to Jekyll project

This commit is contained in:
=
2012-07-07 23:17:19 -04:00
parent 66f33ea4e9
commit 7bb4213f48
18 changed files with 465 additions and 0 deletions

33
index.html Normal file
View File

@@ -0,0 +1,33 @@
---
layout: default
---
{% capture introduction_content %}{% include introduction.md %}{% endcapture %}
{{ introduction_content|markdownify }}
{% capture codestyleguide_content %}{% include code-style-guide.md %}{% endcapture %}
{{ codestyleguide_content|markdownify }}
{% capture namespaces_content %}{% include namespaces.md %}{% endcapture %}
{{ namespaces_content|markdownify }}
{% capture inputfiltering_content %}{% include input-filtering.md %}{% endcapture %}
{{ inputfiltering_content|markdownify }}
{% capture databases_content %}{% include databases.md %}{% endcapture %}
{{ databases_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 frameworks_content %}{% include popular-frameworks.md %}{% endcapture %}
{{ frameworks_content|markdownify }}
{% capture links_content %}{% include links-and-resources.md %}{% endcapture %}
{{ links_content|markdownify }}