initial base neochan app
This commit is contained in:
parent
aecbe2a5a9
commit
f07a6faec6
2
contrib/static/.gitignore
vendored
2
contrib/static/.gitignore
vendored
@ -1,3 +1,3 @@
|
||||
nntpchan.js
|
||||
neochan.js
|
||||
neochan.css
|
||||
neochan.css
|
||||
|
1
contrib/static/neochan-app.js
Normal file
1
contrib/static/neochan-app.js
Normal file
@ -0,0 +1 @@
|
||||
/** neochan js code */
|
24
contrib/static/neochan.html
Normal file
24
contrib/static/neochan.html
Normal file
@ -0,0 +1,24 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<link href='https://fonts.googleapis.com/css?family=Roboto:300,400,500,700|Material+Icons' rel="stylesheet">
|
||||
<link href="https://unpkg.com/vuetify/dist/vuetify.min.css" rel="stylesheet">
|
||||
<title> Neochan UI </title>
|
||||
</head>
|
||||
<body>
|
||||
<div id="app">
|
||||
<v-app>
|
||||
<main>
|
||||
<v-container>Hello world</v-container>
|
||||
</main>
|
||||
</v-app>
|
||||
</div>
|
||||
|
||||
<script src="https://unpkg.com/vue/dist/vue.js"></script>
|
||||
<script src="https://unpkg.com/vuetify/dist/vuetify.js"></script>
|
||||
<script src="/static/neochan-app.js"></script>
|
||||
<script>
|
||||
new Vue({ el: '#app' })
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
Reference in New Issue
Block a user