2014-05-15 08:00:15 +04:00
|
|
|
<header class="fade-in">
|
2014-03-10 07:44:08 +04:00
|
|
|
<button class="button-back">Back</button>
|
|
|
|
<h2 class="title">General</h2>
|
|
|
|
<section class="page-actions">
|
2014-06-02 00:29:25 +04:00
|
|
|
<button class="button-save" {{action "save"}}>Save</button>
|
2014-03-10 07:44:08 +04:00
|
|
|
</section>
|
|
|
|
</header>
|
|
|
|
|
2014-05-15 08:00:15 +04:00
|
|
|
<section class="content fade-in">
|
2014-03-10 07:44:08 +04:00
|
|
|
<form id="settings-general" novalidate="novalidate">
|
|
|
|
<fieldset>
|
|
|
|
|
|
|
|
<div class="form-group">
|
|
|
|
<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>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="form-group description-container">
|
|
|
|
<label for="blog-description">Blog Description</label>
|
|
|
|
{{textarea id="blog-description" value=description}}
|
|
|
|
<p>
|
|
|
|
Describe what your blog is about
|
2014-05-28 23:26:05 +04:00
|
|
|
<span class="word-count">{{gh-count-words description}}</span>
|
2014-03-10 07:44:08 +04:00
|
|
|
</p>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</fieldset>
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="blog-logo">Blog Logo</label>
|
|
|
|
{{#if logo}}
|
2014-06-02 00:29:25 +04:00
|
|
|
<a class="js-modal-logo" href="#" {{action "openModal" "upload"}}><img id="blog-logo" {{bind-attr src=logo}} alt="logo"></a>
|
2014-03-10 07:44:08 +04:00
|
|
|
{{else}}
|
2014-06-02 00:29:25 +04:00
|
|
|
<a class="button-add js-modal-logo" {{action "openModal" "upload"}}>Upload Image</a>
|
2014-03-10 07:44:08 +04:00
|
|
|
{{/if}}
|
|
|
|
<p>Display a sexy logo for your publication</p>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="blog-cover">Blog Cover</label>
|
|
|
|
{{#if cover}}
|
2014-06-02 00:29:25 +04:00
|
|
|
<a class="js-modal-cover" href="#" {{action "openModal" "upload"}}><img id="blog-cover" {{bind-attr src=logo}} alt="cover photo"></a>
|
2014-03-10 07:44:08 +04:00
|
|
|
{{else}}
|
2014-06-02 00:29:25 +04:00
|
|
|
<a class="button-add js-modal-cover" {{action "openModal" "upload"}}>Upload Image</a>
|
2014-03-10 07:44:08 +04:00
|
|
|
{{/if}}
|
|
|
|
<p>Display a cover image on your site</p>
|
|
|
|
</div>
|
|
|
|
<fieldset>
|
|
|
|
<div class="form-group">
|
|
|
|
<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>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="form-group">
|
|
|
|
<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>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="permalinks">Dated Permalinks</label>
|
2014-03-21 06:55:32 +04:00
|
|
|
{{input id="permalinks" name="general[permalinks]" type="checkbox" checked=isDatedPermalinks}}
|
2014-03-10 07:44:08 +04:00
|
|
|
<label class="checkbox" for="permalinks"></label>
|
|
|
|
<p>Include the date in your post URLs</p>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="activeTheme">Theme</label>
|
|
|
|
<select id="activeTheme" name="general[activeTheme]">
|
|
|
|
{{#each availableThemes}}
|
|
|
|
<option value="{{name}}" {{#if active}}selected{{/if}}>{{#if package}}{{package.name}} - {{package.version}}{{else}}{{name}}{{/if}}</option>
|
|
|
|
{{/each}}
|
|
|
|
</select>
|
|
|
|
<p>Select a theme for your blog</p>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</fieldset>
|
|
|
|
</form>
|
|
|
|
</section>
|