-
Notifications
You must be signed in to change notification settings - Fork 1
/
00_Uncategorized.html
104 lines (86 loc) · 2.99 KB
/
00_Uncategorized.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, user-scalable=no" />
<title>Photo album - 00_Uncategorized</title>
<link rel="stylesheet" href="public/lightgallery/css/lightgallery.css" />
<link rel="stylesheet" href="public/videojs/video-js.min.css" />
<link rel="stylesheet" href="public/lightgallery/css/lg-exif.min.css" />
<link rel="stylesheet" href="public/core.css" />
<link rel="stylesheet" href="public/theme.css" />
</head>
<body>
<div id="container">
<!--
Gallery title
-->
<header>
<h1><a href="index.html">Photo album</a></h1>
</header>
<!--
Breadcrumbs of parent albums
-->
<nav class="breadcrumbs">
<a class="breadcrumb-item" href="index.html">Home</a> / <a class="breadcrumb-item" href="00_Uncategorized.html">00_Uncategorized</a>
</nav>
<!--
Nested albums, if any
-->
<div id="albums">
<a href="00_Uncategorized-%E5%A0%B4%E5%8B%98.html" style="background-image: url('media/small/00_Uncategorized/%E5%A0%B4%E5%8B%98/2015-11-26-%E6%B3%A2%E5%B8%8C%E7%B1%B3%E4%BA%9E%E4%BA%BA%E5%A0%B4%E5%8B%98/R0220546.JPG')">
<div class="info">
<h3>場勘</h3>
<div class="summary">5 albums, 51 photos</div>
<div class="date">27 Mar 2013 - 24 Feb 2023</div>
</div>
</a><a href="00_Uncategorized-Banners_yen.html" style="background-image: url('media/small/00_Uncategorized/Banners_%40yen/2014-04-24%40yan/41.png')">
<div class="info">
<h3>Banners_@yen</h3>
<div class="summary">1 album, 1 photo</div>
<div class="date">24 Feb 2023 - 24 Feb 2023</div>
</div>
</a> </div>
<!--
All photos and videos
-->
<ul id="media" class="clearfix">
</ul>
<!--
Pagination
-->
<!--
Zip file link
-->
<!--
Optional footer
-->
</div>
<!-- Video loader -->
<div id="videos">
</div>
<!-- jQuery -->
<script src="public/jquery.min.js"></script>
<!-- VideoJS -->
<script src="public/videojs/video.min.js"></script>
<!-- LightGallery -->
<script src="public/lightgallery/js/lightgallery.js"></script>
<script src="public/lightgallery/js/lg-autoplay.js"></script>
<script src="public/lightgallery/js/lg-pager.js"></script>
<script src="public/lightgallery/js/lg-thumbnail.js"></script>
<script src="public/lightgallery/js/lg-video.js"></script>
<script src="public/lightgallery/js/lg-exif.min.js"></script>
<script>
$(document).ready(function() {
$("#media").lightGallery({
thumbWidth: 80,
controls: true,
loop : false,
download: true,
counter: true,
videojs: true
});
});
</script>
</body>
</html>