start adding instance wizard
This commit is contained in:
parent
f67ee7a7eb
commit
70749d9053
|
@ -25,5 +25,15 @@ h1 {
|
|||
}
|
||||
|
||||
a {
|
||||
color: inherit;
|
||||
color: royalblue;
|
||||
}
|
||||
|
||||
a:visited {
|
||||
color: royalblue;
|
||||
}
|
||||
|
||||
@media (max-width: 767px) {
|
||||
p {
|
||||
font-size: 1.3em;
|
||||
}
|
||||
}
|
|
@ -1,8 +1,8 @@
|
|||
{
|
||||
"background_color": "#ffffff",
|
||||
"theme_color": "#aa1e1e",
|
||||
"name": "TODO",
|
||||
"short_name": "TODO",
|
||||
"theme_color": "#4169e1",
|
||||
"name": "Pinafore for Mastodon",
|
||||
"short_name": "Pinafore",
|
||||
"display": "minimal-ui",
|
||||
"start_url": "/",
|
||||
"icons": [
|
||||
|
|
|
@ -3,9 +3,13 @@
|
|||
</:Head>
|
||||
|
||||
<Layout page='home'>
|
||||
<h1>Home page!</h1>
|
||||
<h1>Pinafore for Mastodon</h1>
|
||||
|
||||
<p>This is the home page.</p>
|
||||
<p>Pinafore is a web client for <a href="https://joinmastodon.org">Mastodon</a>, optimized for performance and simplicity.</p>
|
||||
|
||||
<p>To get started, <a href="/settings/instance-wizard">log in to an instance</a>.</p>
|
||||
|
||||
<p>Don't have an instance? <a href="https://joinmastodon.org">Join Mastodon!</a></p>
|
||||
</Layout>
|
||||
|
||||
<script>
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
</Layout>
|
||||
|
||||
<script>
|
||||
import Layout from './_components/Layout.html';
|
||||
import Layout from '../_components/Layout.html';
|
||||
|
||||
export default {
|
||||
components: {
|
19
routes/settings/instance-wizard.html
Normal file
19
routes/settings/instance-wizard.html
Normal file
|
@ -0,0 +1,19 @@
|
|||
<:Head>
|
||||
<title>Instance Wizard</title>
|
||||
</:Head>
|
||||
|
||||
<Layout page='settings'>
|
||||
<h1>Instance Wizard</h1>
|
||||
|
||||
<p>Add an instance!</p>
|
||||
</Layout>
|
||||
|
||||
<script>
|
||||
import Layout from '../_components/Layout.html';
|
||||
|
||||
export default {
|
||||
components: {
|
||||
Layout
|
||||
}
|
||||
};
|
||||
</script>
|
|
@ -3,7 +3,7 @@
|
|||
<head>
|
||||
<meta charset='utf-8'>
|
||||
<meta name='viewport' content='width=device-width'>
|
||||
<meta name='theme-color' content='#aa1e1e'>
|
||||
<meta name='theme-color' content='#4169e1'>
|
||||
|
||||
<link rel='stylesheet' href='/global.css'>
|
||||
<link rel='manifest' href='/manifest.json'>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<head>
|
||||
<meta charset='utf-8'>
|
||||
<meta name='viewport' content='width=device-width'>
|
||||
<meta name='theme-color' content='#aa1e1e'>
|
||||
<meta name='theme-color' content='#4169e1'>
|
||||
|
||||
<link rel='manifest' href='/manifest.json'>
|
||||
<link rel='icon' type='image/png' href='/favicon.png'>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<head>
|
||||
<meta charset='utf-8'>
|
||||
<meta name='viewport' content='width=device-width'>
|
||||
<meta name='theme-color' content='#aa1e1e'>
|
||||
<meta name='theme-color' content='#4169e1'>
|
||||
|
||||
<link rel='manifest' href='/manifest.json'>
|
||||
<link rel='icon' type='image/png' href='/favicon.png'>
|
||||
|
|
Loading…
Reference in a new issue