2017-02-21 22:04:50 +03:00
|
|
|
<section class="gh-canvas">
|
|
|
|
<header class="gh-canvas-header">
|
|
|
|
<h2 class="gh-canvas-title">Design</h2>
|
|
|
|
<section class="view-actions">
|
2017-05-18 13:48:37 +03:00
|
|
|
{{gh-task-button task=save class="gh-btn gh-btn-blue gh-btn-icon" data-test-save-button=true}}
|
2017-02-21 22:04:50 +03:00
|
|
|
</section>
|
|
|
|
</header>
|
|
|
|
|
|
|
|
<section class="view-container">
|
|
|
|
<div class="gh-setting-header">Navigation</div>
|
2017-02-27 09:31:01 +03:00
|
|
|
<div class="gh-blognav-container">
|
|
|
|
<form id="settings-navigation" class="gh-blognav" novalidate="novalidate">
|
|
|
|
{{#sortable-group onChange=(action 'reorderItems') as |group|}}
|
|
|
|
{{#each model.navigation as |navItem|}}
|
|
|
|
{{gh-navitem navItem=navItem baseUrl=blogUrl addItem="addNavItem" deleteItem="deleteNavItem" updateUrl="updateUrl" group=group}}
|
|
|
|
{{/each}}
|
|
|
|
{{/sortable-group}}
|
|
|
|
{{gh-navitem navItem=newNavItem baseUrl=blogUrl addItem="addNavItem" updateUrl="updateUrl"}}
|
|
|
|
</form>
|
2017-02-21 22:04:50 +03:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="gh-setting-header">Themes</div>
|
2017-02-27 09:31:01 +03:00
|
|
|
<div class="gh-themes-container">
|
|
|
|
{{gh-theme-table
|
|
|
|
themes=themes
|
2017-03-03 18:31:42 +03:00
|
|
|
activateTheme=(action "activateTheme")
|
2017-02-27 09:31:01 +03:00
|
|
|
downloadTheme=(action "downloadTheme")
|
|
|
|
deleteTheme=(action "deleteTheme")}}
|
2017-02-21 22:04:50 +03:00
|
|
|
|
2017-02-27 09:31:01 +03:00
|
|
|
{{#link-to "settings.design.uploadtheme" class="gh-btn gh-btn-green gh-themes-uploadbtn" data-test-upload-theme-button=true}}
|
|
|
|
<span>Upload a theme</span>
|
|
|
|
{{/link-to}}
|
2017-02-21 22:04:50 +03:00
|
|
|
|
2017-02-27 09:31:01 +03:00
|
|
|
|
|
|
|
{{#if showDeleteThemeModal}}
|
|
|
|
{{gh-fullscreen-modal "delete-theme"
|
|
|
|
model=(hash
|
|
|
|
theme=themeToDelete
|
|
|
|
download=(action "downloadTheme" themeToDelete)
|
|
|
|
)
|
|
|
|
close=(action "hideDeleteThemeModal")
|
|
|
|
confirm=(action "deleteTheme")
|
|
|
|
modifier="action wide"}}
|
|
|
|
{{/if}}
|
2017-03-14 16:54:58 +03:00
|
|
|
|
|
|
|
{{#if showThemeWarningsModal}}
|
|
|
|
{{gh-fullscreen-modal "theme-warnings"
|
|
|
|
model=(hash
|
|
|
|
title="Theme activated with warnings"
|
|
|
|
warnings=themeWarnings
|
|
|
|
)
|
|
|
|
close=(action "hideThemeWarningsModal")
|
|
|
|
modifier="action wide"}}
|
|
|
|
{{/if}}
|
|
|
|
|
|
|
|
{{#if showThemeErrorsModal}}
|
|
|
|
{{gh-fullscreen-modal "theme-warnings"
|
|
|
|
model=(hash
|
|
|
|
title="Theme activation failed"
|
|
|
|
warnings=themeWarnings
|
|
|
|
)
|
|
|
|
close=(action "hideThemeWarningsModal")
|
|
|
|
modifier="action wide"}}
|
|
|
|
{{/if}}
|
2017-02-21 22:04:50 +03:00
|
|
|
</div>
|
2017-02-27 09:31:01 +03:00
|
|
|
|
2017-02-21 22:04:50 +03:00
|
|
|
</section>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
{{outlet}}
|