1
0
mirror of https://github.com/nolanlawson/pinafore synced 2025-02-01 14:26:45 +01:00

30 lines
762 B
HTML
Raw Normal View History

2018-01-07 13:38:12 -08:00
<:Head>
2018-01-21 11:07:16 -08:00
<title>Pinafore Settings</title>
2018-01-07 13:38:12 -08:00
</:Head>
<Layout page='settings'>
2018-01-13 12:12:17 -08:00
<SettingsLayout page='settings' label="Settings">
2018-01-08 17:44:29 -08:00
<h1>Settings</h1>
2018-01-07 13:38:12 -08:00
2018-01-13 12:12:17 -08:00
<SettingsList>
<SettingsListItem href="/settings/instances" label="Instances"/>
<SettingsListItem href="/settings/about" label="About Pinafore"/>
</SettingsList>
2018-01-13 10:53:25 -08:00
2018-01-08 17:44:29 -08:00
</SettingsLayout>
2018-01-07 13:38:12 -08:00
</Layout>
<script>
2018-01-07 15:11:17 -08:00
import Layout from '../_components/Layout.html';
2018-01-08 17:44:29 -08:00
import SettingsLayout from './_components/SettingsLayout.html'
2018-01-13 12:12:17 -08:00
import SettingsList from './_components/SettingsList.html'
import SettingsListItem from './_components/SettingsListItem.html'
2018-01-07 13:38:12 -08:00
export default {
components: {
2018-01-08 17:44:29 -08:00
Layout,
2018-01-13 12:12:17 -08:00
SettingsLayout,
SettingsList,
SettingsListItem
2018-01-07 13:38:12 -08:00
}
};
2018-01-13 12:12:17 -08:00
</script>