-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstudent_help.html
110 lines (90 loc) · 4.57 KB
/
student_help.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<!DOCTYPE html>
<html lang="en">
<!-- Head -->
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-186823627-2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-186823627-2');
</script>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>CREATOR - didaCtic and geneRic assEmbly progrAmming simulaTOR</title>
<!-- Required stylesheets -->
<link type="text/css" rel="stylesheet" href="external/bootstrap_vue/bootstrap.min.css"/>
<link type="text/css" rel="stylesheet" href="external/bootstrap_vue/bootstrap-largegrid.min.css"/>
<link type="text/css" rel="stylesheet" href="external/bootstrap_vue/bootstrap-vue.min.css"/>
<link type="text/css" rel='stylesheet' href="external/fontawesome/css/all.css">
<link rel="stylesheet" href="css/style.css">
<!-- Required scripts -->
<script src="external/bootstrap_vue/polyfill.min.js"></script>
<script src="external/bootstrap_vue/vue.min.js"></script>
<script src="external/bootstrap_vue/bootstrap-vue.min.js"></script>
<script src="external/jquery.min.js"></script>
<!-- Swiper -->
<link rel="stylesheet" href="external/swiper/swiper-bundle.css"/>
<link rel="stylesheet" href="external/swiper/swiper-bundle.min.css"/>
<script src="external/swiper/swiper-bundle.js"></script>
<script src="external/swiper/swiper-bundle.min.js"></script>
<!-- Favicon -->
<link rel="apple-touch-icon" sizes="57x57" href="./images/icons/apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="./images/icons/apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="./images/icons/apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="./images/icons/apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="./images/icons/apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="./images/icons/apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="./images/icons/apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="./images/icons/apple-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="./images/icons/apple-icon-180x180.png">
<link rel="icon" type="image/png" sizes="192x192" href="./images/icons/android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="./images/icons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="./images/icons/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="./images/icons/favicon-16x16.png">
<link rel="manifest" href="./images/icons/manifest.json">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="./images/icons/ms-icon-144x144.png">
<meta name="theme-color" content="#ffffff">
</head>
<!-- Body -->
<body>
<div id="app">
<template>
<!-- Navbar -->
<header>
<navbar-creator></navbar-creator>
</header>
<div class="contenedor row" style="margin-top: 10vh; text-align: center; margin-bottom: 7vh">
<div class="col-lg-12 col-sm-12 row p-0 m-0">
<div class="col-lg-2 col-sm-1 p-0"></div>
<div class="col-lg-8 col-sm-10">
<div class="col-lg-12 col-sm-12" style="text-align: center;" id="user_mode">
<h4><b>Getting Started</b></h4>
<hr>
<card-tutorial v-for="item in student_help"
:title="item.title"
:img="item.img"
:text="item.text"
:modal_id="item.modal_id"
:modal_title="item.modal_title"
:video="item.video"
:media_src="item.media_src"
:ga="item.ga"
>
</card-tutorial>
</div>
</div>
<div class="col-lg-2 col-sm-1 p-0"></div>
</div>
</div>
</template>
</div>
<!-- Required scripts -->
<script>
document.write("<script src=\"js/min.creator_web.js?id=" + new Date().getTime() + "\"><\/script>");
</script>
</body>
</html>