2018-01-07 21:38:12 +00:00
|
|
|
|
<:Head>
|
2018-01-21 19:07:16 +00:00
|
|
|
|
<title>Pinafore – Settings</title>
|
2018-01-07 21:38:12 +00:00
|
|
|
|
</:Head>
|
|
|
|
|
|
|
|
|
|
<Layout page='settings'>
|
2018-01-13 20:12:17 +00:00
|
|
|
|
<SettingsLayout page='settings' label="Settings">
|
2018-01-09 01:44:29 +00:00
|
|
|
|
<h1>Settings</h1>
|
2018-01-07 21:38:12 +00:00
|
|
|
|
|
2018-01-13 20:12:17 +00:00
|
|
|
|
<SettingsList>
|
2018-02-01 02:20:30 +00:00
|
|
|
|
<SettingsListItem href="/settings/general" label="General"/>
|
2018-01-13 20:12:17 +00:00
|
|
|
|
<SettingsListItem href="/settings/instances" label="Instances"/>
|
|
|
|
|
<SettingsListItem href="/settings/about" label="About Pinafore"/>
|
|
|
|
|
</SettingsList>
|
2018-01-13 18:53:25 +00:00
|
|
|
|
|
2018-01-09 01:44:29 +00:00
|
|
|
|
</SettingsLayout>
|
2018-01-07 21:38:12 +00:00
|
|
|
|
</Layout>
|
|
|
|
|
<script>
|
2018-01-07 23:11:17 +00:00
|
|
|
|
import Layout from '../_components/Layout.html';
|
2018-01-09 01:44:29 +00:00
|
|
|
|
import SettingsLayout from './_components/SettingsLayout.html'
|
2018-01-13 20:12:17 +00:00
|
|
|
|
import SettingsList from './_components/SettingsList.html'
|
|
|
|
|
import SettingsListItem from './_components/SettingsListItem.html'
|
2018-01-07 21:38:12 +00:00
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
components: {
|
2018-01-09 01:44:29 +00:00
|
|
|
|
Layout,
|
2018-01-13 20:12:17 +00:00
|
|
|
|
SettingsLayout,
|
|
|
|
|
SettingsList,
|
|
|
|
|
SettingsListItem
|
2018-01-07 21:38:12 +00:00
|
|
|
|
}
|
|
|
|
|
};
|
2018-01-13 20:12:17 +00:00
|
|
|
|
</script>
|