docs: add services, utilities

This commit is contained in:
Andy Joslin
2014-03-11 13:02:36 -06:00
parent a8e1524ce8
commit e9625ded9d
25 changed files with 629 additions and 158 deletions

View File

@@ -3,22 +3,23 @@
<@ block content @>
<@ block header @>
<@ if doc.docType == "directive" @>
<h2><$ doc.name | dashCase $>
<@ if doc.parent @>
<small>
(child of <$ doc.parent $>)
</small>
<@ endif @>
<@ if doc.controller @>
<small>
(controller: <$ doc.controller $>)
</small>
<@ endif @>
<h2>
<@ if doc.docType == "directive" @>
<$ doc.name | dashCase $>
<@ else @>
<$ doc.name $>
<@ endif @>
<@ if doc.parent @>
<small>
(child of <$ doc.parent $>)
</small>
<@ endif @>
<@ if doc.controller @>
<small>
(controller: <$ doc.controller $>)
</small>
<@ endif @>
</h2>
<@ else @>
## <$ doc.name $>
<@ endif @>
<@ if doc.codepen @>
{% include codepen.html id="<$ doc.codepen $>" %}