-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
26 lines (24 loc) · 888 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PrivacyTube</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div id="app">
<nav>
<h1><router-link to="/">PrivacyTube</router-link></h1>
<form @submit.prevent="$router.push({path: '/search', query: {q}})">
<input type="search" placeholder="Search" v-model="q">
</form>
</nav>
<main v-if="instances === null"><p>Loading instances...</p></main>
<router-view v-else></router-view>
</div>
<script src="https://unpkg.com/[email protected]/dist/vue.global.js"></script>
<script src="https://unpkg.com/[email protected]/dist/vue-router.global.js"></script>
<script src="js/app.js" type="module"></script>
</body>
</html>