{{#gh-view-title openMobileMenu="openMobileMenu"}}General{{/gh-view-title}}
{{#gh-spin-button class="btn btn-blue" action="save" submitting=submitting}}Save{{/gh-spin-button}}
{{#gh-form-group errors=model.errors hasValidated=model.hasValidated property="title"}} {{gh-input id="blog-title" class="gh-input" name="general[title]" type="text" value=model.title focusOut=(action "validate" "title")}} {{gh-error-message errors=model.errors property="title"}}

The name of your blog

{{/gh-form-group}} {{#gh-form-group errors=model.errors hasValidated=model.hasValidated property="description" class="description-container"}} {{gh-textarea id="blog-description" class="gh-input" name="general[description]" value=model.description focusOut=(action "validate" "description")}} {{gh-error-message errors=model.errors property="description"}}

Describe what your blog is about {{gh-count-characters model.description}}

{{/gh-form-group}}
{{#if model.logo}} {{else}} {{/if}}

Display a sexy logo for your publication

{{#if model.cover}} cover photo {{else}} {{/if}}

Display a cover image on your site

{{! `pattern` brings up numeric keypad allowing any number of digits}} {{gh-input id="postsPerPage" class="gh-input" name="general[postsPerPage]" focus-out="checkPostsPerPage" value=model.postsPerPage min="1" max="1000" type="number" pattern="[0-9]*"}}

How many posts should be displayed on each page

{{gh-select-native id="activeTheme" name="general[activeTheme]" content=themes optionValuePath="name" optionLabelPath="label" selection=selectedTheme action="setTheme" }}

Select a theme for your blog

{{#if model.isPrivate}} {{#gh-form-group errors=model.errors hasValidated=model.hasValidated property="password"}} {{gh-input name="general[password]" type="text" value=model.password focusOut=(action "validate" "password")}} {{gh-error-message errors=model.errors property="password"}}

This password will be needed to access your blog. All search engine optimization and social features are now disabled. This password is stored in plaintext.

{{/gh-form-group}} {{/if}}