88 lines
4.3 KiB
HTML
88 lines
4.3 KiB
HTML
|
<!--
|
||
|
/**
|
||
|
* /index.html
|
||
|
* @version 1.4
|
||
|
* @desc Main index file
|
||
|
* @author Fándly Gergő Zoltán (gergo@systemtest.tk, systemtest.tk)
|
||
|
* @copy 2017 Fándly Gergő Zoltán
|
||
|
* License:
|
||
|
sQuiz for creating small jQuery based quizs in an implementable way
|
||
|
Copyright (C) 2017 Fándly Gergő Zoltán
|
||
|
|
||
|
This program is free software: you can redistribute it and/or modify
|
||
|
it under the terms of the GNU General Public License as published by
|
||
|
the Free Software Foundation, either version 3 of the License, or
|
||
|
(at your option) any later version.
|
||
|
|
||
|
This program is distributed in the hope that it will be useful,
|
||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
GNU General Public License for more details.
|
||
|
|
||
|
You should have received a copy of the GNU General Public License
|
||
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||
|
**/
|
||
|
-->
|
||
|
|
||
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>{{title}}</title>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="description" content="{{description}}">
|
||
|
<!-- stylesheet -->
|
||
|
<link rel="stylesheet" href="./style/style.css">
|
||
|
<link rel="icon" href="./res/icon.png">
|
||
|
<!-- jquery -->
|
||
|
<script src="//code.jquery.com/jquery-3.2.1.min.js"></script>
|
||
|
<script src="//code.jquery.com/ui/1.12.1/jquery-ui.min.js"></script>
|
||
|
<!-- footable -->
|
||
|
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery-footable/3.1.6/footable.core.min.js"></script>
|
||
|
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/jquery-footable/3.1.6/footable.core.standalone.min.css">
|
||
|
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
|
||
|
<!-- plugins -->
|
||
|
<script src="./script/jquery.selection.js"></script>
|
||
|
<script src="./script/screenfull.js"></script>
|
||
|
<script src="./script/jsplumb.min.js"></script>
|
||
|
<script src="./script/chart.min.js"></script>
|
||
|
<!-- main script -->
|
||
|
<script src="./script/script.js"></script>
|
||
|
<script src="./script/tester.js"></script>
|
||
|
<script src="./script/quizedit.js"></script>
|
||
|
<script src="./script/resulttest.js"></script>
|
||
|
<!-- sQuiz -->
|
||
|
<script src="./script/sQuiz/sQuiz.js"></script>
|
||
|
<script src="./script/sQuiz/sQuiz_module_simpleQuestion.js"></script>
|
||
|
<script src="./script/sQuiz/sQuiz_module_simpleSelect.js"></script>
|
||
|
<script src="./script/sQuiz/sQuiz_module_connectGraph.js"></script>
|
||
|
<script src="./script/sQuiz/sQuiz_module_fillIn.js"></script>
|
||
|
<script src="./script/sQuiz/sQuiz_module_markOnMap.js"></script>
|
||
|
<link rel="stylesheet" href="./script/sQuiz/style/sQuiz.css">
|
||
|
<!-- cookieconsent -->
|
||
|
<script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/1.0.9/cookieconsent.min.js"></script>
|
||
|
</head>
|
||
|
<body>
|
||
|
<!-- CONTENT -->
|
||
|
<div id="content">
|
||
|
<button type="button" onclick="screenfull.toggle()"><i class="fa fa-expand"></i></button>
|
||
|
<h1 style="text-align: right ">{{title}}</h1>
|
||
|
<div id="menuwrapper">
|
||
|
<hr class="placeholder" style="height: 20vh">
|
||
|
<div id="menu" class="menu">
|
||
|
<button type="button" class="big" onclick="goTo('tester.html')">{{tester}}</button>
|
||
|
<button type="button" class="big" onclick="goTo('newquiz.html')">{{newquiz}}</button>
|
||
|
<button type="button" class="big" onclick="goTo('resulttest.html')">{{resulttest}}</button>
|
||
|
<button type="button" class="big" onclick="goTo('more.html')">{{more}}</button>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
<!-- END CONTENT -->
|
||
|
<hr class="placeholder" style="height: 500px">
|
||
|
<footer>
|
||
|
<p>© Fándly Gergő Zoltán 2018</p>
|
||
|
<p>Powered by: sQuizEngine<br>version: {{version}}<br>Copyright (c) 2018 Fándly Gergő (<a href="//systemtest.tk">systemtest.tk</a>, <a href="mailto:contact@systemtest.tk">contact@systemtest.tk</a>)<br>Source code: <a href="https://www.systemtest.tk/websvn/listing.php?repname=sQuiz">Repository</a></p>
|
||
|
<p><a href="./license.txt">License</a></p>
|
||
|
</footer>
|
||
|
</body>
|
||
|
</html>
|