-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (29 loc) · 1.19 KB
/
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
27
28
29
30
31
32
33
34
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>VueJs Feed</title>
<link rel="stylesheet" href="dist/app.css">
<meta name="twitter:card" content="A horizontal news feed using VueJs and Sass" />
<meta name="twitter:site" content="@nickhq6" />
<meta name="twitter:creator" content="@nickhq6" />
<meta property="og:url" content="https://nickhq.github.io/vue-feed/" />
<meta property="og:title" content="VueJs horizontal news feed" />
<meta property="og:description" content="A open source horizontal news feed made with vueJs and styled with sass(SCSS), i learn to make this with help from skillshare.com."
/>
<meta property="og:image" content="https://nickhq.github.io/vue-feed/screenshot.png"
/>
</head>
<body>
<div id="app">
<div class="row">
<horizontal-feed header="Breaking news" v-bind:duration="5000" v-bind:collection="'./data.json'">
</horizontal-feed>
<nick-home></nick-home>
</div>
</div>
<script src="dist/app.js"></script>
</body>
</html>