-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
76 lines (76 loc) · 3.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
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Minimal eLearning</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="http://nafeu.com/minimal-elearning" />
<meta property="og:type" content="website" />
<meta property="og:title" content="Minimal eLearning" />
<meta property="og:description" content="Shareable, markdown-based lesson slides with built-in quiz widgets." />
<meta property="og:image" content="http://nafeu.com/minimal-elearning/opengraph-image.png" />
<link rel="stylesheet" href="vendor/roboto-fontface.css">
<link rel="stylesheet" href="vendor/flexboxgrid.min.css">
<link rel="stylesheet" href="vendor/github-markdown.min.css">
<link rel="stylesheet" href="vendor/font-awesome.min.css">
<link rel="stylesheet" href="vendor/github.min.css">
<link rel="stylesheet" type="text/css" href="css/styles.css">
<link rel="icon" type="image/png" sizes="96x96" href="./favicon-96x96.png">
<script src="vendor/jquery.min.js"></script>
<script src="vendor/showdown.min.js"></script>
<script src="vendor/highlight.min.js"></script>
<script src="lib/showdown-table.min.js"></script>
<script src="lib/js-yaml-front-client.min.js"></script>
<script src="lib/jquery.plugins.js"></script>
<script src="vendor/MathJax/MathJax.js?config=TeX-MML-AM_CHTML"></script>
<script src="vendor/ace/ace.js"></script>
<script src="vendor/ace/ext-language_tools.js"></script>
<script src="vendor/FileSaver.js"></script>
</head>
<body class="row">
<div id="main" class="col-xs-12 col-sm-offset-2 col-sm-8">
<div id="meta" class="box"></div>
<div id="content" class="box markdown-body"></div>
</div>
<div style="display:none;" id="editor-container" class="col-xs-12 col-xs-12 col-md-offset-3 col-md-6 text-center">
<img id="logo" src="img/logo.png">
<div id="editor"></div>
<div id="editor-actions" onmouseleave="resetLoaderMessage()">
<i onclick="saveLesson()" class="editor-action fa fa-save"></i>
<i onclick="hideEditor()" class="editor-action fa fa-eye"></i>
<i onclick="openTutorial()" class="editor-action fa fa-question"></i>
<i onclick="goHome()" class="editor-action fa fa-home"></i>
</div>
</div>
<div style="display:none;" id="lesson-loader" class="col-xs-12 col-sm-offset-1 col-sm-10 col-md-8 col-md-offset-2 text-center">
<input id="hidden-url" type="text">
<img id="logo" src="img/logo.png">
<br>
<input id="lesson-loader-field" type="text" placeholder="Paste your lesson url here or drop an .memd file">
<br>
<div id="preview" style="display:none;"></div>
<div id="lesson-loader-actions" onmouseleave="resetLoaderMessage()">
<i
onmouseenter="updateLoaderMessage('Open a lesson off your local machine')"
onclick="openLessonFile()"
class="lesson-loader-action fa fa-folder"></i>
<i
onmouseenter="updateLoaderMessage('Build or edit your own lessons')"
onclick="showEditor()"
class="lesson-loader-action fa fa-edit"></i>
<i
onmouseenter="updateLoaderMessage('Learn how to use Minimal eLearning')"
onclick="openTutorial()"
class="lesson-loader-action fa fa-question"></i>
<i
onmouseenter="updateLoaderMessage('View the project source-code and docs on github')"
onclick="goToGithub()"
class="lesson-loader-action fa fa-github"></i>
</div>
<p class="footer">© 2018 Nafeu Nasir</p>
</div>
<script src="js/scripts.js"></script>
</body>
</html>