Skip to content

Commit

Permalink
Create gh-pages branch via GitHub
Browse files Browse the repository at this point in the history
  • Loading branch information
1602 committed Apr 7, 2013
1 parent 2ddc43b commit 89ad204
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 28 deletions.
62 changes: 35 additions & 27 deletions index.html
Expand Up @@ -31,73 +31,71 @@ <h2 id="project_tagline">Everything you have to know about CompoundJS</h2>
<!-- MAIN CONTENT -->
<div id="main_content_wrap" class="outer">
<section id="main_content" class="inner">
<h2>CompoundJS guides</h2>
<h3>Getting Started</h3>

<h3>Basics</h3>
<h4><a href="https://github.com/compoundjs/guides/blob/master/basics/crash-course.md">Crash course</a></h4>

<h4><a href="https://github.com/compoundjs/guides/blob/master/crash-course.md">Getting started</a></h4>

<p>Crash course to CompoundJS. Create your first app, learn structure, use
<p>Express course to CompoundJS. Create your first app, learn structure, use
generators and tools.</p>

<h4><a href="https://github.com/compoundjs/guides/blob/master/elements-explained.md">Compound Elements Explained</a></h4>
<h4><a href="https://github.com/compoundjs/guides/blob/master/basics/elements-explained.md">Elements Explained</a></h4>

<p>Take closer look at compound elements. Every part of application do it's own
thing. This guide allows you to learn how use each part of compound and bundle
it together to create awesome application.</p>
<p>Take a closer look at compound elements - each fulfils it's own
function. The guide allows you to learn how to use each part of compound and bundle
it together to create awesome applications.</p>

<h3>Intermediate things</h3>
<h3>Compound Essentials</h3>

<h4><a href="https://github.com/compoundjs/guides/blob/master/routing.md">Routing</a></h4>
<h4><a href="https://github.com/compoundjs/guides/blob/master/essentials/routing.md">Routing</a></h4>

<p>How to draw your application's routing map in few expressions. This guide
shows you all compound routing map power and beauty.</p>

<h4><a href="https://github.com/compoundjs/guides/blob/master/controllers.md">Controllers</a></h4>
<h4><a href="https://github.com/compoundjs/guides/blob/master/essentials/controllers.md">Controllers</a></h4>

<p>Everything you need to know about controllers and request handling flow:
actions, hooks, middleware stack.</p>

<h4><a href="https://github.com/compoundjs/guides/blob/master/views.md">View/layouts rendering</a></h4>
<h4><a href="https://github.com/compoundjs/guides/blob/master/essentials/views.md">View/layouts Rendering</a></h4>

<p>Views, layouts, templating engines and all related stuff (except helpers,
because helpers is a big theme worth separate guide).</p>

<h4><a href="https://github.com/compoundjs/guides/blob/master/helpers.md">View helpers</a></h4>
<h4><a href="https://github.com/compoundjs/guides/blob/master/essentials/helpers.md">View Helpers</a></h4>

<p>Everything about built-in and custom-made helpers.
Learn how to create your own helpers and helper-related techniques to simplify
and beautify your views.</p>

<h4><a href="https://github.com/compoundjs/guides/blob/master/security.md">Security</a></h4>
<h4><a href="https://github.com/compoundjs/guides/blob/master/essentials/testing.md">Testing</a></h4>

<p>Learn how to test your application</p>

<h4><a href="https://github.com/compoundjs/guides/blob/master/essentials/deploy.md">Deploy</a></h4>

<p>This articles show how you can deploy your applications into heroku</p>

<h4><a href="https://github.com/compoundjs/guides/blob/master/essentials/security.md">Security</a></h4>

<p>Types of attacks and how to protect your app against them. Which compoundjs
features could be helpful.</p>

<h3>Advanced topics</h3>

<h4><a href="https://github.com/compoundjs/guides/blob/master/meta-controllers.md">Meta-programming</a></h4>
<h4><a href="https://github.com/compoundjs/guides/blob/master/essentials/meta-controllers.md">Meta-programming</a></h4>

<p>Short talk about meta-programming techniques could be used to DRY controllers and
reuse controllers code.</p>

<h4><a href="https://github.com/compoundjs/guides/blob/master/events-api.md">Events, Compound API</a></h4>
<h4><a href="https://github.com/compoundjs/guides/blob/master/advanced/events-api.md">Events, Compound API</a></h4>

<p>Learn how to use events to hook up particular application loading stages. Then
use API methods to configure compound for your application needs.</p>

<h4><a href="https://github.com/compoundjs/guides/blob/master/extensions-api.md">Building extensions</a></h4>
<h4><a href="https://github.com/compoundjs/guides/blob/master/advanced/extensions-api.md">Building Extensions</a></h4>

<p>Let's see how to extend compound and make your code reusable using extensions
API.</p>

<h4><a href="https://github.com/compoundjs/guides/blob/master/deploy.md">Deploy</a></h4>

<p>TODO: describe</p>

<h4><a href="https://github.com/compoundjs/guides/blob/master/testing.md">Testing</a></h4>

<p>TODO: describe</p>
</section>
</div>

Expand All @@ -109,7 +107,17 @@ <h4><a href="https://github.com/compoundjs/guides/blob/master/testing.md">Testin
</footer>
</div>


<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var pageTracker = _gat._getTracker("UA-23280347-1");
pageTracker._trackPageview();
} catch(err) {}
</script>


</body>
</html>
2 changes: 1 addition & 1 deletion params.json
@@ -1 +1 @@
{"name":"CompoundJS Guides","tagline":"Everything you have to know about CompoundJS","body":"## CompoundJS guides\r\n\r\n### Basics\r\n\r\n#### [Getting started][crash-course]\r\n\r\nCrash course to CompoundJS. Create your first app, learn structure, use\r\ngenerators and tools.\r\n\r\n#### [Compound Elements Explained][elements-explained]\r\n\r\nTake closer look at compound elements. Every part of application do it's own\r\nthing. This guide allows you to learn how use each part of compound and bundle\r\nit together to create awesome application.\r\n\r\n\r\n### Intermediate things\r\n\r\n#### [Routing][routing]\r\n\r\nHow to draw your application's routing map in few expressions. This guide\r\nshows you all compound routing map power and beauty.\r\n\r\n#### [Controllers][controllers]\r\n\r\nEverything you need to know about controllers and request handling flow:\r\nactions, hooks, middleware stack.\r\n\r\n#### [View/layouts rendering][views]\r\n\r\nViews, layouts, templating engines and all related stuff (except helpers,\r\nbecause helpers is a big theme worth separate guide).\r\n\r\n#### [View helpers][helpers]\r\n\r\nEverything about built-in and custom-made helpers.\r\nLearn how to create your own helpers and helper-related techniques to simplify\r\nand beautify your views.\r\n\r\n#### [Security][security]\r\n\r\nTypes of attacks and how to protect your app against them. Which compoundjs\r\nfeatures could be helpful.\r\n\r\n### Advanced topics\r\n\r\n#### [Meta-programming][meta-controllers]\r\n\r\nShort talk about meta-programming techniques could be used to DRY controllers and\r\nreuse controllers code.\r\n\r\n#### [Events, Compound API][events-api]\r\n\r\nLearn how to use events to hook up particular application loading stages. Then\r\nuse API methods to configure compound for your application needs.\r\n\r\n#### [Building extensions][extensions-api]\r\n\r\nLet's see how to extend compound and make your code reusable using extensions\r\nAPI.\r\n\r\n#### [Deploy][deploy]\r\n\r\nTODO: describe\r\n\r\n#### [Testing][testing]\r\n\r\nTODO: describe\r\n\r\n[crash-course]: https://github.com/compoundjs/guides/blob/master/crash-course.md\r\n[elements-explained]: https://github.com/compoundjs/guides/blob/master/elements-explained.md\r\n[routing]: https://github.com/compoundjs/guides/blob/master/routing.md\r\n[controllers]: https://github.com/compoundjs/guides/blob/master/controllers.md\r\n[views]: https://github.com/compoundjs/guides/blob/master/views.md\r\n[helpers]: https://github.com/compoundjs/guides/blob/master/helpers.md\r\n[mailers]: https://github.com/compoundjs/guides/blob/master/mailers.md\r\n[security]: https://github.com/compoundjs/guides/blob/master/security.md\r\n[meta-controllers]: https://github.com/compoundjs/guides/blob/master/meta-controllers.md\r\n[events-api]: https://github.com/compoundjs/guides/blob/master/events-api.md\r\n[extensions-api]: https://github.com/compoundjs/guides/blob/master/extensions-api.md\r\n[deploy]: https://github.com/compoundjs/guides/blob/master/deploy.md\r\n[testing]: https://github.com/compoundjs/guides/blob/master/testing.md\r\n","google":"","note":"Don't delete this file! It's used internally to help with page regeneration."}
{"name":"CompoundJS Guides","tagline":"Everything you have to know about CompoundJS","body":"### Getting Started\r\n\r\n#### [Crash course][crash-course]\r\n\r\nExpress course to CompoundJS. Create your first app, learn structure, use\r\ngenerators and tools.\r\n\r\n#### [Elements Explained][elements-explained]\r\n\r\nTake a closer look at compound elements - each fulfils it's own\r\nfunction. The guide allows you to learn how to use each part of compound and bundle\r\nit together to create awesome applications.\r\n\r\n### Compound Essentials\r\n\r\n#### [Routing][routing]\r\n\r\nHow to draw your application's routing map in few expressions. This guide\r\nshows you all compound routing map power and beauty.\r\n\r\n#### [Controllers][controllers]\r\n\r\nEverything you need to know about controllers and request handling flow:\r\nactions, hooks, middleware stack.\r\n\r\n#### [View/layouts Rendering][views]\r\n\r\nViews, layouts, templating engines and all related stuff (except helpers,\r\nbecause helpers is a big theme worth separate guide).\r\n\r\n#### [View Helpers][helpers]\r\n\r\nEverything about built-in and custom-made helpers.\r\nLearn how to create your own helpers and helper-related techniques to simplify\r\nand beautify your views.\r\n\r\n#### [Testing][testing]\r\n\r\nLearn how to test your application\r\n\r\n#### [Deploy][deploy]\r\n\r\nThis articles show how you can deploy your applications into heroku\r\n\r\n#### [Security][security]\r\n\r\nTypes of attacks and how to protect your app against them. Which compoundjs\r\nfeatures could be helpful.\r\n\r\n### Advanced topics\r\n\r\n#### [Meta-programming][meta-controllers]\r\n\r\nShort talk about meta-programming techniques could be used to DRY controllers and\r\nreuse controllers code.\r\n\r\n#### [Events, Compound API][events-api]\r\n\r\nLearn how to use events to hook up particular application loading stages. Then\r\nuse API methods to configure compound for your application needs.\r\n\r\n#### [Building Extensions][extensions-api]\r\n\r\nLet's see how to extend compound and make your code reusable using extensions\r\nAPI.\r\n\r\n[crash-course]: https://github.com/compoundjs/guides/blob/master/basics/crash-course.md\r\n[elements-explained]: https://github.com/compoundjs/guides/blob/master/basics/elements-explained.md\r\n\r\n[routing]: https://github.com/compoundjs/guides/blob/master/essentials/routing.md\r\n[controllers]: https://github.com/compoundjs/guides/blob/master/essentials/controllers.md\r\n[views]: https://github.com/compoundjs/guides/blob/master/essentials/views.md\r\n[helpers]: https://github.com/compoundjs/guides/blob/master/essentials/helpers.md\r\n[mailers]: https://github.com/compoundjs/guides/blob/master/essentials/mailers.md\r\n[security]: https://github.com/compoundjs/guides/blob/master/essentials/security.md\r\n\r\n[meta-controllers]: https://github.com/compoundjs/guides/blob/master/essentials/meta-controllers.md\r\n[events-api]: https://github.com/compoundjs/guides/blob/master/advanced/events-api.md\r\n[extensions-api]: https://github.com/compoundjs/guides/blob/master/advanced/extensions-api.md\r\n[deploy]: https://github.com/compoundjs/guides/blob/master/essentials/deploy.md\r\n[testing]: https://github.com/compoundjs/guides/blob/master/essentials/testing.md\r\n","google":"UA-23280347-1","note":"Don't delete this file! It's used internally to help with page regeneration."}

0 comments on commit 89ad204

Please sign in to comment.