-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathinterface.html
More file actions
76 lines (74 loc) · 2.5 KB
/
interface.html
File metadata and controls
76 lines (74 loc) · 2.5 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
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 PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html lang='en' xml:lang='en' xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link href="interface.css" type="text/css" rel="stylesheet">
<script src="js/lib/jquery-3.2.1.min.js" type="text/javascript"></script>
<script src="js/lib/q.js" type="text/javascript"></script>
<script src="js/lib/ramda.min.js" type="text/javascript"></script>
<script src="js/artAdder.js" type="text/javascript"></script>
<script src="js/interface.js" type="text/javascript"></script>
</head>
<body class="loading">
<header id="top">
<!-- <img src="logo.png"/> -->
<div title="Add your own art show" id="addSource"></div>
<div id="close"></div>
<a id="check" title="Click to disable for this website" class="off"></a>
</header>
<section id="squares">
<ul id="shows">
<li class="show">
<div class="active"></div>
<div class="content">
<div class="thumb">
<img/>
<div class="short-title"></div>
</div>
<div class="info">
<header>
<h1 class="title"></h1>
<span class="date"></span>
<span class="link">
<a></a>
</span>
</header>
<span class="description"></span>
</div>
</div>
</li>
</ul>
<div class="autoUpdate">
<label>Keep up with the latest exhibitions? <input type='checkbox' name="autoUpdate" /></label>
</div>
</section>
<section id="infoPages">
<div class="infoPage">
<div class="inner">
<header>
<h1 class="title"></h1>
<div class="date"></div>
<div class="link"><a></a></div>
</header>
<div class="description"></div>
</div>
<div class="selectSource">
<span class="vert-align">ADD THIS ART</span>
</div>
</div>
</section>
<section id="newSource">
<div class="horz-align">
<div class="vert-align">
<input type="text" placeholder="Essay URL">
<div id="addNewSource"></div>
<div class="clear"></div>
<p class="errors"></p>
<p>
Create your own essay on <a href="http://add-art.org/essays/" target="_blank">add-art.org</a>
</p>
</div>
</div>
</section>
</body>
</html>