feat: add blog_options and rss feed generation
This commit is contained in:
16
app/server/views/conclave/options_edit.pug
Normal file
16
app/server/views/conclave/options_edit.pug
Normal file
@@ -0,0 +1,16 @@
|
||||
extends ../layout
|
||||
|
||||
block content
|
||||
form(method="POST" action="/conclave/options/edit")
|
||||
each option in options
|
||||
fieldset(id=option.name)
|
||||
input(value=option.name name="name" readonly type="text")
|
||||
input(value="update" name="action" readonly type="hidden")
|
||||
input(value=option.value name="value" type="text")
|
||||
|
||||
fieldset(id="new-one")
|
||||
input(value="" name="name" type="text")
|
||||
input(value="create" name="action" readonly type="hidden")
|
||||
input(value="" name="value" type="text")
|
||||
|
||||
input(type="submit" value="Save")
|
||||
Reference in New Issue
Block a user