Skip to content

Commit

Permalink
Updated Garden specs
Browse files Browse the repository at this point in the history
  • Loading branch information
supernovus committed Nov 23, 2011
1 parent ceb6c91 commit e211181
Show file tree
Hide file tree
Showing 3 changed files with 86 additions and 3 deletions.
62 changes: 59 additions & 3 deletions garden/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,65 @@
<body>
<h1>Garden</h1>
<h2>Table of Contents</h2>
<p>
This is a work in progress.
</p>
<ul>
<li>Core Language
<ul>
<li>
<a href="intro.html" title="Since version 1">Introduction</a>
</li>
<li>
<a href="vars.html" title="Since version 1">Variables</a>
</li>
<li>
<a href="methods.html" title="Since version 1">Method calls</a>
</li>
<li>
<a href="templates.html" title="Since version 1">Nested Templates</a>
</li>
<li>
<a href="apply.html" title="Since version 1">Applying Templates</a>
</li>
<li>
<a href="conditional.html" title="Since version 1">Conditionals</a>
</li>
<li>
<a href="imports.html" title="Since version 1">Importation</a>
</li>
<li>
<a href="syntax.html" title="Since version 1">Overriding Syntax</a>
</li>

</ul>
</li>
<li>Recommended Extensions
<ul>
<li>
<a href="export.html" title="Since version 1">Exportation</a>
</li>
<li>
<a href="plugins.html" title="Since version 1">Plugins</a>
</li>

</ul>
</li>
<li>References
<ul>
<li>
<a href="http://www.stringtemplate.org/" title="First of the two inspirations for Garden">StringTemplate</a>
</li>
<li>
<a href="https://github.com/supernovus/flower/" title="Second of the two inspirations for Garden">Flower</a>
</li>

</ul>
</li>

</ul>

<p id="footer">
<a href="index.html">Table of Contents</a> |
<a href="https://github.com/supernovus/garden-spec/">Source</a>
</p>
</body>
</html>

19 changes: 19 additions & 0 deletions garden/intro.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<html>
<head>
<title>Garden: Introduction</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<h1>Garden</h1>
<h2>Introduction</h2>
<p>
This is a work in progress.
</p>

<p id="footer">
<a href="index.html">Table of Contents</a> |
<a href="https://github.com/supernovus/garden-spec/">Source</a>
</p>
</body>
</html>

8 changes: 8 additions & 0 deletions garden/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,12 @@ h1 {
h2 {
color: #119933;
}
#footer {
font-size: 0.75em;
text-align: center;
color: #aaaaaa;
}
#footer a {
color: gray;
}

0 comments on commit e211181

Please sign in to comment.