-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathqunit.html
More file actions
38 lines (31 loc) · 1.1 KB
/
qunit.html
File metadata and controls
38 lines (31 loc) · 1.1 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Q Unit</title>
<link rel="stylesheet" href="https://code.jquery.com/qunit/qunit-2.0.1.css">
</head>
<body>
<section class="loading">
<i class="fa fa-spinner fa-pulse fa-4x loading-icon" aria-hidden="true"></i>
<p class="loading-text">Generating content…</p>
</section>
<header class="header"><h2>Machinspirator</h2></header>
<section class="content">
<img src="" alt="" class="image"/>
<p class="image-description"></p>
<p class="image-tags"></p>
<ul class="articles"></ul>
<p class="youtube-link"></p>
<button type="button" name="button" class="button" id="generate-image-button">Generate image</button>
</section>
<!-- include source files here... -->
<script type="text/javascript" src="config.js"></script>
<script type="text/javascript" src="src/app.js"></script>
<div id="qunit"></div>
<!--<div id="qunit-fixture"></div>-->
<script src="https://code.jquery.com/qunit/qunit-2.0.1.js"></script>
<!-- include spec files here... -->
<script src="spec/api_spec.js"></script>
</body>
</html>