-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexhibitions.html
155 lines (138 loc) · 3.04 KB
/
exhibitions.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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="language" content="English">
<title>Artcat</title>
<link rel="stylesheet" type="text/css" href="build/style.css">
<style type="text/css">
/* styles liquid */
/* default */
html, body, nav{
background-color: ;
}
a{
color:;
}
a:hover{
color:;
}
h1, h2{
font-family: ;
font-size: ;
color:;
}
p, h3, h4, h5, h6{
font-family: ;
font-size: 1rem;
color:;
}
/* MENU */
a.site-title{
color: ;
}
a.hover{
color: ;
}
nav > ul > li > a, nav > ul > li > a:hover{
font-family:;
font-size:;
color:black;
}
nav > ul > li > a.current{
color:;
}
.lightbox > .container > .counter{
font-family: ;
font-size: ;
}
a.exhibition, a.exhibition:hover{
color: ;
}
</style>
<script type="text/javascript" src="build/jquery-3.3.1.min.js"></script>
<script type="text/javascript" src="build/script.js"></script>
</head>
<body>
<nav>
<div class="nav-wrapper">
<a href="index.html" class="site-title">ArtCat</a>
<!-- <img class="site-logo" src="assets/2017.jpg"> -->
<ul>
<li class="selected">
<a href="exhibitions.html">Exhibitions</a>
</li>
<li>
<a href="lists.html">Lists</a>
</li>
<li>
<a href="image-lists.html">Image Lists</a>
</li>
<li>
<a href="lightbox.html">Lightbox</a>
</li>
<li>
<a href="two-column.html">Double Column</a>
</li>
<li>
<a href="artist.html">Artist</a>
</li>
</ul>
</div>
<div class="mobile-icon">
<div class="mobile-bars"></div>
<div class="mobile-bars"></div>
<div class="mobile-bars"></div>
</div>
</nav>
<main>
<div class="content">
<div class="column">
<h1>Current Exhibitions</h1>
<a href="two-column.html" class="exhibition">
<img src="assets/image-1.jpg" class="exhibit-thumbnail">
<div class="exhibit-info">
<h3>Exhibition Title</h3>
<p>A short Description</p>
<p>August 9</p>
</div>
</a>
<a href="two-column.html" class="exhibition">
<img src="assets/image-1.jpg" class="exhibit-thumbnail">
<div class="exhibit-info">
<h3>Exhibition Title</h3>
<p>A short Description</p>
<p>August 9</p>
</div>
</a>
</div>
<div class="column">
<h1>Upcoming Exhibitions</h1>
<a href="two-column.html" class="exhibition">
<img src="assets/image-1.jpg" class="exhibit-thumbnail">
<div class="exhibit-info">
<h3>Exhibition Title</h3>
<p>A short Description</p>
<p>August 10</p>
</div>
</a>
<a href="two-column.html" class="exhibition">
<img src="assets/image-1.jpg" class="exhibit-thumbnail">
<div class="exhibit-info">
<h3>Exhibition Title</h3>
<p>A short Description</p>
<p>August 9</p>
</div>
</a>
</div>
</div>
</main>
<footer>
<div class="footer-wrapper">
<div class="footer-text">Copyright 2018</div>
<div class="footer-text">Powered by ArtCat</div>
</div>
</footer>
</body>
</html>