2013-08-01 23:33:06 +01:00
<header>
2013-09-17 22:25:26 +01:00
<button class="button-back">Back</button>
2013-08-01 23:33:06 +01:00
<h2 class="title">General</h2>
<section class="page-actions">
<button class="button-save">Save</button>
</section>
</header>
2013-09-15 22:42:30 +01:00
2013-08-01 23:33:06 +01:00
<section class="content">
2013-08-20 20:24:20 +01:00
<form id="settings-general" novalidate="novalidate">
2013-08-01 23:33:06 +01:00
<fieldset>
2013-09-15 22:42:30 +01:00
2013-08-01 23:33:06 +01:00
<div class="form-group">
2013-09-15 22:42:30 +01: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-01 23:33:06 +01:00
</div>
2014-01-17 21:34:43 +01:00
<div class="form-group description-container">
2013-09-15 22:42:30 +01:00
<label for="blog-description">Blog Description</label>
2013-09-08 22:11:52 +02:00
<textarea id="blog-description"> {{ description }} </textarea>
2014-01-17 21:34:43 +01:00
<p>
Describe what your blog is about
<span class="word-count">0</span>
</p>
2013-09-08 22:11:52 +02:00
</div>
2013-09-18 10:20:34 +01:00
</fieldset>
2013-08-01 23:33:06 +01:00
<div class="form-group">
2013-09-15 22:42:30 +01:00
<label for="blog-logo">Blog Logo</label>
2013-09-04 18:42:01 +01:00
{{ # if log o }}
2013-09-15 16:35:53 +01:00
<a class="js-modal-logo" href="#"><img id="blog-logo" src=" {{ log o }} " alt="logo"></a>
2013-09-04 18:42:01 +01:00
{{ else }}
2013-09-15 12:13:06 +01:00
<a class="button-add js-modal-logo" >Upload Image</a>
2013-09-04 18:42:01 +01:00
{{ / if }}
2013-09-15 22:42:30 +01:00
<p>Display a sexy logo for your publication</p>
2013-08-01 23:33:06 +01:00
</div>
2013-09-09 17:40:20 +01:00
<div class="form-group">
2013-09-15 22:42:30 +01:00
<label for="blog-cover">Blog Cover</label>
2013-09-11 16:27:54 +01:00
{{ # if cover }}
2013-09-15 16:35:53 +01:00
<a class="js-modal-cover" href="#"><img id="blog-cover" src=" {{ cover }} " alt="cover photo"></a>
2013-09-09 17:40:20 +01:00
{{ else }}
2013-09-15 12:13:06 +01:00
<a class="button-add js-modal-cover">Upload Image</a>
2013-09-09 17:40:20 +01:00
{{ / if }}
2013-09-15 22:42:30 +01:00
<p>Display a cover image on your site</p>
2013-09-09 17:40:20 +01:00
</div>
2013-09-18 10:20:34 +01:00
<fieldset>
2013-08-01 23:33:06 +01:00
<div class="form-group">
2013-09-15 22:42:30 +01: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-01 23:33:06 +01:00
</div>
2013-09-09 17:40:20 +01:00
2013-08-01 23:33:06 +01:00
<div class="form-group">
2013-09-15 22:42:30 +01: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-01 23:33:06 +01:00
</div>
2013-11-21 19:44:18 +01:00
<div class="form-group">
<label for="permalinks">Dated Permalinks</label>
2013-12-06 16:43:53 +01:00
<input id="permalinks" name="general[permalinks]" type="checkbox" value='permalink'/>
2013-11-21 19:44:18 +01:00
<label class="checkbox" for="permalinks"></label>
2014-01-10 20:05:38 +00:00
<p>Include the date in your post URLs</p>
2013-11-21 19:44:18 +01:00
</div>
2013-08-30 13:20:30 +02:00
<div class="form-group">
2013-09-15 22:42:30 +01:00
<label for="activeTheme">Theme</label>
2013-08-30 13:20:30 +02:00
<select id="activeTheme" name="general[activeTheme]">
{{ # each availableThemes }}
2014-02-08 21:16:58 +00:00
<option value=" {{ name }} " {{ # if active }} selected {{ / if }} > {{ # if package }} {{ package .name }} - {{ package .version }} {{ else }} {{ name }} {{ / if }} </option>
2014-02-19 14:57:26 +01:00
{{ # unless package }} <script>console.log('Hi! The theme named " {{ name }} " does not have a package.json file or it\'s malformed. This will be required in the future. For more info, see http://docs.ghost.org/themes/.');</script> {{ / unless }}
2013-08-30 13:20:30 +02:00
{{ / each }}
</select>
2013-09-08 22:11:52 +02:00
<p>Select a theme for your blog</p>
2013-09-05 14:55:28 +02:00
</div>
2013-08-30 13:20:30 +02:00
2013-08-01 23:33:06 +01:00
</fieldset>
</form>
2013-11-21 19:44:18 +01:00
</section>