mirror of
https://github.com/TryGhost/Ghost.git
synced 2023-12-13 21:00:40 +01:00
6505986f6b
closes #1249 - changed routes - changed apiRoots
41 lines
No EOL
1.7 KiB
Handlebars
41 lines
No EOL
1.7 KiB
Handlebars
{{!< default}}
|
|
<div id="debug-page" class="wrapper">
|
|
<aside class="settings-sidebar" role="complementary">
|
|
<header>
|
|
<h1 class="title">Ugly Debug Tools</h1>
|
|
</header>
|
|
<nav class="settings-menu">
|
|
<ul>
|
|
<li><a class="general" href="javascript:void(0);">General</a></li>
|
|
</ul>
|
|
</nav>
|
|
</aside>
|
|
<section id="debug-general" class="settings-content" style="display: block">
|
|
<header>
|
|
<h2 class="title">General</h2>
|
|
</header>
|
|
<section class="content">
|
|
<form id="settings-export">
|
|
<input type="hidden" name="_csrf" value="{{csrfToken}}" />
|
|
<fieldset>
|
|
<div class="form-group">
|
|
<label>Export</label>
|
|
<a href="/ghost/api/v0.1/db/" class="button-save">Export</a>
|
|
<p>Export the blog settings and data.</p>
|
|
</div>
|
|
</fieldset>
|
|
</form>
|
|
<form id="settings-import" method="post" action="/ghost/api/v0.1/db/" enctype="multipart/form-data">
|
|
<input type="hidden" name="_csrf" value="{{csrfToken}}" />
|
|
<fieldset>
|
|
<div class="form-group">
|
|
<label>Import</label>
|
|
<input type="file" class="button-add" name="importfile" />
|
|
<input type="submit" class="button-save" value="Import" />
|
|
<p>Import from another Ghost installation. If you import a user, this will replace the current user & log you out.</p>
|
|
</div>
|
|
</fieldset>
|
|
</form>
|
|
</section>
|
|
</section>
|
|
</div> |