2013-08-02 02:33:06 +04:00
|
|
|
<header>
|
2013-09-18 01:25:26 +04:00
|
|
|
<button class="button-back">Back</button>
|
2013-08-02 02:33:06 +04:00
|
|
|
<h2 class="title">General</h2>
|
|
|
|
<section class="page-actions">
|
|
|
|
<button class="button-save">Save</button>
|
|
|
|
</section>
|
|
|
|
</header>
|
2013-09-16 01:42:30 +04:00
|
|
|
|
2013-08-02 02:33:06 +04:00
|
|
|
<section class="content">
|
2013-08-20 23:24:20 +04:00
|
|
|
<form id="settings-general" novalidate="novalidate">
|
2013-08-02 02:33:06 +04:00
|
|
|
<fieldset>
|
2013-09-16 01:42:30 +04:00
|
|
|
|
2013-08-02 02:33:06 +04:00
|
|
|
<div class="form-group">
|
2013-09-16 01:42:30 +04:00
|
|
|
<label for="blog-title">Blog Title</label>
|
|
|
|
<input id="blog-title" name="general[title]" type="text" value="{{title}}" />
|
|
|
|
<p>The name of your blog</p>
|
2013-08-02 02:33:06 +04:00
|
|
|
</div>
|
|
|
|
|
2013-09-09 00:11:52 +04:00
|
|
|
<div class="form-group">
|
2013-09-16 01:42:30 +04:00
|
|
|
<label for="blog-description">Blog Description</label>
|
2013-09-09 00:11:52 +04:00
|
|
|
<textarea id="blog-description">{{description}}</textarea>
|
2013-09-16 01:42:30 +04:00
|
|
|
<p>Describe what your blog is about</p>
|
2013-09-09 00:11:52 +04:00
|
|
|
</div>
|
2013-09-18 13:20:34 +04:00
|
|
|
</fieldset>
|
2013-08-02 02:33:06 +04:00
|
|
|
<div class="form-group">
|
2013-09-16 01:42:30 +04:00
|
|
|
<label for="blog-logo">Blog Logo</label>
|
2013-09-04 21:42:01 +04:00
|
|
|
{{#if logo}}
|
2013-09-15 19:35:53 +04:00
|
|
|
<a class="js-modal-logo" href="#"><img id="blog-logo" src="{{logo}}" alt="logo"></a>
|
2013-09-04 21:42:01 +04:00
|
|
|
{{else}}
|
2013-09-15 15:13:06 +04:00
|
|
|
<a class="button-add js-modal-logo" >Upload Image</a>
|
2013-09-04 21:42:01 +04:00
|
|
|
{{/if}}
|
2013-09-16 01:42:30 +04:00
|
|
|
<p>Display a sexy logo for your publication</p>
|
2013-08-02 02:33:06 +04:00
|
|
|
</div>
|
|
|
|
|
2013-09-09 20:40:20 +04:00
|
|
|
<div class="form-group">
|
2013-09-16 01:42:30 +04:00
|
|
|
<label for="blog-cover">Blog Cover</label>
|
2013-09-11 19:27:54 +04:00
|
|
|
{{#if cover}}
|
2013-09-15 19:35:53 +04:00
|
|
|
<a class="js-modal-cover" href="#"><img id="blog-cover" src="{{cover}}" alt="cover photo"></a>
|
2013-09-09 20:40:20 +04:00
|
|
|
{{else}}
|
2013-09-15 15:13:06 +04:00
|
|
|
<a class="button-add js-modal-cover">Upload Image</a>
|
2013-09-09 20:40:20 +04:00
|
|
|
{{/if}}
|
2013-09-16 01:42:30 +04:00
|
|
|
<p>Display a cover image on your site</p>
|
2013-09-09 20:40:20 +04:00
|
|
|
</div>
|
2013-09-18 13:20:34 +04:00
|
|
|
<fieldset>
|
2013-08-02 02:33:06 +04:00
|
|
|
<div class="form-group">
|
2013-09-16 01:42:30 +04:00
|
|
|
<label for="email-address">Email Address</label>
|
|
|
|
<input id="email-address" name="general[email-address]" type="email" value="{{email}}" autocapitalize="off" autocorrect="off" />
|
|
|
|
<p>Address to use for admin notifications</p>
|
2013-08-02 02:33:06 +04:00
|
|
|
</div>
|
2013-09-09 20:40:20 +04:00
|
|
|
|
2013-08-02 02:33:06 +04:00
|
|
|
<div class="form-group">
|
2013-09-16 01:42:30 +04:00
|
|
|
<label for="postsPerPage">Posts per page</label>
|
|
|
|
<input id="postsPerPage" name="general[postsPerPage]" type="number" value="{{postsPerPage}}" />
|
|
|
|
<p>How many posts should be displayed on each page</p>
|
2013-08-02 02:33:06 +04:00
|
|
|
</div>
|
|
|
|
|
2013-08-30 15:20:30 +04:00
|
|
|
<div class="form-group">
|
2013-09-16 01:42:30 +04:00
|
|
|
<label for="activeTheme">Theme</label>
|
2013-08-30 15:20:30 +04:00
|
|
|
<select id="activeTheme" name="general[activeTheme]">
|
|
|
|
{{#each availableThemes}}
|
2013-09-05 16:55:28 +04:00
|
|
|
<option value="{{name}}" {{#if active}}selected{{/if}}>{{name}}</option>
|
2013-08-30 15:20:30 +04:00
|
|
|
{{/each}}
|
|
|
|
</select>
|
2013-09-09 00:11:52 +04:00
|
|
|
<p>Select a theme for your blog</p>
|
2013-09-05 16:55:28 +04:00
|
|
|
</div>
|
2013-08-30 15:20:30 +04:00
|
|
|
|
2013-08-02 02:33:06 +04:00
|
|
|
</fieldset>
|
|
|
|
</form>
|
|
|
|
</section>
|