intia-theme 0.1.10 → 0.1.14
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/_includes/contact.html +4 -6
- data/_includes/glossary.html +15 -0
- data/_includes/story-slider.html +3 -1
- data/_layouts/default.html +1 -1
- data/_sass/_layout.scss +44 -15
- data/assets/img/download_link.png +0 -0
- data/assets/img/internal-link.png +0 -0
- data/assets/img/logo-black-old.png +0 -0
- data/assets/img/logo-black.png +0 -0
- data/assets/img/logo-white-old.png +0 -0
- data/assets/img/logo-white.png +0 -0
- metadata +7 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 564a52586c89ee13284be7aea2cf7f8e54c6608b05929db5def148ab41e8bd28
|
|
4
|
+
data.tar.gz: e358425ed5e040a534ecc5cbd885d98a8c20bfee3a8d79197034bcbb50e43aad
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0e7fdc0223c1a6c187092bb65de94b5eeae3e61693fd57adea35365be6e9c5fc87560423b29c9517bae8dfc1eff0f939d357be1be3948a3a9f341eeabc540e10
|
|
7
|
+
data.tar.gz: e4c07f01803754b26270444fb308f0693583314e2af327e43a5c5fd213412f959472faa1590d12ec11867f34db9c31307ee99e9532a6e21feb9e1db3c387bb0b
|
data/_includes/contact.html
CHANGED
|
@@ -1,10 +1,8 @@
|
|
|
1
1
|
{% if page.contact %}
|
|
2
2
|
<div class="green contact">
|
|
3
|
-
<h1>
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
consectetur purus sit amet fermentum.
|
|
7
|
-
<form action="https://submit-form.com/ujaWfjyi" class="columns">
|
|
3
|
+
<h1>{{ site.data.contact.title }}</h1>
|
|
4
|
+
{{ site.data.contact.introduction }}
|
|
5
|
+
<form action="{{ site.data.contact.action }}" class="columns">
|
|
8
6
|
<div class="column is-6">
|
|
9
7
|
<div class="field">
|
|
10
8
|
<label class="label">Name</label>
|
|
@@ -60,7 +58,7 @@
|
|
|
60
58
|
</div>
|
|
61
59
|
|
|
62
60
|
<div class="column">
|
|
63
|
-
<label for="agree">
|
|
61
|
+
<label for="agree">{{ site.data.contact.checkbox }}</label><br><br>
|
|
64
62
|
<button class="button is-rounded is-dark" type="submit">Abschicken</button>
|
|
65
63
|
</div>
|
|
66
64
|
</div>
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{% assign entries=site.glossary | sort:page.sort %}
|
|
2
|
+
{% for entry in entries %}
|
|
3
|
+
<h2> {{entry.title}} </h2>
|
|
4
|
+
<p class="text-green has-text-weight-bold">{{entry.subtitle}}</p>
|
|
5
|
+
|
|
6
|
+
{{entry.abstract}}
|
|
7
|
+
|
|
8
|
+
<a href="{{ entry.url | relative_url }}" class="button float_right is-rounded has-text-centert is-dark {% if item.link == page.url %}is-active{% endif %}">
|
|
9
|
+
<span>Mehr lesen</span>
|
|
10
|
+
<span class="icon is-small">
|
|
11
|
+
<i class="fas fa-chevron-right fa-xs"></i>
|
|
12
|
+
</span>
|
|
13
|
+
</a>
|
|
14
|
+
|
|
15
|
+
{% endfor %}
|
data/_includes/story-slider.html
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
{% if page.story_slider %}
|
|
2
2
|
<div class="green">
|
|
3
|
+
<div class="container">
|
|
3
4
|
<h1 class="slider-titel">Aktuelles</h1>
|
|
4
5
|
|
|
5
6
|
<div class="carousel">
|
|
@@ -35,6 +36,7 @@
|
|
|
35
36
|
</div>
|
|
36
37
|
</div>
|
|
37
38
|
{% endfor %}
|
|
38
|
-
|
|
39
|
+
</div>
|
|
40
|
+
</div>
|
|
39
41
|
</div>
|
|
40
42
|
{% endif %}
|
data/_layouts/default.html
CHANGED
|
@@ -24,7 +24,7 @@ The Default layout that everything is using
|
|
|
24
24
|
{% include latest-story.html %}
|
|
25
25
|
{% include contact.html %}
|
|
26
26
|
<div class="columns is-centered">
|
|
27
|
-
<div id="content" class="column is-10-desktop is-12-tablet">
|
|
27
|
+
<div id="content" class="container column is-10-desktop is-12-tablet">
|
|
28
28
|
{{content | markdownify}}
|
|
29
29
|
</div>
|
|
30
30
|
</div>
|
data/_sass/_layout.scss
CHANGED
|
@@ -65,6 +65,8 @@ div.highlight {
|
|
|
65
65
|
.overtitle {
|
|
66
66
|
margin-bottom: 0 !important;
|
|
67
67
|
padding-bottom: 0 !important;
|
|
68
|
+
text-transform: uppercase;
|
|
69
|
+
letter-spacing: 0.3rem;
|
|
68
70
|
}
|
|
69
71
|
.title-with-overtitle {
|
|
70
72
|
margin-top: 0 !important;
|
|
@@ -82,9 +84,11 @@ img.is-rounded {
|
|
|
82
84
|
cursor: pointer;
|
|
83
85
|
display: flex;
|
|
84
86
|
flex-direction: column;
|
|
87
|
+
height: 132px;
|
|
85
88
|
}
|
|
86
89
|
.is-pointed-down {
|
|
87
90
|
transform: scaleY(-1);
|
|
91
|
+
margin-top: auto;
|
|
88
92
|
}
|
|
89
93
|
.is-hidden {
|
|
90
94
|
visibility: hidden;
|
|
@@ -103,6 +107,17 @@ img.is-rounded {
|
|
|
103
107
|
display: block;
|
|
104
108
|
width: 100%;
|
|
105
109
|
}
|
|
110
|
+
.text-green {
|
|
111
|
+
color: $primary-dark;
|
|
112
|
+
}
|
|
113
|
+
a.tooltip-link {
|
|
114
|
+
color: $primary-dark;
|
|
115
|
+
font-weight: 600;
|
|
116
|
+
}
|
|
117
|
+
a .tooltip-popup {
|
|
118
|
+
color: #000;
|
|
119
|
+
font-weight: normal;
|
|
120
|
+
}
|
|
106
121
|
|
|
107
122
|
// Buttons - Mybe global in Buttons und raus damit?
|
|
108
123
|
.button.is-dark {
|
|
@@ -176,11 +191,6 @@ img.is-rounded {
|
|
|
176
191
|
top: -175px;
|
|
177
192
|
position: inherit;
|
|
178
193
|
}
|
|
179
|
-
.home .hero-body img {
|
|
180
|
-
max-width: 40%;
|
|
181
|
-
height: 66vh;
|
|
182
|
-
object-fit: cover;
|
|
183
|
-
}
|
|
184
194
|
.hero {
|
|
185
195
|
display: block;
|
|
186
196
|
}
|
|
@@ -197,7 +207,8 @@ img.is-rounded {
|
|
|
197
207
|
padding: 16px !important;
|
|
198
208
|
}
|
|
199
209
|
|
|
200
|
-
.hero-body .container .button
|
|
210
|
+
.hero-body .container .button,
|
|
211
|
+
.float_right {
|
|
201
212
|
float: right;
|
|
202
213
|
}
|
|
203
214
|
.home .hero-body h1,
|
|
@@ -218,6 +229,17 @@ img.is-rounded {
|
|
|
218
229
|
top: 0;
|
|
219
230
|
max-width: auto;
|
|
220
231
|
}
|
|
232
|
+
.home .hero-body img {
|
|
233
|
+
max-width: 37%;
|
|
234
|
+
height: auto;
|
|
235
|
+
aspect-ratio: 5 / 7;
|
|
236
|
+
object-fit: cover;
|
|
237
|
+
}
|
|
238
|
+
.subpage .hero-body img {
|
|
239
|
+
object-fit: cover;
|
|
240
|
+
max-height: 30vw;
|
|
241
|
+
width: 100%;
|
|
242
|
+
}
|
|
221
243
|
.buttons-hero {
|
|
222
244
|
display: none;
|
|
223
245
|
}
|
|
@@ -327,8 +349,8 @@ img.is-rounded {
|
|
|
327
349
|
box-shadow: none;
|
|
328
350
|
}
|
|
329
351
|
.story-carousel-item {
|
|
330
|
-
margin-left:
|
|
331
|
-
margin-right:
|
|
352
|
+
margin-left: 2%;
|
|
353
|
+
margin-right: 2%;
|
|
332
354
|
}
|
|
333
355
|
.slider-container .card-content .content {
|
|
334
356
|
margin: 50px;
|
|
@@ -537,19 +559,26 @@ footer .columns {
|
|
|
537
559
|
|
|
538
560
|
// Tool-Tip
|
|
539
561
|
|
|
540
|
-
a:hover .tooltip-popup {
|
|
541
|
-
visibility: visible;
|
|
542
|
-
display: block;
|
|
543
|
-
}
|
|
544
562
|
.tooltip-popup {
|
|
545
|
-
position:
|
|
563
|
+
position: absolute;
|
|
546
564
|
width: 20vw;
|
|
565
|
+
z-index: 30;
|
|
547
566
|
visibility: hidden;
|
|
548
567
|
display: none;
|
|
549
|
-
background:
|
|
568
|
+
background: #e7f2ea;
|
|
550
569
|
border-radius: 65px;
|
|
570
|
+
padding: 50px;
|
|
571
|
+
margin-top: -10px;
|
|
572
|
+
margin-right: 30px;
|
|
573
|
+
}
|
|
574
|
+
a:hover .tooltip-popup,
|
|
575
|
+
.show {
|
|
576
|
+
visibility: visible;
|
|
577
|
+
display: block;
|
|
578
|
+
}
|
|
579
|
+
.tooltip-popup h2 {
|
|
580
|
+
padding-top: 0;
|
|
551
581
|
}
|
|
552
|
-
|
|
553
582
|
// Contect
|
|
554
583
|
|
|
555
584
|
.input,
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
data/assets/img/logo-black.png
CHANGED
|
Binary file
|
|
Binary file
|
data/assets/img/logo-white.png
CHANGED
|
Binary file
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: intia-theme
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.14
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Marc Schmidt
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-
|
|
11
|
+
date: 2021-11-11 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|
|
@@ -36,6 +36,7 @@ files:
|
|
|
36
36
|
- _includes/button.html
|
|
37
37
|
- _includes/contact.html
|
|
38
38
|
- _includes/footer.html
|
|
39
|
+
- _includes/glossary.html
|
|
39
40
|
- _includes/head-scripts.html
|
|
40
41
|
- _includes/head.html
|
|
41
42
|
- _includes/header.html
|
|
@@ -55,13 +56,17 @@ files:
|
|
|
55
56
|
- assets/img/404.png
|
|
56
57
|
- assets/img/arrow-down.png
|
|
57
58
|
- assets/img/arrow-left.png
|
|
59
|
+
- assets/img/download_link.png
|
|
58
60
|
- assets/img/external-link.png
|
|
61
|
+
- assets/img/internal-link.png
|
|
62
|
+
- assets/img/logo-black-old.png
|
|
59
63
|
- assets/img/logo-black.png
|
|
60
64
|
- assets/img/logo-dites.png
|
|
61
65
|
- assets/img/logo-green-white.png
|
|
62
66
|
- assets/img/logo-green.png
|
|
63
67
|
- assets/img/logo-short-green.png
|
|
64
68
|
- assets/img/logo-short.png
|
|
69
|
+
- assets/img/logo-white-old.png
|
|
65
70
|
- assets/img/logo-white.png
|
|
66
71
|
- assets/img/logo.png
|
|
67
72
|
- assets/img/posts/escape-game.jpg
|