-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (37 loc) · 1.21 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
35
36
37
38
39
<!DOCTYPE html>
<html>
<head>
<title>AppVote</title>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.5.3/css/bulma.css"
/>
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.0.6/css/all.css"
/>
<link rel="stylesheet" href="./public/styles.css" />
</head>
<body>
<div id="app">
<h2 class="title has-text-centered dividing-header">AppVote!</h2>
<div class="section">
<article
v-for="submission in sortedSubmissions"
:key="submission.id"
class="media"
:class="{ 'blue-border': submission.votes >= 20 }"
>
<submission-component
:submission="submission"
:submissions="sortedSubmissions"
>
</submission-component>
</article>
</div>
</div>
<script src="https://unpkg.com/vue"></script>
<script src="./seed.js"></script>
<script src="./main.js"></script>
</body>
</html>