Commit 642a2acff26dfc2c42175c151e5d4117c5ab5bf2
1 parent
a5d67d06
Exists in
master
and in
11 other branches
adding select for topics
Showing
1 changed file
with
6 additions
and
0 deletions
Show diff stats
index.html
... | ... | @@ -66,6 +66,12 @@ |
66 | 66 | {{#each categories}} |
67 | 67 | <li class='category proposal-category' data-category="{{slug}}"> |
68 | 68 | {{#link name id}}{{/link}} |
69 | + <select> | |
70 | + {{#each ../../article.children}} | |
71 | + <option value='{{id}}'> {{title}}</option> | |
72 | + {{/each}} | |
73 | + | |
74 | + </select> | |
69 | 75 | </li> |
70 | 76 | {{/each}} |
71 | 77 | </ul> | ... | ... |