jekyll-swift-theme 0.2.0 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +10 -1
- data/_includes/head.html +6 -1
- data/_includes/shorts/flickr-album.html +10 -0
- data/_includes/shorts/gallery.html +7 -5
- data/_sass/swift/_comments.sass +6 -0
- data/assets/galleria/galleria.js +6987 -0
- data/assets/galleria/galleria.min.js +12 -0
- data/assets/galleria/plugins/flickr/demo.html +62 -0
- data/assets/galleria/plugins/flickr/galleria.flickr.js +399 -0
- data/assets/galleria/plugins/flickr/galleria.flickr.min.js +10 -0
- data/assets/galleria/plugins/history/demo.html +98 -0
- data/assets/galleria/plugins/history/galleria.history.js +164 -0
- data/assets/galleria/plugins/history/galleria.history.min.js +10 -0
- data/assets/galleria/themes/azur/demo-cdn.html +118 -0
- data/assets/galleria/themes/azur/demo-retina.html +120 -0
- data/assets/galleria/themes/azur/demo.html +120 -0
- data/assets/galleria/themes/azur/galleria.azur.css +403 -0
- data/assets/galleria/themes/azur/galleria.azur.js +312 -0
- data/assets/galleria/themes/azur/galleria.azur.min.css +1 -0
- data/assets/galleria/themes/azur/galleria.azur.min.js +10 -0
- data/assets/galleria/themes/classic/demo-cdn.html +103 -0
- data/assets/galleria/themes/classic/demo-retina.html +106 -0
- data/assets/galleria/themes/classic/demo.html +106 -0
- data/assets/galleria/themes/classic/galleria.classic.css +217 -0
- data/assets/galleria/themes/classic/galleria.classic.js +117 -0
- data/assets/galleria/themes/classic/galleria.classic.min.css +1 -0
- data/assets/galleria/themes/classic/galleria.classic.min.js +10 -0
- data/assets/galleria/themes/folio/demo-cdn.html +106 -0
- data/assets/galleria/themes/folio/demo-retina.html +108 -0
- data/assets/galleria/themes/folio/demo.html +108 -0
- data/assets/galleria/themes/folio/galleria.folio.css +185 -0
- data/assets/galleria/themes/folio/galleria.folio.js +488 -0
- data/assets/galleria/themes/folio/galleria.folio.min.css +1 -0
- data/assets/galleria/themes/folio/galleria.folio.min.js +10 -0
- data/assets/galleria/themes/fullscreen/demo-cdn.html +103 -0
- data/assets/galleria/themes/fullscreen/demo-retina.html +105 -0
- data/assets/galleria/themes/fullscreen/demo.html +103 -0
- data/assets/galleria/themes/fullscreen/galleria.fullscreen.css +219 -0
- data/assets/galleria/themes/fullscreen/galleria.fullscreen.js +197 -0
- data/assets/galleria/themes/fullscreen/galleria.fullscreen.min.css +1 -0
- data/assets/galleria/themes/fullscreen/galleria.fullscreen.min.js +10 -0
- data/assets/galleria/themes/fullscreen/index.html +0 -0
- data/assets/galleria/themes/miniml/demo-cdn.html +113 -0
- data/assets/galleria/themes/miniml/demo-retina.html +115 -0
- data/assets/galleria/themes/miniml/demo.html +115 -0
- data/assets/galleria/themes/miniml/galleria.miniml.css +224 -0
- data/assets/galleria/themes/miniml/galleria.miniml.js +171 -0
- data/assets/galleria/themes/miniml/galleria.miniml.min.css +1 -0
- data/assets/galleria/themes/miniml/galleria.miniml.min.js +10 -0
- data/assets/galleria/themes/twelve/demo-cdn.html +120 -0
- data/assets/galleria/themes/twelve/demo-retina.html +121 -0
- data/assets/galleria/themes/twelve/demo.html +121 -0
- data/assets/galleria/themes/twelve/galleria.twelve.css +296 -0
- data/assets/galleria/themes/twelve/galleria.twelve.js +301 -0
- data/assets/galleria/themes/twelve/galleria.twelve.min.css +1 -0
- data/assets/galleria/themes/twelve/galleria.twelve.min.js +10 -0
- data/assets/js/jquery-3.6.0.min.js +2 -0
- metadata +55 -2
@@ -0,0 +1,120 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html lang="en">
|
3
|
+
<head>
|
4
|
+
<meta charset="utf-8">
|
5
|
+
<meta name="viewport" content="width=device-width,initial-scale=0.3">
|
6
|
+
<title>Galleria Azur Theme</title>
|
7
|
+
<style>
|
8
|
+
|
9
|
+
/* Demo styles */
|
10
|
+
html,body{background:#eee;margin:0;}
|
11
|
+
.content{color:#777;font:12px/1.4 "helvetica neue",arial,sans-serif;max-width:820px;margin:20px auto;}
|
12
|
+
h1{font-size:12px;font-weight:normal;color:#222;margin:0;}
|
13
|
+
p{margin:0 0 20px}
|
14
|
+
a {color:#22BCB9;text-decoration:none;}
|
15
|
+
.galleria-info-description a { color: #bbb;}
|
16
|
+
.cred{margin-top:20px;font-size:11px;}
|
17
|
+
|
18
|
+
/* Gallery measures that will be applied */
|
19
|
+
.galleria {
|
20
|
+
height:420px; /* defines a static gallery height */
|
21
|
+
max-width:820px; /* defines a responsive width */
|
22
|
+
}
|
23
|
+
|
24
|
+
</style>
|
25
|
+
|
26
|
+
<!-- load jQuery -->
|
27
|
+
<!-- <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.js"></script> -->
|
28
|
+
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.js"></script>
|
29
|
+
|
30
|
+
<!-- load Galleria -->
|
31
|
+
<script src="../../galleria.js"></script>
|
32
|
+
|
33
|
+
</head>
|
34
|
+
<body>
|
35
|
+
<div class="content">
|
36
|
+
<h1>Galleria Azur Theme</h1>
|
37
|
+
<p>Demonstrating a simple example.</p>
|
38
|
+
|
39
|
+
<div class="galleria">
|
40
|
+
<a href="https://picsum.photos/id/389/1024/768.jpg">
|
41
|
+
<img src="https://picsum.photos/id/389/150/100.jpg"
|
42
|
+
data-big="https://picsum.photos/id/389/1440/1080.jpg"
|
43
|
+
data-description="by <a href="https://unsplash.com/photos/bt-Sc22W-BE">Jake Hills</a> on <a href="https://unsplash.com">Unsplash</a>"
|
44
|
+
data-title="Footsteps">
|
45
|
+
</a>
|
46
|
+
<a href="https://picsum.photos/id/675/1024/768.jpg">
|
47
|
+
<img src="https://picsum.photos/id/675/150/100.jpg"
|
48
|
+
data-big="https://picsum.photos/id/675/1440/1080.jpg"
|
49
|
+
data-description="by <a href="https://unsplash.com/photos/hBYzBU1xP6s">Barn Images</a> on <a href="https://unsplash.com">Unsplash</a>"
|
50
|
+
data-title="Waves washes on beach shore">
|
51
|
+
</a>
|
52
|
+
<a href="https://picsum.photos/id/525/1024/768.jpg">
|
53
|
+
<img src="https://picsum.photos/id/525/150/100.jpg"
|
54
|
+
data-big="https://picsum.photos/id/525/1440/1080.jpg"
|
55
|
+
data-description="by <a href="https://unsplash.com/photos/aViOQZzikVs">Luca Zanon</a> on <a href="https://unsplash.com">Unsplash</a>"
|
56
|
+
data-title="Extreme Desert Hike">
|
57
|
+
</a>
|
58
|
+
<a href="https://picsum.photos/id/349/1024/768.jpg">
|
59
|
+
<img src="https://picsum.photos/id/349/150/100.jpg"
|
60
|
+
data-big="https://picsum.photos/id/349/1440/1080.jpg"
|
61
|
+
data-description="by <a href="https://unsplash.com/photos/FmMivfgHCiM">Caleb George</a> on <a href="https://unsplash.com">Unsplash</a>"
|
62
|
+
data-title="Man in front of skyline">
|
63
|
+
</a>
|
64
|
+
<a href="https://picsum.photos/id/120/1024/768.jpg">
|
65
|
+
<img src="https://picsum.photos/id/120/150/100.jpg"
|
66
|
+
data-big="https://picsum.photos/id/120/1440/1080.jpg"
|
67
|
+
data-description="by <a href="https://unsplash.com/photos/_DA3D5P71qs">Guillaume</a> on <a href="https://unsplash.com">Unsplash</a>"
|
68
|
+
data-title="Milky Way Night Sky">
|
69
|
+
</a>
|
70
|
+
<a href="https://picsum.photos/id/299/1024/768.jpg">
|
71
|
+
<img src="https://picsum.photos/id/299/150/100.jpg"
|
72
|
+
data-big="https://picsum.photos/id/299/1440/1080.jpg"
|
73
|
+
data-description="by <a href="https://unsplash.com/photos/nOhUx3tiaQQ">Matthew Wiebe</a> on <a href="https://unsplash.com">Unsplash</a>"
|
74
|
+
data-title="My favorite building in the city">
|
75
|
+
</a>
|
76
|
+
<a href="https://picsum.photos/id/219/1024/768.jpg">
|
77
|
+
<img src="https://picsum.photos/id/219/150/100.jpg"
|
78
|
+
data-big="https://picsum.photos/id/219/1440/1080.jpg"
|
79
|
+
data-description="by <a href="https://unsplash.com/photos/7iB4OZDlRok">Martyn Seddon</a> on <a href="https://unsplash.com">Unsplash</a>"
|
80
|
+
data-title="Encounter with a leopard">
|
81
|
+
</a>
|
82
|
+
<a href="https://picsum.photos/id/856/1024/768.jpg">
|
83
|
+
<img src="https://picsum.photos/id/856/150/100.jpg"
|
84
|
+
data-big="https://picsum.photos/id/856/1440/1080.jpg"
|
85
|
+
data-description="by <a href="https://unsplash.com/photos/omKdUQ9R3Zo">Olu Eletu</a> on <a href="https://unsplash.com">Unsplash</a>"
|
86
|
+
data-title="Elegant man with hot coffee">
|
87
|
+
</a>
|
88
|
+
<a href="https://picsum.photos/id/531/1024/768.jpg">
|
89
|
+
<img src="https://picsum.photos/id/531/150/100.jpg"
|
90
|
+
data-big="https://picsum.photos/id/531/1440/1080.jpg"
|
91
|
+
data-description="by <a href="https://unsplash.com/photos/zr8msYQhfRg">Jeff Sheldon</a> on <a href="https://unsplash.com">Unsplash</a>"
|
92
|
+
data-title="Vintage cameras">
|
93
|
+
</a>
|
94
|
+
<a href="https://picsum.photos/id/426/1024/768.jpg">
|
95
|
+
<img src="https://picsum.photos/id/426/150/100.jpg"
|
96
|
+
data-big="https://picsum.photos/id/426/1440/1080.jpg"
|
97
|
+
data-description="by <a href="https://unsplash.com/photos/01ZeHnK3F_4">Ales Krivec</a> on <a href="https://unsplash.com">Unsplash</a>"
|
98
|
+
data-title="Valley town">
|
99
|
+
</a>
|
100
|
+
<a href="https://vimeo.com/25750735">
|
101
|
+
<span class="video">Works for vimeo too.</span>
|
102
|
+
</a>
|
103
|
+
<a href="https://www.youtube.com/watch?v=PEEXZZ071FE">
|
104
|
+
<span class="video">Works for youtube too.</span>
|
105
|
+
</a>
|
106
|
+
</div>
|
107
|
+
|
108
|
+
|
109
|
+
</div>
|
110
|
+
<script>
|
111
|
+
$(function() {
|
112
|
+
// Load the Azur theme
|
113
|
+
Galleria.loadTheme('galleria.azur.js');
|
114
|
+
|
115
|
+
// Initialize Galleria
|
116
|
+
Galleria.run('.galleria');
|
117
|
+
});
|
118
|
+
</script>
|
119
|
+
</body>
|
120
|
+
</html>
|