jekyll-theme-pirati 1.1.1 → 1.2.0
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/{article-list → articles}/featured_article.html +20 -19
- data/_includes/articles/hp_article.html +41 -0
- data/_includes/articles/list_3col.html +22 -0
- data/_includes/articles/pagination.html +27 -0
- data/_includes/{article-list → articles}/standard_article.html +18 -16
- data/_includes/contacts/basic_contacts.html +54 -0
- data/_includes/contacts/residance.html +17 -0
- data/_includes/footer.html +1 -1
- data/_includes/people/list-group.html +12 -0
- data/_includes/people/list_2col.html +28 -0
- data/_includes/people/list_group.html +12 -0
- data/_includes/people/profile_badge.html +0 -2
- data/_includes/right-bar/bar_cal.html +24 -24
- data/_includes/right-bar/bar_fb.html +23 -23
- data/_includes/right-bar/bar_tw.html +15 -15
- data/_layouts/contacts.html +66 -0
- data/_layouts/post.html +15 -22
- data/_sass/components/banner.scss +74 -74
- data/_sass/components/pagination.scss +9 -66
- data/assets/img/brand/logo-round.svg +104 -104
- data/assets/img/brand/logo_napis.svg +48 -48
- data/assets/img/brand/logow.svg +19 -19
- metadata +13 -6
- data/_includes/article-list/list-3col.html +0 -55
- data/_includes/article-list/pagination.html +0 -36
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8336572f23631327d84be643ae77b1486fa4118c9af217fc4c0e06605036d6fb
|
|
4
|
+
data.tar.gz: 01e410893b83a16e45f4cd8813f01ba48dfd2014009ec4217a0066c12be48e50
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7410e40e0d239d68d03cdb58fa5781945f56e2402ee57adc9cc77706fa0513323658321594c45ee9d30441f45d8b63d95c7fd2f07dba64c05545b55a35c69c4d
|
|
7
|
+
data.tar.gz: 7ff694b99bbe738520e8c75c04599c951bef5afdc49ecc300686be9356b45b20fd03c7d5fd9b504be35295fcce3c03cfa242a60a178f600794472445459d5da1
|
|
@@ -1,55 +1,56 @@
|
|
|
1
1
|
<article itemtype="http://schema.org/BlogPosting" class="c-BlogPosting c-BlogPosting--featured c-BlogPosting--primary" itemscope="">
|
|
2
|
-
<link itemprop="mainEntityOfPage" href="
|
|
2
|
+
<link itemprop="mainEntityOfPage" href="{{ include.article.url | absolute_url }}">
|
|
3
3
|
<div class="c-BlogPosting-contentWrapper u-cf">
|
|
4
4
|
<div class="c-BlogPosting-photoBox">
|
|
5
5
|
<!-- BlogPosting image -->
|
|
6
|
-
<
|
|
7
|
-
<
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
6
|
+
<a href="{{ include.article.url | relative_url }}">
|
|
7
|
+
<div itemprop="image" itemtype="http://schema.org/ImageObject" class="c-BlogPosting__image" itemscope="">
|
|
8
|
+
<img src="{{ include.article.image | relative_url }}" alt="{{ include.article.title }}">
|
|
9
|
+
<meta itemprop="url" content="{{ include.article.image | relative_url }}">
|
|
10
|
+
</div>
|
|
11
|
+
</a>
|
|
11
12
|
</div>
|
|
12
13
|
<div class="c-BlogPosting-infoBox">
|
|
13
14
|
<!-- Date published -->
|
|
14
15
|
<span itemprop="description" class="c-BlogPosting__datePublished">
|
|
15
|
-
<i class="fa fa-calendar-o" aria-hidden="true"></i> {{article.date | date: "%d.%m.%Y" }}
|
|
16
|
-
<meta itemprop="datePublished" content="{{article.date | date_to_xmlschema }}">
|
|
17
|
-
<meta itemprop="dateModified" content=""> </span>
|
|
16
|
+
<i class="fa fa-calendar-o" aria-hidden="true"></i> {{ include.article.date | date: "%d.%m.%Y" }}
|
|
17
|
+
<meta itemprop="datePublished" content="{{ include.article.date | date_to_xmlschema }}">
|
|
18
18
|
<br class="hide-for-medium">
|
|
19
19
|
<!-- Authors -->
|
|
20
20
|
<span itemprop="author" itemtype="http://schema.org/Person" class="c-BlogPosting__authors" itemscope="">
|
|
21
21
|
<i class="fa fa-user" aria-hidden="true"></i>
|
|
22
|
-
<span itemprop="name" class="c-BlogPosting-excerpt__author">{{article.author}}</span>
|
|
22
|
+
<span itemprop="name" class="c-BlogPosting-excerpt__author">{{ include.article.author }}</span>
|
|
23
23
|
</span>
|
|
24
24
|
</div>
|
|
25
25
|
<div class="c-BlogPosting-contentBox">
|
|
26
26
|
<!-- Headline -->
|
|
27
27
|
<h1 itemprop="headline" class="c-BlogPosting__title">
|
|
28
|
-
<a href="{{article.url | relative_url }}" itemprop="url">{{article.title}}</a>
|
|
28
|
+
<a href="{{ include.article.url | relative_url }}" itemprop="url">{{ include.article.title }}</a>
|
|
29
29
|
</h1>
|
|
30
30
|
<!-- BlogPosting description-->
|
|
31
31
|
<div itemprop="description" class="c-BlogPosting-content">
|
|
32
|
-
<p>{{ article.excerpt | truncatewords: 45 }}</p>
|
|
32
|
+
<p>{{ include.article.excerpt | truncatewords: 45 | strip_html }}</p>
|
|
33
33
|
</div>
|
|
34
|
-
<a href="{{article.url | relative_url}}" class="c-BlogPosting-excerpt-readMore">Přečíst celý článek ›</a>
|
|
34
|
+
<a href="{{ include.article.url | relative_url }}" class="c-BlogPosting-excerpt-readMore">Přečíst celý článek ›</a>
|
|
35
35
|
</div>
|
|
36
36
|
<!-- Publisher -->
|
|
37
37
|
<div itemprop="publisher" itemtype="http://schema.org/Organization" class="u-hidden" itemscope="">
|
|
38
38
|
<div itemprop="logo" itemtype="http://schema.org/ImageObject" itemscope="">
|
|
39
|
-
|
|
40
|
-
|
|
39
|
+
<meta itemprop="url" content="{{ 'images/brand/logo.svg' | relative_url }}">
|
|
40
|
+
</div>
|
|
41
|
+
<meta itemprop="name" content="Česká pirátská strana">
|
|
42
|
+
</div>
|
|
41
43
|
</div>
|
|
42
44
|
<div class="c-BlogPosting-infoBox u-hidden">
|
|
43
45
|
<!-- Date published -->
|
|
44
46
|
<span itemprop="description" class="c-BlogPosting__datePublished">
|
|
45
|
-
<i class="fa fa-calendar-o" aria-hidden="true"></i> {{article.date | date: "%d.%m.%Y"}}
|
|
46
|
-
<meta itemprop="
|
|
47
|
-
<meta itemprop="datePublished" content=""> </span>
|
|
47
|
+
<i class="fa fa-calendar-o" aria-hidden="true"></i> {{ include.article.date | date: "%d.%m.%Y" }}
|
|
48
|
+
<meta itemprop="datePublished" content="{{ include.article.date | date_to_xmlschema }}">
|
|
48
49
|
<br class="hide-for-medium">
|
|
49
50
|
<!-- Authors -->
|
|
50
51
|
<span itemprop="author" itemtype="http://schema.org/Person" class="c-BlogPosting__authors" itemscope="">
|
|
51
52
|
<i class="fa fa-user" aria-hidden="true"></i>
|
|
52
|
-
<span itemprop="name" class="c-BlogPosting__author"
|
|
53
|
+
<span itemprop="name" class="c-BlogPosting__author">{{ include.article.author }}</span>
|
|
53
54
|
</span>
|
|
54
55
|
</div>
|
|
55
56
|
</article>
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
<article itemtype="http://schema.org/BlogPosting" class="c-BlogPosting-excerpt" itemscope="">
|
|
2
|
+
<link itemprop="mainEntityOfPage" href="http://insertshownpagelinkhere.com">
|
|
3
|
+
<div class="c-BlogPosting-excerpt-contentWrapper u-cf">
|
|
4
|
+
<div class="c-BlogPosting-excerpt-photoBox">
|
|
5
|
+
<!-- BlogPosting image -->
|
|
6
|
+
<div itemprop="image" itemtype="http://schema.org/ImageObject" class="c-BlogPosting-excerpt__image" itemscope="">
|
|
7
|
+
<a href="{{ include.article.url | relative_url }}">
|
|
8
|
+
<img src="{{ include.article.image | relative_url }}" alt="{{ include.article.title }}">
|
|
9
|
+
</a>
|
|
10
|
+
<meta itemprop="url" content="{{ include.article.image | relative_url }}">
|
|
11
|
+
</div>
|
|
12
|
+
</div>
|
|
13
|
+
<div class="c-BlogPosting-excerpt-contentBox">
|
|
14
|
+
<!-- Headline -->
|
|
15
|
+
<h2 itemprop="headline" class="c-BlogPosting-excerpt__title">
|
|
16
|
+
<a href="{{ include.article.url | relative_url }}" itemprop="url">{{ include.article.title }}</a>
|
|
17
|
+
</h2>
|
|
18
|
+
<!-- BlogPosting description-->
|
|
19
|
+
<div itemprop="description" class="c-BlogPosting-excerpt-content">{{ include.article.excerpt | truncatewords: 33 }} </div>
|
|
20
|
+
<a href="{{ include.article.url | relative_url }}" class="c-BlogPosting-excerpt-readMore">Přečíst celý článek ›</a>
|
|
21
|
+
</div>
|
|
22
|
+
<!-- Publisher -->
|
|
23
|
+
<div itemprop="publisher" itemtype="http://schema.org/Organization" class="u-hidden" itemscope="">
|
|
24
|
+
<div itemprop="logo" itemtype="http://schema.org/ImageObject" itemscope="">
|
|
25
|
+
<meta itemprop="url" content="{{ 'assets/img/brand/logo.svg' | relative_url }}"> </div>
|
|
26
|
+
<meta itemprop="name" content="Česká pirátská strana"> </div>
|
|
27
|
+
</div>
|
|
28
|
+
<div class="c-BlogPosting-excerpt-infoBox">
|
|
29
|
+
<!-- Date published -->
|
|
30
|
+
<span itemprop="description" class="c-BlogPosting-excerpt__datePublished">
|
|
31
|
+
<i class="fa fa-calendar-o" aria-hidden="true"></i> {{ include.article.date | date: "%d.%m.%Y" }}
|
|
32
|
+
<meta itemprop="datePublished" content="{{ include.article.date | date_to_xmlschema }}">
|
|
33
|
+
<meta itemprop="dateModified" content=""> </span>
|
|
34
|
+
<br class="hide-for-medium">
|
|
35
|
+
<!-- Authors -->
|
|
36
|
+
<span itemprop="author" itemtype="http://schema.org/Person" class="c-BlogPosting-excerpt__authors" itemscope="">
|
|
37
|
+
<i class="fa fa-user" aria-hidden="true"></i>
|
|
38
|
+
<span itemprop="name" class="c-BlogPosting-excerpt__author">{{ include.article.author }}</span>
|
|
39
|
+
<br class="hide-for-medium"> </span>
|
|
40
|
+
</div>
|
|
41
|
+
</article>
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
{% assign close = close | minus: 2 | modulo: 3 %}
|
|
2
|
+
|
|
3
|
+
{% for article in include.posts offset: 0 %}
|
|
4
|
+
{% assign x = forloop.index | modulo: 3 %}
|
|
5
|
+
{% if x == 1 %}
|
|
6
|
+
<div class="row o-section o-section-block--divided-small o-section-block--divided-small--border--tight o-section--noSpaceBottom-medium">
|
|
7
|
+
<div class="medium-12 large-12 columns">
|
|
8
|
+
<div class="o-section-inner">
|
|
9
|
+
<div class="row">
|
|
10
|
+
{% endif %}
|
|
11
|
+
{% include articles/standard_article.html article=article %}
|
|
12
|
+
{% if x == 0 %}
|
|
13
|
+
</div><!-- .row -->
|
|
14
|
+
</div><!-- .o-section-inner -->
|
|
15
|
+
</div><!-- .columns -->
|
|
16
|
+
</div><!-- .row -->
|
|
17
|
+
{% endif %}
|
|
18
|
+
{% endfor %}
|
|
19
|
+
|
|
20
|
+
{% if close != 0 %}
|
|
21
|
+
</div></div></div></div>
|
|
22
|
+
{% endif %}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
<ul class="pagination text-center" role="navigation" aria-label="Pagination">
|
|
2
|
+
{% if include.paginator.page != 1 %}
|
|
3
|
+
<li class="pagination-previous">
|
|
4
|
+
<a href="{{ include.paginator.previous_page_path }}" class="button expanded large" aria-label="Previous page">Předchozí</a>
|
|
5
|
+
</li>
|
|
6
|
+
{% endif %}
|
|
7
|
+
|
|
8
|
+
{% for page in (1..include.paginator.total_pages) %}
|
|
9
|
+
<li {% if page == include.paginator.page %} class="current"{% endif %}>
|
|
10
|
+
{% if page == include.paginator.page %}
|
|
11
|
+
<span>{{ forloop.index }}</span>
|
|
12
|
+
{% else %}
|
|
13
|
+
{% if forloop.index == 1 %}
|
|
14
|
+
<a href="/aktuality/" aria-label="Page {{ forloop.index }}">{{ forloop.index }}</a>
|
|
15
|
+
{% else %}
|
|
16
|
+
<a href="/aktuality/{{forloop.index}}/" aria-label="Page {{ forloop.index }}">{{ forloop.index }}</a>
|
|
17
|
+
{% endif %}
|
|
18
|
+
{% endif %}
|
|
19
|
+
</li>
|
|
20
|
+
{% endfor %}
|
|
21
|
+
|
|
22
|
+
{% if include.paginator.page != include.paginator.total_pages %}
|
|
23
|
+
<li class="pagination-next">
|
|
24
|
+
<a href="{{ include.paginator.next_page_path }}" class="button expanded large" aria-label="Next page">Další</a>
|
|
25
|
+
</li>
|
|
26
|
+
{% endif %}
|
|
27
|
+
</ul>
|
|
@@ -1,45 +1,47 @@
|
|
|
1
1
|
<div class="medium-12 large-4 columns">
|
|
2
|
-
<!--
|
|
2
|
+
<!-- include.article -->
|
|
3
3
|
<article itemtype="http://schema.org/BlogPosting" class="c-BlogPosting c-BlogPosting--featured c-BlogPosting-excerpt--nospace" itemscope="">
|
|
4
|
-
<link itemprop="mainEntityOfPage" href="
|
|
4
|
+
<link itemprop="mainEntityOfPage" href="{{ include.article.url | absolute_url }}">
|
|
5
5
|
<div class="c-BlogPosting-contentWrapper u-cf">
|
|
6
6
|
<div class="c-BlogPosting-photoBox">
|
|
7
7
|
<!-- BlogPosting image -->
|
|
8
|
-
<
|
|
9
|
-
<
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
8
|
+
<a href="{{ include.article.url | relative_url }}">
|
|
9
|
+
<div itemprop="image" itemtype="http://schema.org/ImageObject" class="c-BlogPosting__image" itemscope="">
|
|
10
|
+
<img src="{{ include.article.image | relative_url }}" alt="{{ include.article.title }}">
|
|
11
|
+
<meta itemprop="url" content="{{ include.article.image | relative_url }}">
|
|
12
|
+
</div>
|
|
13
|
+
</a>
|
|
13
14
|
</div>
|
|
14
15
|
<div class="c-BlogPosting-infoBox">
|
|
15
16
|
<!-- Date published -->
|
|
16
17
|
<span itemprop="description" class="c-BlogPosting__datePublished">
|
|
17
|
-
|
|
18
|
-
<meta itemprop="datePublished" content="{{article.date | date_to_xmlschema }}">
|
|
19
|
-
<meta itemprop="dateModified" content=""> </span>
|
|
18
|
+
<i class="fa fa-calendar-o" aria-hidden="true"></i> {{ include.article.date | date: "%d.%m.%Y" }}
|
|
19
|
+
<meta itemprop="datePublished" content="{{include.article.date | date_to_xmlschema }}">
|
|
20
20
|
<br class="hide-for-medium">
|
|
21
21
|
<!-- Authors -->
|
|
22
22
|
<span itemprop="author" itemtype="http://schema.org/Person" class="c-BlogPosting__authors" itemscope="">
|
|
23
23
|
<i class="fa fa-user" aria-hidden="true"></i>
|
|
24
|
-
<span itemprop="name" class="c-BlogPosting-excerpt__author">{{article.author}}</span>
|
|
24
|
+
<span itemprop="name" class="c-BlogPosting-excerpt__author">{{ include.article.author }}</span>
|
|
25
25
|
</span>
|
|
26
26
|
</div>
|
|
27
27
|
<div class="c-BlogPosting-contentBox">
|
|
28
28
|
<!-- Headline -->
|
|
29
29
|
<h1 itemprop="headline" class="c-BlogPosting__title">
|
|
30
|
-
<a href="{{article.url | relative_url}}" itemprop="url">{{article.title}}</a>
|
|
30
|
+
<a href="{{include.article.url | relative_url}}" itemprop="url">{{ include.article.title }}</a>
|
|
31
31
|
</h1>
|
|
32
32
|
<!-- BlogPosting description-->
|
|
33
33
|
<div itemprop="description" class="c-BlogPosting-content">
|
|
34
|
-
<p>{{ article.excerpt | truncatewords: 45 }}</p>
|
|
34
|
+
<p>{{ include.article.excerpt | truncatewords: 45 | strip_html }}</p>
|
|
35
35
|
</div>
|
|
36
|
-
<a href="{{article.url | relative_url}}" class="c-BlogPosting-excerpt-readMore">Přečíst celý článek ›</a>
|
|
36
|
+
<a href="{{ include.article.url | relative_url }}" class="c-BlogPosting-excerpt-readMore">Přečíst celý článek ›</a>
|
|
37
37
|
</div>
|
|
38
38
|
<!-- Publisher -->
|
|
39
39
|
<div itemprop="publisher" itemtype="http://schema.org/Organization" class="u-hidden" itemscope="">
|
|
40
40
|
<div itemprop="logo" itemtype="http://schema.org/ImageObject" itemscope="">
|
|
41
|
-
<meta itemprop="url" content="images/brand/logo.svg">
|
|
42
|
-
|
|
41
|
+
<meta itemprop="url" content="{{ 'images/brand/logo.svg' | relative_url }}">
|
|
42
|
+
</div>
|
|
43
|
+
<meta itemprop="name" content="Česká pirátská strana">
|
|
44
|
+
</div>
|
|
43
45
|
</div>
|
|
44
46
|
</article>
|
|
45
47
|
</div>
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
<h2>Základní údaje</h2>
|
|
2
|
+
<table>
|
|
3
|
+
<tbody>
|
|
4
|
+
<tr>
|
|
5
|
+
<td class="cell-description">
|
|
6
|
+
<i class="cell-icon fa fa-envelope"></i>
|
|
7
|
+
<span class="cell-text">Emailová adresa:</span>
|
|
8
|
+
</td>
|
|
9
|
+
<td>
|
|
10
|
+
<a href="mailto:{{ site.organization.email }}">{{ site.organization.email }}</a>
|
|
11
|
+
</td>
|
|
12
|
+
</tr>
|
|
13
|
+
<tr>
|
|
14
|
+
<td class="cell-description">
|
|
15
|
+
<i class="cell-icon fa fa-envelope"></i>
|
|
16
|
+
<span class="cell-text">Podatelna (Redmine):</span>
|
|
17
|
+
</td>
|
|
18
|
+
<td>
|
|
19
|
+
<a href="{{ site.organization.redmineLink }}">podatelna</a>
|
|
20
|
+
</td>
|
|
21
|
+
</tr>
|
|
22
|
+
<tr>
|
|
23
|
+
<td class="cell-description">
|
|
24
|
+
<i class="cell-icon fa fa-phone"></i>
|
|
25
|
+
<span class="cell-text">Telefonický kontakt</span>
|
|
26
|
+
</td>
|
|
27
|
+
<td><a href="tel:{{ site.organization.phone }}">{{ site.organization.phone }}</a></td>
|
|
28
|
+
</tr>
|
|
29
|
+
<tr>
|
|
30
|
+
<td class="cell-description">
|
|
31
|
+
<i class="cell-icon fa fa-desktop"></i>
|
|
32
|
+
<span class="cell-text">Celostátní web</span>
|
|
33
|
+
</td>
|
|
34
|
+
<td>
|
|
35
|
+
<a href="https://www.pirati.cz">www.pirati.cz</a>
|
|
36
|
+
</td>
|
|
37
|
+
</tr>
|
|
38
|
+
<tr>
|
|
39
|
+
<td class="cell-description">
|
|
40
|
+
<i class="cell-icon fa fa-files-o"></i>
|
|
41
|
+
<span class="cell-text">Datová schránka </span>
|
|
42
|
+
</td>
|
|
43
|
+
<td> b2i4r6j </td>
|
|
44
|
+
</tr>
|
|
45
|
+
<tr>
|
|
46
|
+
<td class="cell-description">
|
|
47
|
+
<i class="cell-icon fa fa-university"></i>
|
|
48
|
+
<span class="cell-text">Transparentní účty</span>
|
|
49
|
+
</td>
|
|
50
|
+
<td> 2100048174/2010 a <a href="https://wiki.pirati.cz/fo/seznam_uctu">další účty</a> </td>
|
|
51
|
+
</tr>
|
|
52
|
+
|
|
53
|
+
</tbody>
|
|
54
|
+
</table>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<h2>Sídlo a kontaktní centrum</h2>
|
|
2
|
+
<div class="o-media o-media--top">
|
|
3
|
+
{% if site.organization.residenceImg %}
|
|
4
|
+
<div class="o-media__image">
|
|
5
|
+
<img src="{{ site.organization.residenceImg | relative_url }}" alt="Sídlo">
|
|
6
|
+
</div>
|
|
7
|
+
{% endif %}
|
|
8
|
+
<div class="o-media__body">
|
|
9
|
+
<h3>{{ site.organization.name }}</h3>
|
|
10
|
+
<p>{{ site.organization.address | newline_to_br }}</p>
|
|
11
|
+
{% if site.organization.mapLink %}
|
|
12
|
+
<p>
|
|
13
|
+
<a href="{{ site.organization.mapLink }}">Zobrazit mapu ›</a>
|
|
14
|
+
</p>
|
|
15
|
+
{% endif %}
|
|
16
|
+
</div>
|
|
17
|
+
</div>
|
data/_includes/footer.html
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<div class="text-right show-for-medium-up hide-for-print">
|
|
2
|
-
|
|
2
|
+
<a href="{{ site.data.links.group.github_repository }}edit/{{ site.data.links.group.github_branch}}/{{ page.path }}" class="label secondary" style="background-color:#bbb">
|
|
3
3
|
<i class="fa fa-pencil"></i>
|
|
4
4
|
Navrhni úpravu</a>
|
|
5
5
|
</div>
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
{% if team.size > 0 %}
|
|
2
|
+
<ul class="c-simple-accordion" data-accordion="" data-options="allowAllClosed: true">
|
|
3
|
+
<li class="c-simple-accordion-item is-active" data-accordion-item="">
|
|
4
|
+
<a href="#{{team_shortcut}}" class="c-simple-accordion-title">
|
|
5
|
+
{{ team_name }}
|
|
6
|
+
</a>
|
|
7
|
+
<div id="{{team_shortcut}}" class="c-simple-accordion-content" data-tab-content="">
|
|
8
|
+
{% include people/list-2col.html param=team %}
|
|
9
|
+
</div>
|
|
10
|
+
</li>
|
|
11
|
+
</ul>
|
|
12
|
+
{% endif %}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
{% comment %}
|
|
2
|
+
Dvou sloupcové zobrazení:
|
|
3
|
+
týmů v /clenove
|
|
4
|
+
úspěchů v /otevrenost
|
|
5
|
+
{% endcomment %}
|
|
6
|
+
<div class="row">
|
|
7
|
+
{% if 1 == team.size %}
|
|
8
|
+
<div class="u-cf o-section-block o-section-block--divided-small o-section-block--divided-small--border">
|
|
9
|
+
{% assign item = team | first %}
|
|
10
|
+
<div class="large-6 small-12 small-collapse columns end o-section-mediumdown-divided-small">
|
|
11
|
+
{% include people/profile_badge.html item=item imgSize='big' imgStyle='round' %}
|
|
12
|
+
</div>
|
|
13
|
+
</div>
|
|
14
|
+
{% else %}
|
|
15
|
+
{% for item in team %}
|
|
16
|
+
{% assign loopindex = forloop.index | modulo: 2 %}
|
|
17
|
+
{% if loopindex == 1 %}
|
|
18
|
+
<div class="u-cf o-section-block o-section-block--divided-small o-section-block--divided-small--border">
|
|
19
|
+
{% endif %}
|
|
20
|
+
<div class="large-6 small-12 small-collapse columns end o-section-mediumdown-divided-small">
|
|
21
|
+
{% include people/profile_badge.html item=item imgSize='big' imgStyle='round' %}
|
|
22
|
+
</div>
|
|
23
|
+
{% if loopindex == 0 %}
|
|
24
|
+
</div>
|
|
25
|
+
{% endif %}
|
|
26
|
+
{% endfor %}
|
|
27
|
+
{% endif %}
|
|
28
|
+
</div>
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
{% if team.size > 0 %}
|
|
2
|
+
<ul class="c-simple-accordion" data-accordion="" data-options="allowAllClosed: true">
|
|
3
|
+
<li class="c-simple-accordion-item is-active" data-accordion-item="">
|
|
4
|
+
<a href="#{{team_shortcut}}" class="c-simple-accordion-title">
|
|
5
|
+
{{ team_name }}
|
|
6
|
+
</a>
|
|
7
|
+
<div id="{{team_shortcut}}" class="c-simple-accordion-content" data-tab-content="">
|
|
8
|
+
{% include people/list_2col.html param=team %}
|
|
9
|
+
</div>
|
|
10
|
+
</li>
|
|
11
|
+
</ul>
|
|
12
|
+
{% endif %}
|
|
@@ -9,9 +9,7 @@
|
|
|
9
9
|
<div class="o-media o-media-list">
|
|
10
10
|
<div class="o-media__image o-media__image--lgspace {% if include.imgStyle == 'round' %}o-media__image--round{% endif %}">
|
|
11
11
|
{% if include.imgSize != 'big' %}
|
|
12
|
-
<a href="{{ url }}">{% asset '{{ include.item.img }}' magick:resize='100x100^' magick:gravity='center' magick:crop='100x100+0+0' alt='{{ label }}' %}</a>
|
|
13
12
|
{% else %}
|
|
14
|
-
<a href="{{ url }}">{% asset '{{ include.item.img }}' magick:resize='165x165^' magick:gravity='center' magick:crop='165x165+0+0' alt='{{ label }}' %}</a>
|
|
15
13
|
{% endif %}
|
|
16
14
|
</div>
|
|
17
15
|
<div class="o-media__body">
|
|
@@ -1,24 +1,24 @@
|
|
|
1
|
-
<div class="o-section-block">
|
|
2
|
-
<ul class="c-widget-accordion c-widget-accordion--dark" data-accordion="" data-allow-all-closed="true">
|
|
3
|
-
<li class="c-widget-accordion-item is-active" data-accordion-item="">
|
|
4
|
-
<a href="#" class="c-widget-accordion-link">
|
|
5
|
-
<span class="c-widget-accordion__title">
|
|
6
|
-
{{ site.data.links.calendar.bar_title }}
|
|
7
|
-
</span>
|
|
8
|
-
<span class="c-widget-accordion__icon c-widget-accordion__icon c-widget-accordion__icon--bottom" aria-hidden="true">
|
|
9
|
-
<i class="fa fa-calendar-o fa-lg u-rotate-15"></i>
|
|
10
|
-
</span>
|
|
11
|
-
</a>
|
|
12
|
-
<div class="c-widget-accordion-content" data-tab-content="">
|
|
13
|
-
<iframe src="{{site.data.links.calendar.bar}}" style="border-width:0; width: 100%; height: 410px; border: 0; overflow: hidden;"></iframe>
|
|
14
|
-
|
|
15
|
-
{% if site.data.links.calendar.page %}
|
|
16
|
-
<div class="c-widget-accordion-content__cta">
|
|
17
|
-
<a class="dark expanded button large" href="{{ site.data.links.calendar.page | relative_url }}"> Zobrazit všechny akce </a>
|
|
18
|
-
</div>
|
|
19
|
-
{% endif %}
|
|
20
|
-
|
|
21
|
-
</div>
|
|
22
|
-
</li>
|
|
23
|
-
</ul>
|
|
24
|
-
</div>
|
|
1
|
+
<div class="o-section-block">
|
|
2
|
+
<ul class="c-widget-accordion c-widget-accordion--dark" data-accordion="" data-allow-all-closed="true">
|
|
3
|
+
<li class="c-widget-accordion-item is-active" data-accordion-item="">
|
|
4
|
+
<a href="#" class="c-widget-accordion-link">
|
|
5
|
+
<span class="c-widget-accordion__title">
|
|
6
|
+
{{ site.data.links.calendar.bar_title }}
|
|
7
|
+
</span>
|
|
8
|
+
<span class="c-widget-accordion__icon c-widget-accordion__icon c-widget-accordion__icon--bottom" aria-hidden="true">
|
|
9
|
+
<i class="fa fa-calendar-o fa-lg u-rotate-15"></i>
|
|
10
|
+
</span>
|
|
11
|
+
</a>
|
|
12
|
+
<div class="c-widget-accordion-content" data-tab-content="">
|
|
13
|
+
<iframe src="{{site.data.links.calendar.bar}}" style="border-width:0; width: 100%; height: 410px; border: 0; overflow: hidden;"></iframe>
|
|
14
|
+
|
|
15
|
+
{% if site.data.links.calendar.page %}
|
|
16
|
+
<div class="c-widget-accordion-content__cta">
|
|
17
|
+
<a class="dark expanded button large" href="{{ site.data.links.calendar.page | relative_url }}"> Zobrazit všechny akce </a>
|
|
18
|
+
</div>
|
|
19
|
+
{% endif %}
|
|
20
|
+
|
|
21
|
+
</div>
|
|
22
|
+
</li>
|
|
23
|
+
</ul>
|
|
24
|
+
</div>
|
|
@@ -1,23 +1,23 @@
|
|
|
1
|
-
<div class="o-section-block">
|
|
2
|
-
<ul class="c-widget-accordion" data-accordion="" data-allow-all-closed="true">
|
|
3
|
-
<li class="c-widget-accordion-item is-active" data-accordion-item="">
|
|
4
|
-
<a href="#" class="c-widget-accordion-link">
|
|
5
|
-
<span class="c-widget-accordion__title">Facebook</span>
|
|
6
|
-
<span class="c-widget-accordion__icon c-widget-accordion__icon c-widget-accordion__icon--bottom" aria-hidden="true">
|
|
7
|
-
<i class="fa fa-facebook fa-lg"></i>
|
|
8
|
-
</span>
|
|
9
|
-
</a>
|
|
10
|
-
<div class="c-widget-accordion-content" data-tab-content="">
|
|
11
|
-
<div class="fb-page" data-href="{{site.data.links.group.facebook_page}}" data-tabs="timeline" data-width="500" data-height="550" data-small-header="false" data-adapt-container-width="true" data-hide-cover="false" data-show-facepile="true">
|
|
12
|
-
<div class="fb-xfbml-parse-ignore">
|
|
13
|
-
<blockquote cite="{{site.data.links.group.facebook_page}}">
|
|
14
|
-
<a href="{{site.data.links.group.facebook_page}}">
|
|
15
|
-
Najdete nás na Facebooku:<br>
|
|
16
|
-
Česká pirátská strana - Praha</a>
|
|
17
|
-
</blockquote>
|
|
18
|
-
</div>
|
|
19
|
-
</div>
|
|
20
|
-
</div>
|
|
21
|
-
</li>
|
|
22
|
-
</ul>
|
|
23
|
-
</div>
|
|
1
|
+
<div class="o-section-block">
|
|
2
|
+
<ul class="c-widget-accordion" data-accordion="" data-allow-all-closed="true">
|
|
3
|
+
<li class="c-widget-accordion-item is-active" data-accordion-item="">
|
|
4
|
+
<a href="#" class="c-widget-accordion-link">
|
|
5
|
+
<span class="c-widget-accordion__title">Facebook</span>
|
|
6
|
+
<span class="c-widget-accordion__icon c-widget-accordion__icon c-widget-accordion__icon--bottom" aria-hidden="true">
|
|
7
|
+
<i class="fa fa-facebook fa-lg"></i>
|
|
8
|
+
</span>
|
|
9
|
+
</a>
|
|
10
|
+
<div class="c-widget-accordion-content" data-tab-content="">
|
|
11
|
+
<div class="fb-page" data-href="{{site.data.links.group.facebook_page}}" data-tabs="timeline" data-width="500" data-height="550" data-small-header="false" data-adapt-container-width="true" data-hide-cover="false" data-show-facepile="true">
|
|
12
|
+
<div class="fb-xfbml-parse-ignore">
|
|
13
|
+
<blockquote cite="{{site.data.links.group.facebook_page}}">
|
|
14
|
+
<a href="{{site.data.links.group.facebook_page}}">
|
|
15
|
+
Najdete nás na Facebooku:<br>
|
|
16
|
+
Česká pirátská strana - Praha</a>
|
|
17
|
+
</blockquote>
|
|
18
|
+
</div>
|
|
19
|
+
</div>
|
|
20
|
+
</div>
|
|
21
|
+
</li>
|
|
22
|
+
</ul>
|
|
23
|
+
</div>
|