-
Notifications
You must be signed in to change notification settings - Fork 2
/
drawing.html
78 lines (74 loc) · 4.08 KB
/
drawing.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
---
layout: default
title: Drawing
---
<script src="/assets/js/jquery-1.9.1.min.js"></script>
<script src="/assets/js/jssor.slider.mini.js"></script>
<script src="/assets/js/slides.js"></script>
<link rel="stylesheet" href="/assets/css/slides.css">
<div class="wrapper">
<div class="image-list">
<ul>
{% for file in site.static_files %}
{%if file.path contains '/drawing' and file.path contains '.jpg' %}
{% unless file.path contains '-thumb' %}
<li><a href="{{file.path}}">{{file.modified_time | date: '%Y %B %d' }} - {{file.path | replace: '/drawing/', ''}}</a></li>
{% endunless %}
{% endif %}
{% endfor %}
</ul>
</div>
<div class="image-gallary">
<div id="jssor_1" style="position: relative; margin: 0 auto; top: 0px; left: 0px; width: 624px; height: 832px; overflow: hidden; visibility: hidden; background-color: #24262e; ">
<!-- Loading Screen -->
<div data-u="loading" style="position: absolute; top: 0px; left: 0px;">
<div style="filter: alpha(opacity=70); opacity: 0.7; position: absolute; display: block; top: 0px; left: 0px; width: 100%; height: 100%;"></div>
<div style="position:absolute;display:block;background:url('drawing/loading.gif') no-repeat center center;top:0px;left:0px;width:100%;height:100%;"></div>
</div>
<div u="slides" style="cursor: move; position: absolute; overflow: hidden; left: 0px; top: 0px; width: 624px; height: 832px;">
{% assign counter = 0 %}
{% for file in site.static_files %}
{%if counter < 7 and file.path contains '/drawing' and file.path contains '.jpg' %}
{% unless file.path contains '-thumb' %}
<div><img u="image" src="{{ file.path }}" /><img u="thumb" src="{{ file.path | replace : '.jpg','-thumb.jpg' }}" /></div>
{% assign counter = counter | plus:1 %}
{% endunless %}
{% endif %}
{% endfor %}
</div>
<!-- Thumbnail Navigator -->
<div data-u="thumbnavigator" class="jssort01" style="position:absolute;left:0px;bottom:0px;width:624px;height:100px;" data-autocenter="1">
<!-- Thumbnail Item Skin Begin -->
<div data-u="slides" style="cursor: default;">
<div data-u="prototype" class="p">
<div class="w">
<div data-u="thumbnailtemplate" class="t"></div>
</div>
<div class="c"></div>
</div>
</div>
<!-- Thumbnail Item Skin End -->
</div>
<!-- Arrow Navigator -->
<span data-u="arrowleft" class="jssora05l" style="top:400px;left:8px;width:40px;height:40px;"></span>
<span data-u="arrowright" class="jssora05r" style="top:400px;right:8px;width:40px;height:40px;"></span>
</div>
<div>
</div>
</div>
<div id="comment">
<div id="disqus_thread"></div>
<script type="text/javascript">
/* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */
var disqus_shortname = 'browserwork'; // required: replace example with your forum shortname
/* * * DON'T EDIT BELOW THIS LINE * * */
(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>
<noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
<a href="http://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
</div>
</div>