-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
81 lines (75 loc) · 2.75 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Clash Resolver for COMSATS Lahore</title>
<!-- <meta name="viewport" content="width=device-width, initial-scale=1"> -->
<link rel="stylesheet" type="text/css" media="screen" href="materialize/css/materialize.min.css" />
<link rel="stylesheet" type="text/css" media="screen" href="stylesheets/main.css" />
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<script src="materialize/js/materialize.min.js"></script>
<!-- <script src="scripts/vue.js"></script> -->
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
<script src="https://cdn.jsdelivr.net/npm/vue-scrollto"></script>
<link rel="icon" type="image/png" href="favicons/favicon-32x32.png" sizes="32x32" />
<link rel="icon" type="image/png" href="favicons/favicon-16x16.png" sizes="16x16" />
</head>
<body>
<div id="app">
<div class="jumbotron-wrapper">
<div class="container">
<div class="jumbotron">
<div class="title center-align">
<div class="instructions">
<h2>{{ instruction }}</h2>
<p class="secondary-text" v-if="sub_instruction">{{ sub_instruction }}</p>
</div>
</div>
</div>
</div>
</div>
<!-- end jumbotron -->
<!-- table -->
<div class="container">
<transition-group name="fade" mode="out-in">
<time-table
ref="table"
v-for="h in howManyTables"
:key="h.key"
v-if="isTimeTableInputRequired"
:is-legend-needed="isLegendNeeded"
:is-time-table-input-enabled="isTimeTableInputEnabled"
:highlightable="h"
v-on:enable-fab="enableFab"
v-on:disable-fab="disableFab">
</time-table>
<!-- section-text-field -->
</transition-group>
<section-text-field
v-if="isSectionChoser"
v-on:update-sections="updateSections"
></section-text-field>
</div>
<fab-done
:is-my-classes="isMyClasses"
:is-other-classes="isOtherClasses"
:is-fab-disabled="isFabDisabled"
:is-section-choser="isSectionChoser"
v-on:done-with-a-class="doneWithAClass"
v-on:done-with-sections="doneWithSections"
v-on:done-with-my-classes="doneWithMyClasses">
</fab-done>
<!-- app end-->
</div>
</body>
<script src="scripts/main.js"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-127831650-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-127831650-1');
</script>
</html>