mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-25 00:28:31 -05:00
30 lines
No EOL
1,015 B
Text
30 lines
No EOL
1,015 B
Text
extends /templates/base
|
|
|
|
|
|
block content
|
|
.row
|
|
.col-xs-3.index-column.nano
|
|
ul.nav.nav-list.list-group.nano-content
|
|
for component in components
|
|
a.doc-name(href="##{component.get('name')}")
|
|
li= component.get('name')
|
|
ul
|
|
each doc in component.attributes.propertyDocumentation
|
|
a(href="##{component.get('name')}#{doc.name}")
|
|
li
|
|
| #{doc.name}
|
|
.col-xs-9.documentation-column.nano
|
|
ul.nano-content
|
|
for component in components
|
|
li(id="#{component.get('name')}")
|
|
| #{component.get('name')}
|
|
ul
|
|
li.doc-description
|
|
| #{component.get('description')}
|
|
ul
|
|
each doc in component.attributes.propertyDocumentation
|
|
li(id="#{component.get('name')}#{doc.name}")
|
|
| #{doc.name}
|
|
ul.specialList
|
|
li!=marked(doc.description)
|
|
|