mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-28 10:06:08 -05:00
23 lines
795 B
Text
23 lines
795 B
Text
extends /templates/base
|
|
|
|
|
|
block content
|
|
div.main
|
|
div.left
|
|
ul
|
|
for component in components
|
|
li= component.get('name')
|
|
ul
|
|
each doc in component.attributes.propertyDocumentation
|
|
a(href="##{component.get('name')}#{doc.name}")
|
|
li
|
|
| #{doc.name}
|
|
|
|
div.right
|
|
ul
|
|
for component in components
|
|
each doc in component.attributes.propertyDocumentation
|
|
li(id="#{component.get('name')}#{doc.name}")
|
|
| #{doc.name}
|
|
ul.specialList
|
|
li=doc.description
|