19 lines
296 B
HTML
19 lines
296 B
HTML
|
<:Head>
|
||
|
<title>Federated</title>
|
||
|
</:Head>
|
||
|
|
||
|
<Layout page='federated'>
|
||
|
<h1>Federated</h1>
|
||
|
|
||
|
<p>This is the 'federated' page. There's not much here.</p>
|
||
|
</Layout>
|
||
|
|
||
|
<script>
|
||
|
import Layout from './_components/Layout.html';
|
||
|
|
||
|
export default {
|
||
|
components: {
|
||
|
Layout
|
||
|
}
|
||
|
};
|
||
|
</script>
|