-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Chun-Yu Lee (Mat) <[email protected]>
- Loading branch information
1 parent
70d3aaf
commit 7fbcaa8
Showing
5 changed files
with
112 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,106 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
|
||
<head> | ||
<meta charset="utf-8" /> | ||
<meta name="viewport" content="width=device-width, user-scalable=no" /> | ||
<title>Photo album - 2023-12-21</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="2023-12-21.html">2023-12-21</a> | ||
</nav> | ||
|
||
<!-- | ||
Nested albums, if any | ||
--> | ||
<div id="albums"> | ||
</div> | ||
|
||
<!-- | ||
All photos and videos | ||
--> | ||
<ul id="media" class="clearfix"> | ||
|
||
<li data-src="media/large/2023-12-21/IMG_20231221_221448.jpg" | ||
data-sub-html="" | ||
data-download-url="media/large/2023-12-21/IMG_20231221_221448.jpg" | ||
|
||
data-filename="IMG_20231221_221448.jpg" | ||
|
||
> | ||
<a href="media/large/2023-12-21/IMG_20231221_221448.jpg"> | ||
<img src="media/thumbs/2023-12-21/IMG_20231221_221448.jpg" | ||
width="120" | ||
height="120" | ||
alt="IMG_20231221_221448.jpg" /> | ||
</a> | ||
</li> </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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.