betterplace-content 0.5.1 → 0.5.2
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/{subnavi-de.html → subnavi-default-de.html} +0 -0
- data/_includes/{subnavi-en.html → subnavi-default-en.html} +0 -2
- data/_includes/subnavi-landingpages-de.html +5 -0
- data/_includes/subnavi-landingpages-en.html +5 -0
- data/_layouts/default.html +4 -6
- data/_sass/lpm/_variables.sass +11 -0
- metadata +5 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cb347afa40214ee88730f063b6d7555c6b3d4cd8
|
|
4
|
+
data.tar.gz: d816521ed101be90cd7dd2361dc79f0f106e6f58
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 97c6b063ac85132c9fd6259cec570d205791b69d0a08dfc7fbdf397bfdaaf54d4cc00855cf28dfb127b9b800b303e70578148b706745ca9abc10ed6ca23b3179
|
|
7
|
+
data.tar.gz: a7db1b3add24b34918099734a6410bc44031d9c58e76d948a8d48cc699d36bc3826638160e00a5675c4e029d776c08b9f1004d62e8ad1ad775bf5431b4af6e2e
|
|
File without changes
|
|
@@ -6,7 +6,5 @@
|
|
|
6
6
|
<li><a href="{{ include.hostname }}/c/contact">Contact</a></li>
|
|
7
7
|
<li><a href="{{ include.hostname }}/c/jobs">Jobs</a></li>
|
|
8
8
|
<li><a href="{{ include.hostname }}/c/our-team">Team</a></li>
|
|
9
|
-
<!--<li><a href="{{ include.hostname }}/c/botschafter">Ambassadors</a></li>-->
|
|
10
|
-
<!--<li><a href="#">Termine</a></li>-->
|
|
11
9
|
<li><a href="{{ include.hostname }}/c/media">Press</a></li>
|
|
12
10
|
</ul>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<ul class="generic-subnavi">
|
|
2
|
+
<li><a href="{{ include.hostname }}/c/spenden-sammeln/als-verein">Als gemeinnützige Organisation</a></li>
|
|
3
|
+
<li><a href="{{ include.hostname }}/c/spenden-sammeln/als-privatperson">Als Privatperson</a></li>
|
|
4
|
+
<li><a href="{{ include.hostname }}/c/spenden-sammeln/als-unternehmen">Als Unternehmen</a></li>
|
|
5
|
+
</ul>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<ul class="generic-subnavi">
|
|
2
|
+
<li><a href="{{ include.hostname }}/c/collect-donations/for-non-profit">Non profits</a></li>
|
|
3
|
+
<li><a href="{{ include.hostname }}/c/collect-donations/for-private-fundraiser">Private fundraiser</a></li>
|
|
4
|
+
<li><a href="{{ include.hostname }}/c/collect-donations/for-companies">Companies</a></li>
|
|
5
|
+
</ul>
|
data/_layouts/default.html
CHANGED
|
@@ -61,12 +61,10 @@
|
|
|
61
61
|
<body class="{% if page.url contains '404' %} error404 {% else %} {{ site.css_root }} {% endif %}{% if transparent_header %} has-transparent-header {% endif %}">
|
|
62
62
|
<div id="fb-root"></div>
|
|
63
63
|
|
|
64
|
-
{%
|
|
65
|
-
{%
|
|
66
|
-
{% include
|
|
67
|
-
{%
|
|
68
|
-
{% include header-en.html hostname=hostname %}
|
|
69
|
-
{% include subnavi-en.html hostname=hostname %}
|
|
64
|
+
{% comment %}Subnavi: All blogs have the subnavi-default-LANG.html, but landindpages a different subnavi.{% endcomment %}
|
|
65
|
+
{% if site.lang %}
|
|
66
|
+
{% include header-{{ site.lang }}.html hostname=hostname %}
|
|
67
|
+
{% include subnavi-{{ site.subnavi_include_name_part | default: 'default' }}-{{ site.lang }}.html hostname=hostname %}
|
|
70
68
|
{% endif %}
|
|
71
69
|
|
|
72
70
|
{{ content }}
|
data/_sass/lpm/_variables.sass
CHANGED
|
@@ -6,3 +6,14 @@ $gutter-width: 20px
|
|
|
6
6
|
$breakpoint-xs: 600px
|
|
7
7
|
$breakpoint-sm: 769px
|
|
8
8
|
$breakpoint-md: 1024px
|
|
9
|
+
|
|
10
|
+
// TODO: Diese Datei sollten wir später loswerden, damit alles über theme/colors.sass läuft.
|
|
11
|
+
|
|
12
|
+
$happy-give: #FF6F6C
|
|
13
|
+
$good-choice: #AECFD1
|
|
14
|
+
$light-sky: #4597A2
|
|
15
|
+
$mindful-way: #4E414B
|
|
16
|
+
$peaceful-step: #EDEED0
|
|
17
|
+
$tolerant-turn: #6D2C64
|
|
18
|
+
$open-mind: #FFB38C
|
|
19
|
+
$sunny-day: #F6CE46
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: betterplace-content
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.5.
|
|
4
|
+
version: 0.5.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- betterplace.org Developers
|
|
@@ -72,8 +72,10 @@ files:
|
|
|
72
72
|
- _includes/searchbar-en.html
|
|
73
73
|
- _includes/searchform.html
|
|
74
74
|
- _includes/sharing.html
|
|
75
|
-
- _includes/subnavi-de.html
|
|
76
|
-
- _includes/subnavi-en.html
|
|
75
|
+
- _includes/subnavi-default-de.html
|
|
76
|
+
- _includes/subnavi-default-en.html
|
|
77
|
+
- _includes/subnavi-landingpages-de.html
|
|
78
|
+
- _includes/subnavi-landingpages-en.html
|
|
77
79
|
- _layouts/default.html
|
|
78
80
|
- _layouts/error404.html
|
|
79
81
|
- _layouts/help.html
|