|
|
@@ -18,6 +18,19 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
|
|
|
+ <div class="form-group">
|
|
|
+ <label class="group-name" for="theme"><?php echo Translate::t ('theme'); ?></label>
|
|
|
+ <div class="group-controls">
|
|
|
+ <select name="theme" id="theme">
|
|
|
+ <?php foreach ($this->themes as $theme) { ?>
|
|
|
+ <option value="<?php echo $theme['path']; ?>"<?php echo $this->conf->theme () == $theme['path'] ? ' selected="selected"' : ''; ?>>
|
|
|
+ <?php echo $theme['name'] . ' ' . Translate::t ('by') . ' ' . $theme['author']; ?>
|
|
|
+ </option>
|
|
|
+ <?php } ?>
|
|
|
+ </select>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
<div class="form-group">
|
|
|
<label class="group-name" for="old_entries"><?php echo Translate::t ('delete_articles_every'); ?></label>
|
|
|
<div class="group-controls">
|
|
|
@@ -40,19 +53,6 @@
|
|
|
|
|
|
<legend><?php echo Translate::t ('reading_configuration'); ?></legend>
|
|
|
|
|
|
- <div class="form-group">
|
|
|
- <label class="group-name" for="theme"><?php echo Translate::t ('themes'); ?></label>
|
|
|
- <div class="group-controls">
|
|
|
- <select name="theme" id="theme">
|
|
|
- <?php foreach ($this->themes as $theme) { ?>
|
|
|
- <option value="<?php echo $theme['path']; ?>"<?php echo $this->conf->theme () == $theme['path'] ? ' selected="selected"' : ''; ?>>
|
|
|
- <?php echo $theme['name'] . ' ' . Translate::t ('by') . ' ' . $theme['author']; ?>
|
|
|
- </option>
|
|
|
- <?php } ?>
|
|
|
- </select>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
-
|
|
|
<div class="form-group">
|
|
|
<label class="group-name" for="posts_per_page"><?php echo Translate::t ('articles_per_page'); ?></label>
|
|
|
<div class="group-controls">
|
|
|
@@ -71,7 +71,7 @@
|
|
|
</div>
|
|
|
|
|
|
<div class="form-group">
|
|
|
- <label class="group-name"><?php echo Translate::t ('default_view'); ?></label>
|
|
|
+ <label class="group-name" for="view_mode"><?php echo Translate::t ('default_view'); ?></label>
|
|
|
<div class="group-controls">
|
|
|
<select name="view_mode" id="view_mode">
|
|
|
<option value="normal"<?php echo $this->conf->viewMode () == 'normal' ? ' selected="selected"' : ''; ?>><?php echo Translate::t ('normal_view'); ?></option>
|