intia-theme 0.1.32 → 0.1.36

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b382f94e21851a4771c4c84a89a1a57a057e0267ceb881a04403ac3bb2ac984a
4
- data.tar.gz: 887202e3aaa644cc4a8744e244fbef1755c64090cf4a47fa35a395ebf624b84c
3
+ metadata.gz: 7d27e854de8c386c535a12351283445d3291663101d20094f5977b909fe1b6d7
4
+ data.tar.gz: e5ad65beb57d64259d1c8e05737d93a7a77f94f1d8fe8d884dd2ba0d970aab02
5
5
  SHA512:
6
- metadata.gz: ce4a38fb4c0b8f735b328c965512af7b30cc033eabad98506eebcb4f6833e70fab87fa28e00edc51d7eac5134c1313c3aa2da0be721adc53d3ec724bfc62f3b3
7
- data.tar.gz: 380571c3a028b15b0f752c9ebd437efc6bd5d7b12f4f6fe7202fcef72c60966a031ceba586286ed59bf0899792702449142b43fedc0606740e8397a20d7f2333
6
+ metadata.gz: 8fe04e96407d64dca24d1fccd4d2dcc9f889d2c4ab7e7a3bea0f8481c0f8b6de2de2db6c60327298dbe26f79bc2613d72604a9750567393be7fa6f10800869b8
7
+ data.tar.gz: fddf1a2c9d3160e2777ef22d170926f2e1dc532f3dca35a2dcc601f9a46fcf71cb57fa143da2538551053567e024fabc7d8adfa23f8c7d80b044f88c3042ddec
@@ -2,7 +2,7 @@
2
2
  <div class="container contact">
3
3
  <h1>{{ site.data.contact.title }}</h1>
4
4
  {{ site.data.contact.introduction }}
5
- <form action="{{ site.data.contact.action }}" class="columns">
5
+ <form id="form" action="{{ site.data.contact.action }}" data-botpoison-public-key="{{ site.data.contact.botpoison_key }}" class="columns">
6
6
  <div class="column is-6">
7
7
  <div class="field">
8
8
  <label class="label">Vor- und Nachname</label>
@@ -53,10 +53,23 @@
53
53
 
54
54
  <div class="column contact-agree">
55
55
  <label for="agree">{{ site.data.contact.checkbox }}</label><br><br>
56
- <button class="button is-rounded is-dark" type="submit">Abschicken</button>
56
+ <button id="button" class="button is-rounded is-dark" type="submit">Abschicken</button>
57
57
  </div>
58
58
  </div>
59
59
  </div>
60
60
  </form>
61
+ <script>
62
+ var formElement = document.getElementById("form");
63
+ var buttonElement = document.getElementById("button");
64
+ formElement.addEventListener("botpoison-challenge-start", function () {
65
+ buttonElement.setAttribute("disabled", "disabled");
66
+ });
67
+ formElement.addEventListener("botpoison-challenge-success", function () {
68
+ buttonElement.removeAttribute("disabled");
69
+ });
70
+ formElement.addEventListener("botpoison-challenge-error", function () {
71
+ buttonElement.removeAttribute("disabled");
72
+ });
73
+ </script>
61
74
  </div>
62
75
  {% endif %}
@@ -1,2 +1,3 @@
1
1
  <!-- head scripts -->
2
+ <script src="https://unpkg.com/@botpoison/browser"></script>
2
3
  <script type="module" src="{{ site.baseurl }}/assets/js/main.js"async></script>
data/_includes/hero.html CHANGED
@@ -8,7 +8,11 @@
8
8
  {% if page.hero_image %}
9
9
  <img src="{{page.hero_image}}" alt="placeholder" class="is-rounded is-hidden-mobile">
10
10
  {% endif %}
11
- <p class="subtitle is-4">{{ page.subtitle }}</p>
11
+ {% if page.subtitle_markdownify %}
12
+ <p class="subtitle is-4">{{ page.subtitle | markdownify }}</p>
13
+ {% else %}
14
+ <p class="subtitle is-4">{{ page.subtitle }}</p>
15
+ {% endif %}
12
16
  {% if page.hero_link %}
13
17
  <a href="{{ page.hero_link | relative_url }}" class="button is-rounded is-dark">
14
18
  <span>{{ page.hero_link_text }}</span>
@@ -13,7 +13,7 @@
13
13
  <div class="news-content column is-half">
14
14
  <div class="media">
15
15
  <div class="media-content">
16
- <h4>{{story.date | date: "%m.%d.%Y"}}</h4>
16
+ <h4>{{story.date | date: "%d.%m.%Y"}}</h4>
17
17
  <h2>{{story.title}}</h2>
18
18
  </div>
19
19
  </div>
data/_sass/_layout.scss CHANGED
@@ -234,7 +234,8 @@ a.navbar-item.is-active,
234
234
  }
235
235
  //// Hero sub-pages with green text
236
236
  .subpage h1,
237
- .subpage p {
237
+ .subpage p,
238
+ .subpage ul {
238
239
  color: $primary-dark !important;
239
240
  }
240
241
  .subpage .hero-body img,
@@ -516,11 +517,11 @@ figcaption {
516
517
  .highlighter img.with-zone {
517
518
  width: 100%;
518
519
  float: none;
519
- padding-left: 0;
520
- padding-right: 0;
520
+ padding-left: 30px;
521
+ padding-right: 30px;
522
+ border-radius: 0;
521
523
  }
522
524
  .highlighter .column {
523
- margin-right: 4rem;
524
525
  padding-top: 2rem;
525
526
  padding-bottom: 2rem;
526
527
  }
data/_sass/_main.scss CHANGED
@@ -88,7 +88,10 @@ h4 {
88
88
  h5 {
89
89
  font-size: 0.83rem;
90
90
  }
91
-
91
+ ul {
92
+ list-style-type: disc;
93
+ padding-left: 1em;
94
+ }
92
95
  // Button Animation + Gleiche Breite
93
96
  .button {
94
97
  // Schrifft
Binary file
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.32
4
+ version: 0.1.36
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-12-16 00:00:00.000000000 Z
11
+ date: 2022-02-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -71,7 +71,10 @@ files:
71
71
  - assets/img/logos/diakonie_michaelshoven.png
72
72
  - assets/img/logos/ev_jugendhilfe_godesheim.png
73
73
  - assets/img/logos/fjmk.png
74
+ - assets/img/posts/analoger_intia_koffer.JPG
74
75
  - assets/img/posts/escape-game.jpg
76
+ - assets/img/posts/intia_koffer.JPG
77
+ - assets/img/posts/intia_labor.JPG
75
78
  - assets/img/posts/messenger.jpg
76
79
  - assets/img/posts/photoprobe.jpg
77
80
  - assets/js/bulma-carousel/js/bulma-carousel.js