-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
87 lines (75 loc) · 2.67 KB
/
index.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
---
title: Art By Vito
layout: default
---
<header id="intro-header">
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
<div class="site-heading">
<div id="signature"></div>
</div>
</div>
</div>
</div>
</header>
<div id="content">
<div class="loading">
<i class="fa fa-refresh fa-spin"></i>
<div>Loading Gallery</div>
</div>
</div>
<script type="application/json" id="gallery-data">
{{site.data.paintings | jsonify }}
</script>
<script type="application/json" id="tags-data">
{{site.data.tags | jsonify }}
</script>
{% raw %}
<script id="gallery-template" type="text/x-handlebars-template">
<!-- Page Content -->
<div class="container">
<!-- Projects Row -->
{{#each rows}}
<div class="row">
{{#each .}}
<div class="col-md-3 col-sm-6 portfolio-item">
<div class="item">
<a id="image{{id}}" href="{{../../imagefolder}}/{{_filename}}.jpg" data-sub-html="#caption{{id}}">
<img class="img-responsive" src="{{../../imagefolder}}/thumb/{{_filename}}.jpg" alt="">
</a>
<div class="caption-container" id="caption{{id}}">
<div class="caption" >
#{{ id }}
{{ title }}
<span>
{{ medium }}
{{#if width }}
{{ width }}cm x {{ height }}cm
{{#if framed}} (inc. frame){{/if}}
{{/if}}
{{ year }}
</span>
</div>
{{#if ../../showLabels}}
<div class="labels">
{{#each tags}}
<span class="label label-pill label-info">{{.}}</span>
{{/each}}
</div>
{{/if}}
</div>
</div>
</div>
{{/each}}
</div>
{{/each}}
</script>
{% endraw %}
<script type="text/javascript">
!function(g,s,q,r,d){r=g[r]=g[r]||function(){(r.q=r.q||[]).push(
arguments)};d=s.createElement(q);q=s.getElementsByTagName(q)[0];
d.src='/js/vito.js?cb='+Math.round(new Date().getTime()/1000);q.parentNode.
insertBefore(d,q)}(window,document,'script','_gs');
var cachebuster = Math.round(new Date().getTime() / 1000);
</script>