mirror of
https://github.com/vale981/Vulcan
synced 2025-03-07 02:21:43 -05:00
29 lines
No EOL
948 B
HTML
29 lines
No EOL
948 B
HTML
<template name="settings">
|
|
<div class="grid-small grid-block dialog settings">
|
|
{{#with setting}}
|
|
<form>
|
|
<h2>Settings</h2>
|
|
{{#if no_settings}}
|
|
<p>No settings yet.</p>
|
|
{{/if}}
|
|
<div class="control-group">
|
|
<label>Site Title</label>
|
|
<div class="controls"><input id="title" name="title" type="text" value="{{title}}" /></div>
|
|
</div>
|
|
<div class="control-group">
|
|
<label>Theme</label>
|
|
<div class="controls">
|
|
<select id="theme">
|
|
<option {{#if is_default}}selected{{/if}} value="default">Default</option>
|
|
<option {{#if is_ascndr}}selected{{/if}} value="ascndr">Ascndr</option>
|
|
<option {{#if is_telescope}}selected{{/if}} value="telescope">Telescope</option>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
<div class="form-actions">
|
|
<input type="submit" class="button" value="Submit" />
|
|
</div>
|
|
</form>
|
|
{{/with}}
|
|
</div>
|
|
</template> |