jekyll-theme-pirati 8.0.0.pre.alpha4 → 8.0.0.pre.alpha5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_includes/calendar.html +1 -1
- data/_layouts/pirate-center.html +23 -19
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d4579a39ad0ccc0a34b4926136ba1276e86127253744f9319fd2447ae30574e0
|
4
|
+
data.tar.gz: 57896ad08ae0d7f68e79bf06348920d271089a47a643ac5feaa8ef8f9194eba1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4ad16a19f290d189d5d7b6e8176e3c2111b09adb806667e508a01e3a4ea2a719e752178e200922473aec1d67052efc3650a976721cbb3484c8128ce1f9eda83e
|
7
|
+
data.tar.gz: f64ac3a2ed684b90b83ec0c14c63fef7bb91b5b2d67cc0cd259ca8319a142938f3d8b8414d02471d1f89630dbe395b25a472ce17da4261f9a0a86e2cf5faf675
|
data/_includes/calendar.html
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
<div class="__js-root">
|
1
|
+
<div class="__js-root {{ include.classes }}">
|
2
2
|
{% if site.env.GOOGLE_CALENDAR_APIKEY and include.calendarId %}
|
3
3
|
<ui-calendar-google-provider v-slot="{ events, onShowMore, hasMore }" :calendar-id="'{{ include.calendarId }}'" :api-key="'{{ site.env.GOOGLE_CALENDAR_APIKEY }}'">
|
4
4
|
<ui-calendar-renderer
|
data/_layouts/pirate-center.html
CHANGED
@@ -31,32 +31,36 @@ layout: default
|
|
31
31
|
{% endif %}
|
32
32
|
|
33
33
|
<div class="lg:flex lg:space-x-8 xl:space-x-16">
|
34
|
-
<div class="lg:w-3/5 xl:w-2/3
|
35
|
-
|
34
|
+
<div class="lg:w-3/5 xl:w-2/3">
|
35
|
+
<div class="content-block">
|
36
|
+
{{ content }}
|
37
|
+
</div>
|
36
38
|
{% if page.calendarId or page.calendarPage %}
|
37
|
-
<h2>{{ page.calendarTitle | default: "Kalendář akcí" }}</h2>
|
38
|
-
{% include calendar.html calendarId=page.calendarId title=page.calendarTitle calendarPage=page.calendarPage hideBanner=true %}
|
39
|
+
<h2 class="head-heavy-sm mb-4 mt-4">{{ page.calendarTitle | default: "Kalendář akcí" }}</h2>
|
40
|
+
{% include calendar.html calendarId=page.calendarId title=page.calendarTitle calendarPage=page.calendarPage hideBanner=true classes="mb-4" %}
|
39
41
|
{% endif %}
|
40
42
|
</div>
|
41
43
|
<div class="pt-8 lg:w-2/5 xl:w-1/3 lg:pt-0">
|
42
44
|
<div class="lg:card lg:elevation-10">
|
43
|
-
<div class="lg:card__body
|
45
|
+
<div class="lg:card__body" itemprop="address" itemtype="https://schema.org/PostalAddress" itemscope>
|
46
|
+
<div class="content-block">
|
44
47
|
<h2>Kde to najdu?</h2>
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
<h2>Kontakt</h2>
|
48
|
+
{% if page.mapIframeLink %}
|
49
|
+
<iframe src="{{ page.mapIframeLink }}" width="100%" height="300" id="mapa-mobile" frameborder="0" style="border:0;" allowfullscreen="" aria-hidden="false" tabindex="0"></iframe>
|
50
|
+
{% endif %}
|
51
|
+
{% if page.address %}
|
52
|
+
<p>
|
53
|
+
{{ page.address | newline_to_br }}
|
54
|
+
</p>
|
55
|
+
{% endif %}
|
56
|
+
{% if page.addressNote %}
|
57
|
+
<p><small>{{ page.addressNote }}</small></p>
|
58
|
+
{% endif %}
|
59
|
+
<hr>
|
60
|
+
</div>
|
59
61
|
|
62
|
+
{% if page.contactPersons %}
|
63
|
+
<h2 class="head-heavy-sm mb-2">Kontakt</h2>
|
60
64
|
{% for contact in page.contactPersons %}
|
61
65
|
{% assign person = site.people | where_exp:"item","item.uid contains contact.id" | first %}
|
62
66
|
{% if forloop.first %}
|