intia-theme 0.1.45 → 0.1.48
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_includes/button.html +7 -4
- data/_includes/glossary.html +1 -1
- data/_includes/head.html +5 -0
- data/_includes/header.html +22 -1
- data/_includes/latest-story.html +1 -1
- data/_includes/stories.html +1 -1
- data/_includes/story-slider.html +2 -2
- data/_sass/_layout.scss +45 -0
- metadata +2 -9
- data/_layouts/plattform.html +0 -0
- data/assets/img/posts/analoger_intia_koffer.JPG +0 -0
- data/assets/img/posts/escape-game.jpg +0 -0
- data/assets/img/posts/intia_koffer.JPG +0 -0
- data/assets/img/posts/intia_labor.JPG +0 -0
- data/assets/img/posts/messenger.jpg +0 -0
- data/assets/img/posts/photoprobe.jpg +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 72dc541b9b0334eb317ffa432b513dab303beb447330f3ac9ff0299161601e6d
|
4
|
+
data.tar.gz: 1e9caf669bf4d510db34c175e95ae6f65bcadc8d6fef6901c56b36d8a779b573
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b9ed3b5b64a3b5bd8fcdcbb09b905702ece1d362943c3a9d52f925ccd16788019687f26fe9258e42f74982e767c0df62f97815a6b9213d77b1cdfcd2509eef7f
|
7
|
+
data.tar.gz: 2bb290f600dee21c1f881b63479e915388b1267c5ed565f127b46d3f53bf19da5c1fbc7f6a482da6dd35b935ed154a844f26f15637fb9bf85348fa3d5a47ef97
|
data/_includes/button.html
CHANGED
@@ -1,7 +1,10 @@
|
|
1
1
|
|
2
2
|
<a href="{{ include.link }}" class="button is-rounded is-dark">
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
3
|
+
<span> {{ include.label }} </span>
|
4
|
+
|
5
|
+
{% unless include.no-icon %}
|
6
|
+
<span class="icon is-small">
|
7
|
+
<i class="fas fa-chevron-right fa-xs"></i>
|
8
|
+
</span>
|
9
|
+
{% endunless %}
|
7
10
|
</a>
|
data/_includes/glossary.html
CHANGED
@@ -6,7 +6,7 @@
|
|
6
6
|
{{entry.abstract}}
|
7
7
|
|
8
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>
|
9
|
+
<span>{{ include.button | default:"Read more" }}</span>
|
10
10
|
<span class="icon is-small">
|
11
11
|
<i class="fas fa-chevron-right fa-xs"></i>
|
12
12
|
</span>
|
data/_includes/head.html
CHANGED
@@ -10,6 +10,11 @@
|
|
10
10
|
<link href="https://fonts.googleapis.com/css?family=Verdana" rel="stylesheet" type='text/css'>
|
11
11
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@5/css/all.min.css">
|
12
12
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma-carousel@4.0.3/dist/css/bulma-carousel.min.css">
|
13
|
+
{% unless site.hide_radar %}
|
14
|
+
<script src="https://d3js.org/d3.v5.min.js"></script>
|
15
|
+
<script src="https://methods.intia.de/src/radar/radar.js"></script>
|
16
|
+
<link rel="stylesheet" href="https://methods.intia.de/src/radar/radar.css" />
|
17
|
+
{% endunless %}
|
13
18
|
{% unless site.hide_share_buttons %}
|
14
19
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma-social@1/bin/bulma-social.min.css">
|
15
20
|
{% endunless %}
|
data/_includes/header.html
CHANGED
@@ -45,4 +45,25 @@
|
|
45
45
|
</div>
|
46
46
|
</div>
|
47
47
|
</div>
|
48
|
-
</nav>
|
48
|
+
</nav>
|
49
|
+
|
50
|
+
{% unless page.hide_beadcrumb %}
|
51
|
+
<section class="breadcrumb-section green-version">
|
52
|
+
<div class="container breadcrumb-container">
|
53
|
+
<nav class="breadcrumb has-arrow-separator" aria-label="breadcrumbs">
|
54
|
+
<ul>
|
55
|
+
{% assign crumbs = page.url | remove:'/index.html' | split: '/' %}
|
56
|
+
<li><a href="/">INTIA</a></li>
|
57
|
+
{% for crumb in crumbs offset: 1 %}
|
58
|
+
{% if forloop.last %}
|
59
|
+
<li><a href="#">{{ page.title }}</a></li>
|
60
|
+
{% else %}
|
61
|
+
<li><a href="{% assign crumb_limit = forloop.index | plus: 1 %}{% for crumb in crumbs limit: crumb_limit %}{{ crumb | append: '/' | replace:'without-plugin/','without-plugins/' }}{% endfor %}">{{ crumb | replace:'-',' ' | remove:'.html' | capitalize }}</a></li>
|
62
|
+
{% endif %}
|
63
|
+
{% endfor %}
|
64
|
+
</ul>
|
65
|
+
</nav>
|
66
|
+
</div>
|
67
|
+
</section>
|
68
|
+
{% else %}
|
69
|
+
{% endunless %}
|
data/_includes/latest-story.html
CHANGED
@@ -20,7 +20,7 @@
|
|
20
20
|
<div class="content">
|
21
21
|
<p>{{story.subtitle}}</p>
|
22
22
|
<a href="{{ story.url | relative_url }}" class="button is-rounded has-text-centert is-dark {% if item.link == page.url %}is-active{% endif %}">
|
23
|
-
<span>
|
23
|
+
<span>{{ page.stories_button | default:"Read more" }}</span>
|
24
24
|
<span class="icon is-small">
|
25
25
|
<i class="fas fa-chevron-right fa-xs"></i>
|
26
26
|
</span>
|
data/_includes/stories.html
CHANGED
@@ -21,7 +21,7 @@
|
|
21
21
|
<p>
|
22
22
|
{{story.subtitle}}</p>
|
23
23
|
<a href="{{ story.url | relative_url }}" class="button is-rounded has-text-centert is-dark {% if item.link == page.url %}is-active{% endif %}">
|
24
|
-
<span>
|
24
|
+
<span>{{ page.stories_button | default:"Read more" }}</span>
|
25
25
|
<span class="icon is-small">
|
26
26
|
<i class="fas fa-chevron-right fa-xs"></i>
|
27
27
|
</span>
|
data/_includes/story-slider.html
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{% if page.story_slider %}
|
2
2
|
<div class="green">
|
3
3
|
<div class="container">
|
4
|
-
<h1 class="slider-titel">
|
4
|
+
<h1 class="slider-titel">{{ page.story_slider }}</h1>
|
5
5
|
|
6
6
|
<div class="carousel">
|
7
7
|
{% for story in site.posts limit:5 %}
|
@@ -24,7 +24,7 @@
|
|
24
24
|
<div class="content">
|
25
25
|
<p>{{story.subtitle}}</p>
|
26
26
|
<a href="{{ story.url | relative_url }}" class="button is-rounded has-text-centert is-dark {% if item.link == page.url %}is-active{% endif %}">
|
27
|
-
<span>
|
27
|
+
<span>{{ page.story_slider_button | default:"Read more" }}</span>
|
28
28
|
<span class="icon is-small">
|
29
29
|
<i class="fas fa-chevron-right fa-xs"></i>
|
30
30
|
</span>
|
data/_sass/_layout.scss
CHANGED
@@ -1049,6 +1049,51 @@ div.faq {
|
|
1049
1049
|
padding-bottom: 50px;
|
1050
1050
|
}
|
1051
1051
|
|
1052
|
+
// Breadcrumbs
|
1053
|
+
.breadcrumb-section {
|
1054
|
+
margin-top: 7.5rem;
|
1055
|
+
// position: fixed;
|
1056
|
+
// z-index: 29;
|
1057
|
+
width: 100%;
|
1058
|
+
background-color: white;
|
1059
|
+
border-top: 2px solid #1e7d73;
|
1060
|
+
border-bottom: 2px solid #1e7d73;
|
1061
|
+
}
|
1062
|
+
.breadcrumb a {
|
1063
|
+
color: #1e7d73;
|
1064
|
+
}
|
1065
|
+
.navbar {
|
1066
|
+
padding-bottom: 2.3rem;
|
1067
|
+
}
|
1068
|
+
.hero.is-medium .hero-body {
|
1069
|
+
padding-top: 1rem;
|
1070
|
+
}
|
1071
|
+
|
1072
|
+
// Green version adopted
|
1073
|
+
.breadcrumb-section.green-version {
|
1074
|
+
background-color: #e7f2ea;
|
1075
|
+
border: 0;
|
1076
|
+
}
|
1077
|
+
.green-version .breadcrumb a {
|
1078
|
+
color: #000;
|
1079
|
+
}
|
1080
|
+
.green-version .breadcrumb li + li::before {
|
1081
|
+
color: #000;
|
1082
|
+
}
|
1083
|
+
|
1084
|
+
// Dark-green adopted
|
1085
|
+
// Green version adopted
|
1086
|
+
.breadcrumb-section.dark-green-version {
|
1087
|
+
background-color: #1e7d73;
|
1088
|
+
border: 0;
|
1089
|
+
}
|
1090
|
+
.dark-green-version .breadcrumb a {
|
1091
|
+
color: #ffffff;
|
1092
|
+
}
|
1093
|
+
.dark-green-version .breadcrumb li + li::before {
|
1094
|
+
color: #ffffff;
|
1095
|
+
}
|
1096
|
+
|
1052
1097
|
// Mobil
|
1053
1098
|
|
1054
1099
|
@include mobile {
|
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.48
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Marc Schmidt
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-04-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -51,7 +51,6 @@ files:
|
|
51
51
|
- _includes/toc.html
|
52
52
|
- _layouts/404.html
|
53
53
|
- _layouts/default.html
|
54
|
-
- _layouts/plattform.html
|
55
54
|
- _sass/_helper.scss
|
56
55
|
- _sass/_icons.scss
|
57
56
|
- _sass/_layout.scss
|
@@ -76,12 +75,6 @@ files:
|
|
76
75
|
- assets/img/logos/diakonie_michaelshoven.png
|
77
76
|
- assets/img/logos/ev_jugendhilfe_godesheim.png
|
78
77
|
- assets/img/logos/fjmk.png
|
79
|
-
- assets/img/posts/analoger_intia_koffer.JPG
|
80
|
-
- assets/img/posts/escape-game.jpg
|
81
|
-
- assets/img/posts/intia_koffer.JPG
|
82
|
-
- assets/img/posts/intia_labor.JPG
|
83
|
-
- assets/img/posts/messenger.jpg
|
84
|
-
- assets/img/posts/photoprobe.jpg
|
85
78
|
- assets/js/bulma-carousel/js/bulma-carousel.js
|
86
79
|
- assets/js/main.js
|
87
80
|
- assets/js/search.js
|
data/_layouts/plattform.html
DELETED
File without changes
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|