forked from Jack000/Expose
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate.html
69 lines (56 loc) · 1.97 KB
/
template.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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="X-UA-Compatible" content="IE=Edge"/>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>{{sitetitle}} - {{gallerytitle}}</title>
<link href='https://fonts.googleapis.com/css?family=Amiri:400,400italic' rel='stylesheet' type='text/css'>
<link type="text/css" rel="stylesheet" media="all" href="{{basepath}}global.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="{{basepath}}global.js"></script>
</head>
<body data-resolution="{{resolution}}" data-respath="{{resourcepath}}">
<div id="top">
<div id="nav">
{{navigation}}
</div>
<div class="wrapper">
<div class="author">
<img src="{{basepath}}img/camera.png" alt="" />
<span class="title">
{{sitetitle}}
<span class="subscript">{{gallerytitle}}</span>
</span>
</div>
<a href="#" id="nav_toggle"><span class="arrow_circle"><span class="arrow_down"></span></span><span class="moretext">More Stories</a></a>
</div>
</div>
<div class="wrapper" id="main">
{{content}}
<div id="comments">
<div id="disqus_thread"></div>
</div>
<script type="text/javascript">
var disqus_shortname = '{{disqus_shortname}}';
if(disqus_shortname){
(function() {
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
})();
}
</script>
<div id="footer">
<div class="author center">
<img src="{{basepath}}img/camera.png" alt="" />
<span class="title">
{{sitetitle}}
<span class="subscript">{{gallerytitle}}</span>
</span>
</div>
</div>
<div id="fullscreenvideo"></div>
<div id="fullscreen"></div>
</div>
</body>
</html>