jekyll-theme-glueckkanja 1.2.6 → 1.2.7a
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/_layouts/default-with-small-image.html +25 -0
- data/assets/css/app.scss +47 -0
- metadata +5 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e117363c978b49b4263321726980e5cdc7dfe4d39785a29852206d854b42a760
|
|
4
|
+
data.tar.gz: 4339c7b483e7126b989ad42fd60feefdff0409d7e7429ac91531caeb8e0afd34
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3c8426bee156d482dacdfbea9f1b94a19d2fbfaf7f41cb5bc48e88565939763190c9b9ff4bece07a0e7df1275b13cb87147ee76ad59c76e5e0c107d64eca1cf2
|
|
7
|
+
data.tar.gz: dac9502d26edf7cc45260770067a5c97c7d81f0e9f258e256765458628204863b1936665a41b92592c020440b9c13f43ea74b70d337c4e497bc364f45baa9f98
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="{{site.active_lang}}" class="no-js">
|
|
3
|
+
|
|
4
|
+
{% include head.html %}
|
|
5
|
+
{% assign currentRequest = page.url | remove_first: '/' | downcase | split: '/' %}
|
|
6
|
+
|
|
7
|
+
<body id="page-top" data-spy="scroll" data-target=".navbar-fixed-top" data-offset="151">
|
|
8
|
+
|
|
9
|
+
{% assign transparent = true %}
|
|
10
|
+
{% include navigation.html currentRequest=currentRequest transparent=transparent %}
|
|
11
|
+
{% include blogtitlepic.html %}
|
|
12
|
+
|
|
13
|
+
<section class="main" id="start">
|
|
14
|
+
{{ content }}
|
|
15
|
+
</section>
|
|
16
|
+
|
|
17
|
+
{% if page.nositelinks == nil %}
|
|
18
|
+
{% include sitelinks.html %}
|
|
19
|
+
{% endif %}
|
|
20
|
+
{% include footer.html %}
|
|
21
|
+
{% include scripts.html %}
|
|
22
|
+
|
|
23
|
+
</body>
|
|
24
|
+
</html>
|
|
25
|
+
<!-- Page Info: DEFAULT Layout -->
|
data/assets/css/app.scss
CHANGED
|
@@ -2863,6 +2863,53 @@ section {
|
|
|
2863
2863
|
}
|
|
2864
2864
|
}
|
|
2865
2865
|
|
|
2866
|
+
sm-blogtitlepic {
|
|
2867
|
+
height: 100%;
|
|
2868
|
+
@media(min-width: 768px) {
|
|
2869
|
+
height: 865px;
|
|
2870
|
+
}
|
|
2871
|
+
background-attachment:fixed;
|
|
2872
|
+
/* Retina iPad in portrait & landscape */
|
|
2873
|
+
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 2) {
|
|
2874
|
+
height: 100%;
|
|
2875
|
+
max-height: 700px;
|
|
2876
|
+
background-attachment: scroll;
|
|
2877
|
+
h1 {
|
|
2878
|
+
padding-left: 20px;
|
|
2879
|
+
padding-right: 20px;
|
|
2880
|
+
line-height: 100%;
|
|
2881
|
+
}
|
|
2882
|
+
}
|
|
2883
|
+
background-position:center center;
|
|
2884
|
+
background-size: cover;
|
|
2885
|
+
background-repeat: no-repeat;
|
|
2886
|
+
padding:0;
|
|
2887
|
+
width:auto;
|
|
2888
|
+
text-align: center;
|
|
2889
|
+
h1 {
|
|
2890
|
+
color: $primary-color;
|
|
2891
|
+
font-size: 2em;
|
|
2892
|
+
position: absolute;
|
|
2893
|
+
text-align: center;
|
|
2894
|
+
top: 38%;
|
|
2895
|
+
width: 100%;
|
|
2896
|
+
z-index: 2;
|
|
2897
|
+
line-height: 100%;
|
|
2898
|
+
@media(min-width: 768px) {
|
|
2899
|
+
font-size: 3.5em;
|
|
2900
|
+
margin-top: -.5em;
|
|
2901
|
+
top: 430px;
|
|
2902
|
+
}
|
|
2903
|
+
/* Retina iPad in landscape */
|
|
2904
|
+
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
|
|
2905
|
+
top: 50%;
|
|
2906
|
+
}
|
|
2907
|
+
/* Retina iPad Pro in landscape */
|
|
2908
|
+
@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) {
|
|
2909
|
+
top: 430px;
|
|
2910
|
+
}
|
|
2911
|
+
}
|
|
2912
|
+
}
|
|
2866
2913
|
.blog-post iframe {
|
|
2867
2914
|
border: none;
|
|
2868
2915
|
margin-bottom: 10px;
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jekyll-theme-glueckkanja
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.2.
|
|
4
|
+
version: 1.2.7a
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- "@glueckkanja"
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-12-
|
|
11
|
+
date: 2019-12-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|
|
@@ -116,6 +116,7 @@ files:
|
|
|
116
116
|
- _includes/sitelinks.html
|
|
117
117
|
- _layouts/banner.html
|
|
118
118
|
- _layouts/default-with-image.html
|
|
119
|
+
- _layouts/default-with-small-image.html
|
|
119
120
|
- _layouts/default.html
|
|
120
121
|
- _layouts/docs-default.html
|
|
121
122
|
- _layouts/framed.html
|
|
@@ -856,9 +857,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
856
857
|
version: '0'
|
|
857
858
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
858
859
|
requirements:
|
|
859
|
-
- - "
|
|
860
|
+
- - ">"
|
|
860
861
|
- !ruby/object:Gem::Version
|
|
861
|
-
version:
|
|
862
|
+
version: 1.3.1
|
|
862
863
|
requirements: []
|
|
863
864
|
rubygems_version: 3.0.6
|
|
864
865
|
signing_key:
|