-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy patharticles.html
86 lines (78 loc) · 3.83 KB
/
articles.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
<!DOCTYPE html>
<html>
<head>
<title>ideaLab Worcester Art Museum</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<link rel="stylesheet" href="css/theme.css" /> <!-- jQuery Mobile theme -->
<link rel="stylesheet" href="css/pageViewer.css" /> <!-- page specific css -->
<script src="js/jquery-1.7.2.js"></script><!-- most compatable version of jquery with jquery Mobile and ipad -->
<script src="js/pageViewer.js"></script> <!-- page specific javascript is loaded prior to mobile-->
<script src="js/jquery.mobile-1.2.0.js"></script> <!-- jQuery Mobile library -->
</head>
<body>
<div data-role="page"data-theme="a">
<div data-role="content" id="sub-page"> <!-- basic content setup -->
<!-- 1 ARCHAEOLOGY
2 WHAT ARE ORANTES?
3 ORANTES IN THIS EXHIBITION
4 HISTORY OF ORANTES AT THE MUSEUM
5 MATERIALS AND CONSTRUCTION
6 CONSERVATION
7 TECHNICAL AND SCIENTIFIC ANALYSIS OF THE WORCESTER ORANTES
8 WHY IS THE HEAD MISSING?
9 LEAVE COMMENTS – CONTACT US *-->
<div id="article-wrapper"><!-- wrapper for all previews -->
<div class="article"><!-- Containter for the page preview -->
<div class="article-preview" id="archaeology"><!-- div to hold this contents within the bounds of the article div but not distort -->
<a href="articles/archaeology.html" rel="external"></a>
</div>
</div>
<div class="article"><!-- Containter for the page preview -->
<div class="article-preview" id="orantes"><!-- div to hold this contents within the bounds of the article div but not distort -->
<a href="articles/orantes.html" rel="external"></a>
</div>
</div>
<div class="article"><!-- Containter for the page preview -->
<div class="article-preview" id="orantes-2"><!-- div to hold this contents within the bounds of the article div but not distort -->
<a href="articles/orantes-2.html" rel="external"></a>
</div>
</div>
<div class="article"><!-- Containter for the page preview -->
<div class="article-preview" id="history"><!-- div to hold this contents within the bounds of the article div but not distort -->
<a href="articles/history.html" rel="external"></a>
</div>
</div>
<div class="article"><!-- Containter for the page preview -->
<div class="article-preview" id="construction"><!-- div to hold this contents within the bounds of the article div but not distort -->
<a href="articles/construction.html" rel="external"></a>
</div>
</div>
<div class="article"><!-- Containter for the page preview -->
<div class="article-preview" id="conservation"><!-- div to hold this contents within the bounds of the article div but not distort -->
<a href="articles/conservation.html" rel="external"></a>
</div>
</div>
<div class="article"><!-- Containter for the page preview -->
<div class="article-preview" id="technical"><!-- div to hold this contents within the bounds of the article div but not distort -->
<a href="articles/technical.html" rel="external"></a>
</div>
</div>
<div class="article"><!-- Containter for the page preview -->
<div class="article-preview" id="head"><!-- div to hold this contents within the bounds of the article div but not distort -->
<a href="articles/head.html" rel="external"></a>
</div>
</div>
<div class="article"><!-- Containter for the page preview -->
<div class="article-preview" id="comments"><!-- div to hold this contents within the bounds of the article div but not distort -->
<a href="articles/comments.html" rel="external"></a>
</div>
</div>
</div>
</div>
<div data-role="footer" data-position="fixed" data-mini="false">
<a href="index.html#four" rel="external" data-role="button" data-icon="home" data-iconpos="notext" class="center-icon" id="home-btn">Home</a>
</div>
</div>
</div>
</body>
</html>