betterplace-content 0.7.115 → 0.7.116

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: 635e38ae2266d1885d8621b6d69f0bd78a45581d1a95505b4315ddc9c3483317
4
- data.tar.gz: d5887fc99523b488835aae75f6272e468dbcb8c9378b1f39640e1efc8e4a1268
3
+ metadata.gz: 4e1fb3153d485620069d3efed7ad41109a2134b8f4a36b78e39f37db54e9acbb
4
+ data.tar.gz: e777c506ee2c7d99ab4308e301148a5e4a423ce38b7306f6131b6cf469bde15f
5
5
  SHA512:
6
- metadata.gz: d9dcc5bbae5dc82bd7edf9414155abfbd827cdd9411233733cb0b5ce69e17038321b045300fe7ad0c06170f229335342b7edbf0da4dc9b1edae201809dbd87db
7
- data.tar.gz: dee07c5f339f2b7371f279398b58d8a57bd99bb450acecef2f19f0888789079758837b25adf8c562bc028508152aaf206539352b324f10b459f437d985a2230c
6
+ metadata.gz: 304af45fe35c9b494ff414c2b6f11d923f95e4ab5eae2746cc41c95db13da0ce8883c41de3cd5057dd2f3a650cf2e6c59b6fbef055528ef1cc6603db39596f4d
7
+ data.tar.gz: ab8f35a711095ad77f51ecb91e8195ad81b6da8726bea72c5e80d7a4cad136515f179da516f1783b2f554916f8ecc0d97b18bf20ebf8bfa085b1e9b299e07146
data/README.md CHANGED
@@ -42,18 +42,6 @@ When your theme is released, only the files in `_layouts`, `_includes`, and `_sa
42
42
  Since this theme is used in **all** betterplace content pages, there are a number of scripts in `scripts` to make things
43
43
  a little easier. Read the comments in those scripts to find out what they do.
44
44
 
45
- ### Fetch current header and footer: script/update-header-footer
46
-
47
- To bring the (english and german) versions of the header and footer up to date
48
- with what is deployed on production,
49
-
50
- ```bash
51
- script/update-header-footer
52
- ```
53
-
54
- will download these.
55
-
56
-
57
45
  ### Release a new version: scripts/release-theme
58
46
 
59
47
  You can run `script/release-theme` to **attempt an automated update of everything**. This will
@@ -12,6 +12,6 @@
12
12
  {% endcomment %}
13
13
  {% capture hostname %}{% if page.layout == 'error404' %}{{ include.hostname }}{% endif %}{% endcapture %}
14
14
  {% if site.lang %}
15
- {% include header-{{ site.lang }}.html hostname=hostname %}
15
+ <div id="c-mountpoint-header"></div>
16
16
  {% include subnavi-{{ site.subnavi_include_name_part | default: 'default' }}-{{ site.lang }}.html hostname=hostname %}
17
17
  {% endif %}
@@ -24,6 +24,9 @@
24
24
  {% elsif jekyll.environment == 'staging' %}
25
25
  {% assign hostname = 'https://www.bp42.com' %}
26
26
  {% assign style_host = 'https://www.bp42.com' %}
27
+ {% elsif jekyll.environment == 'development' %}
28
+ {% assign hostname = 'https://www.betterplace.dev' %}
29
+ {% assign style_host = 'https://www.betterplace.dev' %}
27
30
  {% endif %}
28
31
 
29
32
  {% comment %}Avoid redirect loop. We cannot have URLs ending in "/" since we redirect those with 302. But our "<root>/index.html" files are translated to "<root>/" since page.url is "/" for index.html. This creates the loop for the facebook-debugger for example. Using this clean_page_url solves the problem for the "<root>/index". For "<root>/<folder>/index" we have a different solution: we need to add a "permalink"-front-matter that has the same name as the folder, which also removes the trailing "/".
@@ -100,11 +103,7 @@ Update 2019-07-19: Another problem that came us is, that URLs endet in .html whi
100
103
  {% endif %}
101
104
  {% endcapture %}
102
105
 
103
- {% capture footer %}
104
- {% include footer-{{ site.lang }}.html hostname=hostname %}
105
- {% endcapture %}
106
-
107
- {{ footer | replace_first:'<!--language-switch-content-->',language_switch_content }}
106
+ <div id="c-mountpoint-footer"></div>
108
107
 
109
108
  {% include cookie_banner.html %}
110
109
 
@@ -123,6 +122,18 @@ Update 2019-07-19: Another problem that came us is, that URLs endet in .html whi
123
122
  // www.bp42.com: replace
124
123
  {% endcomment -%}
125
124
 
125
+ // fetch and mount header and footer
126
+ ;['header', 'footer'].forEach(layoutEl => {
127
+ fetch(`{{ style_host }}/{{ site.lang }}/layouts/${layoutEl}_partial`)
128
+ .then((res) => res.text())
129
+ .then(html => {
130
+ html = html.replace('<!--language-switch-content-->', `{{ language_switch_content }}`)
131
+ document.getElementById(`c-mountpoint-${layoutEl}`).innerHTML = html
132
+ // trigger react mounting
133
+ window.document.dispatchEvent(new Event("DOMContentLoaded", { bubbles: true, cancelable: true }))
134
+ })
135
+ })
136
+
126
137
  const replaceHost = () => {
127
138
  if (/\.(?:org|dev|cloud)/.test(window.location.hostname)) return
128
139
 
@@ -132,30 +143,17 @@ Update 2019-07-19: Another problem that came us is, that URLs endet in .html whi
132
143
  element.setAttribute('data-host-replaced', 'true')
133
144
  }
134
145
  })
135
-
136
- {% comment -%}
137
- // Some URLs in the header files are stored in data attributes for use in React.
138
- // These cases can be found by searching for /data[^'"]*['"]http/ in this repo.
139
- // The preceding semicolon is required in browser JS land ;)
140
- {% endcomment -%}
141
- ;['data-login-url', 'data-login-check-url', 'data-search-url'].forEach(dataAttr => {
142
- document.querySelectorAll("[" + dataAttr + "]").forEach(element => {
143
- const modifiedUrl = element.getAttribute(dataAttr).replace('www.betterplace.org', window.location.hostname)
144
- element.setAttribute(dataAttr, modifiedUrl)
145
- element.setAttribute('data-host-replaced', 'true')
146
- })
147
- })
148
146
  }
149
147
 
150
148
  document.addEventListener('DOMContentLoaded', replaceHost)
151
149
  </script>
152
150
 
153
151
  {% comment -%}
154
- // These scripts must be loaded AFTER the DOMContentLoaded listener above is defined.
152
+ // The application JS pack is needed for the header, footer,
153
+ // and some other rare cases like project-swiper, counter-widget, timer-widget
155
154
  {% endcomment -%}
156
155
  <script src="{{ style_host }}/de/layouts/current_pack/application"></script>
157
156
  <script src="{{ style_host }}/de/layouts/current_pack/locale_{{ site.lang }}"></script>
158
- <script src="{{ style_host }}/de/layouts/current_pack/homepage"></script>
159
157
 
160
158
  </body>
161
159
  </html>
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: betterplace-content
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.115
4
+ version: 0.7.116
5
5
  platform: ruby
6
6
  authors:
7
7
  - betterplace.org Developers
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-06-10 00:00:00.000000000 Z
11
+ date: 2022-06-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -90,10 +90,6 @@ files:
90
90
  - LICENSE.txt
91
91
  - README.md
92
92
  - _includes/cookie_banner.html
93
- - _includes/footer-de.html
94
- - _includes/footer-en.html
95
- - _includes/header-de.html
96
- - _includes/header-en.html
97
93
  - _includes/help_categories.html
98
94
  - _includes/hero_image.html
99
95
  - _includes/schema_org_structured_data.html
@@ -1,2 +0,0 @@
1
- <footer class="print:hidden"><div class="container"><nav class="row"><div class="col-md-6"><div aria-expanded="false" class="headline collapsed with-mobile-border" data-target="[data-name=footer-menu-1]" data-toggle="collapse" role="button"><strong>Über uns</strong> <span class="badge bg-blue-700 inline desktop:hidden align-middle">Jetzt bewerben!</span></div><ul class="collapse with-mobile-border" data-name="footer-menu-1"><li><a onclick="gaEvent(&#39;navigation footer&#39;, &#39;click /c/ueber-uns&#39;)" href="/c/ueber-uns">Was ist betterplace.org?</a></li><li><a onclick="gaEvent(&#39;navigation footer&#39;, &#39;click /c/neues&#39;)" href="/c/neues">Blog &amp; Neuigkeiten</a></li><li><a onclick="gaEvent(&#39;navigation footer&#39;, &#39;click /c/ueber-uns/betterplace-academy?utm_source=footer&amp;utm_medium=bp_footer&amp;utm_campaign=bp-org_page&#39;)" href="https://www.betterplace.org/c/ueber-uns/betterplace-academy?utm_source=footer&amp;utm_medium=bp_footer&amp;utm_campaign=bp-org_page">betterplace academy</a></li><li><a onclick="gaEvent(&#39;navigation footer&#39;, &#39;click /c/unser-team&#39;)" href="/c/unser-team">Das Team</a></li><li><a onclick="gaEvent(&#39;navigation footer&#39;, &#39;click /c/stellen&#39;)" class="group" href="/c/stellen">Jobs<span class="ml-1 badge bg-blue-700 hidden desktop:inline-block group-hover:no-underline align-middle">Jetzt bewerben!</span></a></li><li><a onclick="gaEvent(&#39;navigation footer&#39;, &#39;click /c/medien&#39;)" href="/c/medien">Presse</a></li><li class="hidden desktop:block"><a onclick="gaEvent(&#39;navigation footer&#39;, &#39;click /c/kontakt&#39;)" href="/c/kontakt">Kontakt &amp; Impressum</a></li><li><a onclick="gaEvent(&#39;navigation footer&#39;, &#39;click https://api-docs.betterplace.org/&#39;)" href="https://api-docs.betterplace.org/">API</a></li></ul><div class="caret-icon i fa fa-chevron-down"></div></div><div class="col-md-6"><div class="row"><div class="col-md-24"><div aria-expanded="false" class="headline collapsed with-mobile-border" data-target="[data-name=footer-menu-2]" data-toggle="collapse" role="button"><strong>Spenden sammeln</strong></div><ul class="collapse with-mobile-border" data-name="footer-menu-2"><li><a onclick="gaEvent(&#39;navigation footer&#39;, &#39;click /c/spenden-sammeln/als-verein&#39;)" href="https://www.betterplace.org/c/spenden-sammeln/als-verein">Für gemeinnützige Organisationen</a></li><li><a onclick="gaEvent(&#39;navigation footer&#39;, &#39;click /c/spenden-sammeln/private-spendenaktion&#39;)" href="/c/spenden-sammeln/private-spendenaktion">Spendenaktion für Privatpersonen</a></li><li><a onclick="gaEvent(&#39;navigation footer&#39;, &#39;click /c/spenden-sammeln/privater-spendenaufruf&#39;)" href="/c/spenden-sammeln/privater-spendenaufruf">Spendenaufruf für Privatpersonen</a></li></ul><div class="caret-icon i fa fa-chevron-down"></div></div></div><div class="row"><div class="col-md-24"><div aria-expanded="false" class="headline collapsed with-mobile-border is-not-first" data-target="[data-name=footer-menu-3]" data-toggle="collapse" role="button"><strong>Ehrenamt</strong></div><ul class="collapse with-mobile-border" data-name="footer-menu-3"><li><a onclick="gaEvent(&#39;navigation footer&#39;, &#39;click /de/discover-volunteering#open&#39;)" href="https://www.betterplace.org/de/discover-volunteering#open">Ehrenamt finden</a></li></ul><div class="caret-icon i fa fa-chevron-down"></div></div></div></div><div class="col-md-6"><div aria-expanded="false" class="headline collapsed with-mobile-border" data-target="[data-name=footer-menu-4]" data-toggle="collapse" role="button"><strong>Hilfe</strong></div><ul class="collapse with-mobile-border" data-name="footer-menu-4"><li><a onclick="gaEvent(&#39;navigation footer&#39;, &#39;click /c/hilfe/themen/spender&#39;)" href="/c/hilfe/themen/spender">Hilfe für Spender*innen</a></li><li><a onclick="gaEvent(&#39;navigation footer&#39;, &#39;click /c/hilfe/themen/hilfsprojekte&#39;)" href="/c/hilfe/themen/hilfsprojekte">Hilfe für Projektveranwortliche</a></li><li><a onclick="gaEvent(&#39;navigation footer&#39;, &#39;click /c/hilfe/themen/spendenaktionen&#39;)" href="/c/hilfe/themen/spendenaktionen">Hilfe für Spendenaktionen</a></li><li><a onclick="gaEvent(&#39;navigation footer&#39;, &#39;click /c/regeln&#39;)" href="/c/regeln">AGB und Datenschutzbestimmungen</a></li><li><a class="larger-click-area" href="https://www.betterplace.org/c/hilfe/wann-fallen-transaktionskosten-an">Hinweis zu Transaktionskosten</a></li><li><a onclick="gaEvent(&#39;navigation footer&#39;, &#39;click /c/hilfe/themen/partnerplattformen&#39;)" href="/c/hilfe/themen/partnerplattformen">Partnerplattformen</a></li><li><a onclick="gaEvent(&#39;navigation footer&#39;, &#39;click /c/neues/spendengeschenk&#39;)" href="/c/neues/spendengeschenk">Verschenke eine Spende</a></li><li data-behavior="cookie-banner-link" data-content="Cookie-Einstellungen"></li></ul><div class="caret-icon i fa fa-chevron-down"></div></div><div class="col-md-6"><div aria-expanded="false" class="headline collapsed with-mobile-border" data-target="[data-name=footer-menu-5]" data-toggle="collapse" role="button"><strong>Für gute Unternehmen</strong></div><ul class="collapse" data-name="footer-menu-5"><li><a onclick="gaEvent(&#39;navigation footer&#39;, &#39;click /c/spenden-sammeln/als-unternehmen/spendenaktion&#39;)" href="/c/spenden-sammeln/als-unternehmen/spendenaktion">Engagement mit Mitarbeitenden</a></li><li><a onclick="gaEvent(&#39;navigation footer&#39;, &#39;click /c/spenden-sammeln/als-unternehmen/spendengutscheine&#39;)" href="/c/spenden-sammeln/als-unternehmen/spendengutscheine">Engagement mit Kund*innen</a></li><li><a onclick="gaEvent(&#39;navigation footer&#39;, &#39;click /c/spenden-sammeln/als-unternehmen/spendenverdoppelung&#39;)" href="/c/spenden-sammeln/als-unternehmen/spendenverdoppelung">Engagement für soziale Projekte </a></li></ul><div class="caret-icon i fa fa-chevron-down"></div></div><div class="col-24 desktop:hidden"><a onclick="gaEvent(&#39;navigation footer&#39;, &#39;click /c/kontakt&#39;)" class="headline" href="/c/kontakt">Kontakt &amp; Impressum</a></div></nav></div><div class="container"><div class="row"><div class="col-md-24"><hr class="hidden desktop:block mt-6" /><img width="190" class="betterplace-logo" alt="betterplace.org (Logo)" src="https://betterplace-assets.betterplace.org/assets/logos/orga-logo-b3006faba74c851db6ab5ad457b09f8ec24aff733e2fd98a9aa0bed748dafd35.svg" /></div><div class="col-md-16"><div class="indented-text"><p><strong>betterplace.org ist gemeinnützig und arbeitet nicht profitorientiert.</strong></p><p class="subline">Unsere Bezahlmöglichkeiten: PayPal, SEPA Lastschrift, Kreditkarte, giropay/paydirekt, Überweisung.<br>
2
- USt-IdNr.: DE269446682</p></div></div><div class="col-md-8 right-column z-20"><div class="generic-social-media-buttons is-small without-circle"><a onclick="gaEvent(&#39;navigation footer&#39;, &#39;click facebook_profile_link&#39;)" target="_blank" class="social-media-button facebook" title="Facebook" href="https://www.facebook.com/betterplace.org"></a><a onclick="gaEvent(&#39;navigation footer&#39;, &#39;click twitter_profile_link&#39;)" target="_blank" class="social-media-button twitter" title="Twitter" href="https://twitter.com/betterplace_org"></a><a onclick="gaEvent(&#39;navigation footer&#39;, &#39;click instagram_profile_link&#39;)" target="_blank" class="social-media-button instagram" title="Instagram" href="https://www.instagram.com/betterplace_org/"></a><a onclick="gaEvent(&#39;navigation footer&#39;, &#39;click linkedin_profile_link&#39;)" target="_blank" class="social-media-button linkedin" title="LinkedIn" href="https://www.linkedin.com/company/509578"></a></div><span class="language-switch"><!--language-switch-content--></span><a class="cooperation-link hidden desktop:inline-block" href="/c/ueber-uns/initiative-transparente-zivilgesellschaft"><img width="240" height="65" alt="Initiative Transparente Zivilgesellschaft (Logo)" src="https://betterplace-assets.betterplace.org/assets/logos/itz-greyscale-f8696d06129ec01b1563fcac5925b6e871799e6df92714ac211556d84bd3f783.svg" /></a></div></div></div></footer>
@@ -1,2 +0,0 @@
1
- <footer class="print:hidden"><div class="container"><nav class="row"><div class="col-md-6"><div aria-expanded="false" class="headline collapsed with-mobile-border" data-target="[data-name=footer-menu-1]" data-toggle="collapse" role="button"><strong>About us</strong> <span class="badge bg-blue-700 inline desktop:hidden align-middle">Apply now!</span></div><ul class="collapse with-mobile-border" data-name="footer-menu-1"><li><a onclick="gaEvent(&#39;navigation footer&#39;, &#39;click /c/about-us&#39;)" href="/c/about-us">What&#39;s betterplace.org?</a></li><li><a onclick="gaEvent(&#39;navigation footer&#39;, &#39;click /c/news&#39;)" href="/c/news">Blog and News</a></li><li><a onclick="gaEvent(&#39;navigation footer&#39;, &#39;click /c/our-team&#39;)" href="/c/our-team">Our team</a></li><li><a onclick="gaEvent(&#39;navigation footer&#39;, &#39;click /c/jobs&#39;)" class="group" href="/c/jobs">Jobs<span class="ml-1 badge bg-blue-700 hidden desktop:inline-block group-hover:no-underline align-middle">Apply now!</span></a></li><li><a onclick="gaEvent(&#39;navigation footer&#39;, &#39;click /c/media&#39;)" href="/c/media">Press</a></li><li class="hidden desktop:block"><a onclick="gaEvent(&#39;navigation footer&#39;, &#39;click /c/contact&#39;)" href="/c/contact">Contact &amp; Imprint</a></li><li><a onclick="gaEvent(&#39;navigation footer&#39;, &#39;click https://api-docs.betterplace.org/&#39;)" href="https://api-docs.betterplace.org/">API</a></li></ul><div class="caret-icon i fa fa-chevron-down"></div></div><div class="col-md-6"><div class="row"><div class="col-md-24"><div aria-expanded="false" class="headline collapsed with-mobile-border" data-target="[data-name=footer-menu-2]" data-toggle="collapse" role="button"><strong>Collect donations</strong></div><ul class="collapse with-mobile-border" data-name="footer-menu-2"><li><a onclick="gaEvent(&#39;navigation footer&#39;, &#39;click /c/collect-donations/as-non-profit&#39;)" href="https://www.betterplace.org/c/collect-donations/as-non-profit">For social organisations</a></li><li><a onclick="gaEvent(&#39;navigation footer&#39;, &#39;click /c/collect-donations/as-private-person&#39;)" href="/c/collect-donations/as-private-person">For individuals</a></li></ul><div class="caret-icon i fa fa-chevron-down"></div></div></div><div class="row"><div class="col-md-24"><div aria-expanded="false" class="headline collapsed with-mobile-border is-not-first" data-target="[data-name=footer-menu-3]" data-toggle="collapse" role="button"><strong>Donate time</strong></div><ul class="collapse with-mobile-border" data-name="footer-menu-3"><li><a onclick="gaEvent(&#39;navigation footer&#39;, &#39;click /en/discover-volunteering#open&#39;)" href="https://www.betterplace.org/en/discover-volunteering#open">Be a volunteer</a></li></ul><div class="caret-icon i fa fa-chevron-down"></div></div></div></div><div class="col-md-6"><div aria-expanded="false" class="headline collapsed with-mobile-border" data-target="[data-name=footer-menu-4]" data-toggle="collapse" role="button"><strong>Help</strong></div><ul class="collapse with-mobile-border" data-name="footer-menu-4"><li><a onclick="gaEvent(&#39;navigation footer&#39;, &#39;click /c/help/topics/donors&#39;)" href="/c/help/topics/donors">Help for donors</a></li><li><a onclick="gaEvent(&#39;navigation footer&#39;, &#39;click /c/help/topics/projects&#39;)" href="/c/help/topics/projects">Help for project managers</a></li><li><a onclick="gaEvent(&#39;navigation footer&#39;, &#39;click /c/help/topics/fundraising-events&#39;)" href="/c/help/topics/fundraising-events">Help for fundraising events</a></li><li><a onclick="gaEvent(&#39;navigation footer&#39;, &#39;click /c/rules&#39;)" href="/c/rules">Terms of use and privacy policy</a></li><li><a class="larger-click-area" href="https://www.betterplace.org/c/help/when-do-costs-arise">Notice on Transaction Costs</a></li><li><a onclick="gaEvent(&#39;navigation footer&#39;, &#39;click /c/hilfe/spendenkanaele&#39;)" href="/c/hilfe/spendenkanaele">Partner plattforms</a></li><li data-behavior="cookie-banner-link" data-content="Cookie preferences "></li></ul><div class="caret-icon i fa fa-chevron-down"></div></div><div class="col-md-6"><div aria-expanded="false" class="headline collapsed with-mobile-border" data-target="[data-name=footer-menu-5]" data-toggle="collapse" role="button"><strong>For social responsible corporations</strong></div><ul class="collapse" data-name="footer-menu-5"><li><a onclick="gaEvent(&#39;navigation footer&#39;, &#39;click /c/spenden-sammeln/als-unternehmen/spendenaktion&#39;)" href="/c/spenden-sammeln/als-unternehmen/spendenaktion">Commitment with employees </a></li><li><a onclick="gaEvent(&#39;navigation footer&#39;, &#39;click /c/spenden-sammeln/als-unternehmen/spendengutscheine&#39;)" href="/c/spenden-sammeln/als-unternehmen/spendengutscheine">Commitment with customers</a></li><li><a onclick="gaEvent(&#39;navigation footer&#39;, &#39;click /c/spenden-sammeln/als-unternehmen/spendenverdoppelung&#39;)" href="/c/spenden-sammeln/als-unternehmen/spendenverdoppelung">Commitment for projects</a></li></ul><div class="caret-icon i fa fa-chevron-down"></div></div><div class="col-24 desktop:hidden"><a onclick="gaEvent(&#39;navigation footer&#39;, &#39;click /c/contact&#39;)" class="headline" href="/c/contact">Contact &amp; Imprint</a></div></nav></div><div class="container"><div class="row"><div class="col-md-24"><hr class="hidden desktop:block mt-6" /><img width="190" class="betterplace-logo" alt="betterplace.org (Logo)" src="https://betterplace-assets.betterplace.org/assets/logos/orga-logo-b3006faba74c851db6ab5ad457b09f8ec24aff733e2fd98a9aa0bed748dafd35.svg" /></div><div class="col-md-16"><div class="indented-text"><p><strong>betterplace.org is charitable and non-profit.</strong></p><p class="subline">Our payment methods are PayPal, SEPA Direct Debit, Credit Card, giropay/paydirekt, wire transfer.<br>
2
- USt-IdNr.: DE269446682</p></div></div><div class="col-md-8 right-column z-20"><div class="generic-social-media-buttons is-small without-circle"><a onclick="gaEvent(&#39;navigation footer&#39;, &#39;click facebook_profile_link&#39;)" target="_blank" class="social-media-button facebook" title="Facebook" href="https://www.facebook.com/betterplace.org"></a><a onclick="gaEvent(&#39;navigation footer&#39;, &#39;click twitter_profile_link&#39;)" target="_blank" class="social-media-button twitter" title="Twitter" href="https://twitter.com/betterplace_org"></a><a onclick="gaEvent(&#39;navigation footer&#39;, &#39;click instagram_profile_link&#39;)" target="_blank" class="social-media-button instagram" title="Instagram" href="https://www.instagram.com/betterplace_org/"></a><a onclick="gaEvent(&#39;navigation footer&#39;, &#39;click linkedin_profile_link&#39;)" target="_blank" class="social-media-button linkedin" title="LinkedIn" href="https://www.linkedin.com/company/509578"></a></div><span class="language-switch"><!--language-switch-content--></span><a class="cooperation-link hidden desktop:inline-block" href="/c/ueber-uns/initiative-transparente-zivilgesellschaft"><img width="240" height="65" alt="Initiative Transparente Zivilgesellschaft (Logo)" src="https://betterplace-assets.betterplace.org/assets/logos/itz-greyscale-f8696d06129ec01b1563fcac5925b6e871799e6df92714ac211556d84bd3f783.svg" /></a></div></div></div></footer>
@@ -1 +0,0 @@
1
- <header class="print:hidden"><div class="header-logo"><a onclick="gaEvent(&#39;navigation header&#39;, &#39;click /de&#39;)" class="logo" href="https://www.betterplace.org/de"><img class="logo-full" alt="betterplace.org (Logo)" height="30" src="https://betterplace-assets.betterplace.org/assets/logos/layout-logo-d467733fb66cce20fecaf168956b759058116995fd5cc76f82e679acc0a0d54c.svg" /><img class="logo-compact" alt="betterplace.org (Logo)" height="30" src="https://betterplace-assets.betterplace.org/assets/logos/layout-logo-compact-c31a5daedfb45394a9fe63e271dc27ef75248a67aae3dece9eca21afc4082a22.svg" /></a></div><div class="header-claim">Deutschlands größte Spendenplattform</div><div class="header-search"><div data-search-url="https://www.betterplace.org/de/homepage/search" id="header-search-mountpoint"><i class="fa fa-search header-search-icon"></i></div></div><div class="header-login generic-header-login"><div data-login-check-url="https://www.betterplace.org/de/layouts/login_check" data-login-url="https://www.betterplace.org/de/users/sign_in?return_to={{site.baseurl}}" id="header-login-mountpoint"><span class="header-login-icon"><i class="fas fa-user fa-fw"></i></span><span class="header-login-label"><a href="https://www.betterplace.org/de/users/sign_in?return_to={{site.baseurl}}">Anmelden</a></span></div></div><div class="header-links"><ul class="header-list list-unstyled"><li class="header-item"><a onclick="gaEvent(&#39;navigation header&#39;, &#39;click /de/discover&#39;)" class="header-link" href="https://www.betterplace.org/de/discover">Entdecken</a></li><li class="header-item"><a onclick="gaEvent(&#39;navigation header&#39;, &#39;click /c/spenden-sammeln&#39;)" class="header-link" href="https://www.betterplace.org/c/spenden-sammeln">Spenden sammeln</a></li><li class="header-item"><a onclick="gaEvent(&#39;navigation header&#39;, &#39;click /c/ueber-uns&#39;)" class="header-link" href="/c/ueber-uns">Über uns</a></li></ul></div></header>
@@ -1 +0,0 @@
1
- <header class="print:hidden"><div class="header-logo"><a onclick="gaEvent(&#39;navigation header&#39;, &#39;click /en&#39;)" class="logo" href="https://www.betterplace.org/en"><img class="logo-full" alt="betterplace.org (Logo)" height="30" src="https://betterplace-assets.betterplace.org/assets/logos/layout-logo-d467733fb66cce20fecaf168956b759058116995fd5cc76f82e679acc0a0d54c.svg" /><img class="logo-compact" alt="betterplace.org (Logo)" height="30" src="https://betterplace-assets.betterplace.org/assets/logos/layout-logo-compact-c31a5daedfb45394a9fe63e271dc27ef75248a67aae3dece9eca21afc4082a22.svg" /></a></div><div class="header-claim">Change the world with your donation</div><div class="header-search"><div data-search-url="https://www.betterplace.org/en/homepage/search" id="header-search-mountpoint"><i class="fa fa-search header-search-icon"></i></div></div><div class="header-login generic-header-login"><div data-login-check-url="https://www.betterplace.org/en/layouts/login_check" data-login-url="https://www.betterplace.org/en/users/sign_in?return_to={{site.baseurl}}" id="header-login-mountpoint"><span class="header-login-icon"><i class="fas fa-user fa-fw"></i></span><span class="header-login-label"><a href="https://www.betterplace.org/en/users/sign_in?return_to={{site.baseurl}}">Login</a></span></div></div><div class="header-links"><ul class="header-list list-unstyled"><li class="header-item"><a onclick="gaEvent(&#39;navigation header&#39;, &#39;click /en/discover&#39;)" class="header-link" href="https://www.betterplace.org/en/discover">Discover</a></li><li class="header-item"><a onclick="gaEvent(&#39;navigation header&#39;, &#39;click /c/collect-donations&#39;)" class="header-link" href="https://www.betterplace.org/c/collect-donations">Collect donations</a></li><li class="header-item"><a onclick="gaEvent(&#39;navigation header&#39;, &#39;click /c/about-us&#39;)" class="header-link" href="/c/about-us">About Us</a></li></ul></div></header>