jekyll-theme-pirati 1.1.1 → 1.2.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,15 +1,15 @@
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">Twitter</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-twitter fa-lg"></i>
8
- </span>
9
- </a>
10
- <div class="c-widget-accordion-content" data-tab-content="">
11
- <a class="twitter-timeline" href="https://twitter.com/{{site.tw}}" data-height="520">Tweets by @{{site.tw}}</a>
12
- </div>
13
- </li>
14
- </ul>
15
- </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">Twitter</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-twitter fa-lg"></i>
8
+ </span>
9
+ </a>
10
+ <div class="c-widget-accordion-content" data-tab-content="">
11
+ <a class="twitter-timeline" href="https://twitter.com/{{site.tw}}" data-height="520">Tweets by @{{site.tw}}</a>
12
+ </div>
13
+ </li>
14
+ </ul>
15
+ </div>
@@ -0,0 +1,66 @@
1
+ ---
2
+ layout: default
3
+ title: Kontaktní informace
4
+ ---
5
+
6
+ <div class="c-BasicPage">
7
+ <div class="c-BasicPage-content">
8
+ <div class="row o-section-block o-section-block--divided">
9
+ <div class="medium-12 large-12 columns">
10
+ <section class="o-section">
11
+ <div class="o-section-inner">
12
+ <main class="o-section-block">
13
+ <!-- Article -->
14
+ <article itemtype="http://schema.org/BlogPosting" class="c-BasicPage" itemscope="">
15
+ <!--<link itemprop="mainEntityOfPage" href="http://insertshownpagelinkhere.com">-->
16
+ <header class="c-BasicPage-header c-BasicPage-header--horizontal">
17
+ <h1 itemprop="headline" class="c-BasicPage__title"> Kontaktní informace </h1>
18
+ </header>
19
+ <div class="o-section-block o-section-block--fill">
20
+ <div class="u-cf">
21
+ <div class="medium-12 large-6 columns o-section-mediumdown-divided-small">
22
+ {{ content }}
23
+ </div>
24
+ <div class="medium-12 large-6 columns o-section-mediumdown-divided-small">
25
+ {% include contacts/basic_contacts.html %}
26
+ </div>
27
+ </div>
28
+ </div>
29
+ </article>
30
+ </main>
31
+ </div>
32
+ </section>
33
+ </div>
34
+ </div>
35
+ <hr>
36
+ <div class="row o-section-block o-section-block--divided">
37
+
38
+ <div class="medium-12 large-6 columns">
39
+ <section class="o-section o-section--spaceBot">
40
+ <div class="o-section-inner">
41
+ <div class="o-section-block">
42
+ <h2>Kontaktní osoba</h2>
43
+ {% assign contactPersons = site.people | where_exp: "item","item.categories contains 'kontaktni_osoba'" | sort:"ordpak" %}
44
+ {% for person in contactPersons %}
45
+ {% include people/profile_badge.html item=person imgSize='big' %}
46
+ {% endfor %}
47
+ </div>
48
+ </div>
49
+ </section>
50
+ </div>
51
+
52
+ {% if page.residence %}
53
+ <div class="medium-12 large-6 columns">
54
+ <div class="o-section o-section--spaceBot">
55
+ <div class="o-section-inner">
56
+ <div class="o-section-block">
57
+ {% include contacts/residance.html %}
58
+ </div>
59
+ </div>
60
+ </div>
61
+ </div>
62
+ {% endif %}
63
+
64
+ </div>
65
+ </div>
66
+ </div>
@@ -11,19 +11,28 @@ layout: default
11
11
  <div class="o-section-inner">
12
12
  <div class="medium-12 columns">
13
13
  <!-- Article -->
14
- <link itemprop="mainEntityOfPage" href="http://insertshownpagelinkhere.com">
14
+ <link itemprop="mainEntityOfPage" href="{{ page.url | absolute_url }}">
15
15
  <header class="c-BasicPage-header">
16
- <h1 itemprop="headline" class="c-BasicPage__title"> {{page.title}} </h1>
16
+ <h1 itemprop="headline" class="c-BasicPage__title"> {{ page.title }} </h1>
17
17
  <div class="c-BasicPage__meta">
18
18
  <span itemprop="description" class="c-BasicPage__datePublished">
19
- <i class="fa fa-calendar-o" aria-hidden="true"></i> {{page.date | date: "%d. %m. %Y" }}
19
+ <i class="fa fa-calendar-o" aria-hidden="true"></i> {{ page.date | date: "%d. %m. %Y" }}
20
20
  <meta itemprop="datePublished" content="{{page.date | date_to_xmlschema }}">
21
21
  <meta itemprop="dateModified" content=""> </span>
22
22
  <br class="hide-for-medium">
23
23
  <!-- Authors -->
24
24
  <span itemprop="author" itemtype="http://schema.org/Person" class="c-BasicPage__authors" itemscope="">
25
25
  <i class="fa fa-user" aria-hidden="true"></i>
26
- <span itemprop="name" class="c-BlogPosting-excerpt__author">{{page.author}}</span>
26
+ <span itemprop="name" class="c-BlogPosting-excerpt__author">
27
+ {% if page.authorId %}
28
+ {% assign author = site.people | where_exp:"item","item.uid contains page.authorId" | first %}
29
+ <a href={{author.url}}>
30
+ {{author.name}}
31
+ </a>
32
+ {% else %}
33
+ {{ page.author }}
34
+ {% endif %}
35
+ </span>
27
36
  </span>
28
37
  {% if page.tags %}
29
38
  <div class="c-BasicPage-tags">
@@ -31,7 +40,7 @@ layout: default
31
40
  <ul class="c-tag-list">
32
41
  {% for tag in page.tags %}
33
42
  <li>
34
- <a href="{{ tag | prepend: '/tags/#' | relative_url }}" class="c-tag">{{tag}}</a>
43
+ <a href="{{ tag | prepend: '/tags/#' | relative_url }}" class="c-tag">{{ tag }}</a>
35
44
  </li>
36
45
  {% endfor %}
37
46
  </ul>
@@ -68,7 +77,7 @@ layout: default
68
77
  <div class="o-section-inner">
69
78
  <div class="medium-12 large-8 columns">
70
79
  <div itemprop="description" class="c-BasicPage-content">
71
- {{content}}
80
+ {{ content }}
72
81
  </div>
73
82
  </div>
74
83
  <div class="medium-12 large-4 columns">
@@ -84,22 +93,6 @@ layout: default
84
93
  </div>
85
94
  </div>
86
95
  </div>
87
- <!--
88
- <div class="c-widget-simple-text c-widget-simple-text--stacked" id="relatives-box">
89
- <div class="c-widget-share-box-headline u-center">Kam dále?</div>
90
- <div class="c-widget-share-box-content">
91
- <ul id="relatives" />
92
- </div>
93
- </div>
94
- -->
95
- <a href="//dary.pirati.cz" target="_blank">
96
- <div class="c-widget-share-box c-widget-share-box--directions c-widget-simple-text--stacked">
97
- <div class="c-widget-share-box-headline u-center">Kam dále?</div>
98
- <div class="c-widget-share-box-content u-center">
99
- Podpořte nás!
100
- </div>
101
- </div>
102
- </a>
103
96
  </div>
104
97
  </div>
105
98
  </div>
@@ -1,75 +1,75 @@
1
- $bn-ns: '';
2
-
3
- .#{$bn-ns}c-banner {
4
- background: #f3f3f3;
5
- overflow-x: hidden;
6
- }
7
-
8
- .#{$bn-ns}c-banner-container {
9
- padding-left: 1.2rem;
10
- padding-right: 1.2rem;
11
-
12
- @include breakpoint(large) {
13
- padding-left: 10px;
14
- padding-right: 10px;
15
- }
16
-
17
- @include breakpoint(mobile down) {
18
- padding-left: 0;
19
- padding-right: 0;
20
- }
21
- }
22
-
23
- @include breakpoint(large) {
24
- .#{$bn-ns}c-banner .#{$bn-ns}c-banner-primary-section {
25
- @include grid-column(6);
26
- }
27
-
28
- .#{$bn-ns}c-banner .#{$bn-ns}c-banner-secondary-section {
29
- @include grid-column(6);
30
- }
31
- }
32
-
33
- .#{$bn-ns}c-banner {
34
-
35
- @include breakpoint(medium down) {
36
-
37
- .#{$bn-ns}c-banner-section +
38
- .#{$bn-ns}c-banner-section {
39
- margin-top: 35px;
40
- }
41
-
42
- }
43
-
44
- @include breakpoint(mobile down) {
45
-
46
- .#{$bn-ns}c-banner-section +
47
- .#{$bn-ns}c-banner-section {
48
- margin-top: 10px;
49
- }
50
-
51
- }
52
-
53
- }
54
-
55
- .#{$bn-ns}c-banner {
56
-
57
- .#{$bn-ns}c-banner-section-row {
58
- @include clearfix;
59
- }
60
-
61
- .#{$bn-ns}c-banner-section-row +
62
- .#{$bn-ns}c-banner-section-row {
63
- margin-top: 35px;
64
- }
65
-
66
- @include breakpoint(mobile down) {
67
-
68
- .#{$bn-ns}c-banner-section-row +
69
- .#{$bn-ns}c-banner-section-row {
70
- margin-top: 10px;
71
- }
72
-
73
- }
74
-
1
+ $bn-ns: '';
2
+
3
+ .#{$bn-ns}c-banner {
4
+ background: #f3f3f3;
5
+ overflow-x: hidden;
6
+ }
7
+
8
+ .#{$bn-ns}c-banner-container {
9
+ padding-left: 1.2rem;
10
+ padding-right: 1.2rem;
11
+
12
+ @include breakpoint(large) {
13
+ padding-left: 10px;
14
+ padding-right: 10px;
15
+ }
16
+
17
+ @include breakpoint(mobile down) {
18
+ padding-left: 0;
19
+ padding-right: 0;
20
+ }
21
+ }
22
+
23
+ @include breakpoint(large) {
24
+ .#{$bn-ns}c-banner .#{$bn-ns}c-banner-primary-section {
25
+ @include grid-column(6);
26
+ }
27
+
28
+ .#{$bn-ns}c-banner .#{$bn-ns}c-banner-secondary-section {
29
+ @include grid-column(6);
30
+ }
31
+ }
32
+
33
+ .#{$bn-ns}c-banner {
34
+
35
+ @include breakpoint(medium down) {
36
+
37
+ .#{$bn-ns}c-banner-section +
38
+ .#{$bn-ns}c-banner-section {
39
+ margin-top: 35px;
40
+ }
41
+
42
+ }
43
+
44
+ @include breakpoint(mobile down) {
45
+
46
+ .#{$bn-ns}c-banner-section +
47
+ .#{$bn-ns}c-banner-section {
48
+ margin-top: 10px;
49
+ }
50
+
51
+ }
52
+
53
+ }
54
+
55
+ .#{$bn-ns}c-banner {
56
+
57
+ .#{$bn-ns}c-banner-section-row {
58
+ @include clearfix;
59
+ }
60
+
61
+ .#{$bn-ns}c-banner-section-row +
62
+ .#{$bn-ns}c-banner-section-row {
63
+ margin-top: 35px;
64
+ }
65
+
66
+ @include breakpoint(mobile down) {
67
+
68
+ .#{$bn-ns}c-banner-section-row +
69
+ .#{$bn-ns}c-banner-section-row {
70
+ margin-top: 10px;
71
+ }
72
+
73
+ }
74
+
75
75
  }
@@ -1,75 +1,18 @@
1
1
  .pagination {
2
- display: flex;
3
- align-items: center;
4
- flex-wrap: wrap;
5
- justify-content: center;
2
+ margin-top: 4rem;
6
3
 
7
- li {
8
- margin: 3px;
9
- align-items: center;
10
- flex-wrap: wrap;
11
- justify-content: center;
12
- min-width: 2.75rem;
13
- text-align: center;
14
- height: 3rem;
15
- line-height: 3rem; //.disabled v sobe nema <a>
16
-
17
- a {
18
- height: 3rem;
19
- line-height: 3rem;
20
- width: 100%;
21
- color: $primary-color;
22
- }
23
- a:hover {
24
- background: transparent;
25
- text-decoration: none;
26
- }
27
-
28
- @include breakpoint(mobile down) {
29
- height: 2.7rem;
30
- line-height: 2.7rem;
31
- margin: 1px;
32
-
33
- a {
34
- height: 2.7rem;
35
- line-height: 2.7rem;
36
- }
37
- }
38
-
39
- @if $pagination-mobile-items {
40
- display: flex;
41
- }
42
- @else {
43
- display: none;
44
-
45
- &:last-child,
46
- &:first-child {
47
- display: flex;
48
- }
49
-
50
- @include breakpoint(medium) {
51
- display: flex;
52
- }
53
- }
54
- }
55
-
56
- .pagination-previous,
57
- .pagination-next {
58
- background: $primary-color;
59
- font-size: 1.5rem; //.disabled v sobe nema <a>
60
- padding: 0 10px;
61
- a {
62
- text-decoration: none;
63
- color: #fefefe;
64
- }
65
- box-shadow: 0px 3px 2px #ececec;
4
+ @include breakpoint(mobile down) {
5
+ margin-top: 1rem;
66
6
  }
67
7
 
68
8
  a {
69
- text-decoration: underline;
9
+ padding: $button-padding;
10
+ color: $anchor-color;
70
11
  }
71
12
 
72
- .pagination-previous i,
73
- .pagination-next i {
13
+ .pagination-previous a,
14
+ .pagination-next a {
15
+ color: $button-color;
16
+ background-color: $button-fill;
74
17
  }
75
18
  }
@@ -1,104 +1,104 @@
1
- <?xml version="1.0" encoding="utf-8"?>
2
- <!-- Generator: Adobe Illustrator 15.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
- <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4
- <svg version="1.1" id="Vrstva_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
5
- width="850.394px" height="425.197px" viewBox="0 0 850.394 425.197" enable-background="new 0 0 850.394 425.197"
6
- xml:space="preserve">
7
- <g>
8
- <defs>
9
- <rect id="SVGID_1_" width="850.394" height="425.197"/>
10
- </defs>
11
- <clipPath id="SVGID_2_">
12
- <use xlink:href="#SVGID_1_" overflow="visible"/>
13
- </clipPath>
14
- <path clip-path="url(#SVGID_2_)" fill="#FFFFFF" d="M254.885,220.26c0,62.555-50.706,113.278-113.262,113.278
15
- c-62.552,0-113.277-50.724-113.277-113.278c0-62.553,50.725-113.276,113.277-113.276
16
- C204.179,106.984,254.885,157.708,254.885,220.26"/>
17
- <path clip-path="url(#SVGID_2_)" d="M141.623,311.816c-50.494,0-91.551-41.057-91.551-91.556c0-50.479,41.057-91.551,91.551-91.551
18
- c50.481,0,91.589,41.073,91.589,91.551C233.212,270.759,192.104,311.816,141.623,311.816 M213.151,148.72
19
- c-19.091-19.105-44.498-29.643-71.528-29.643c-26.992,0-52.403,10.538-71.555,29.643c-19.093,19.104-29.628,44.517-29.628,71.54
20
- c0,27.06,10.535,52.473,29.628,71.543c19.152,19.105,44.563,29.613,71.555,29.613c27.03,0,52.437-10.508,71.528-29.613
21
- c19.154-19.07,29.661-44.483,29.661-71.543C242.812,193.237,232.305,167.825,213.151,148.72"/>
22
- <path clip-path="url(#SVGID_2_)" d="M139.572,213.474c-3.085,14.675-19.089,22.305-28.432,28.657v-74.145
23
- C127.062,171.8,145.779,184.037,139.572,213.474 M111.14,160.066v-14.159h-8.858v16.357c-5.981,1.843-9.471,3.751-8.891,4.931
24
- c1.973-0.551,5.14-0.792,8.891-0.566v85.17c-9.018,17.647,3.976,44.661,3.976,44.661s-9.78-29.001,11.961-42.706
25
- c19.978-12.575,88.884-6.678,88.626-45.551C206.538,153.116,142.981,153.44,111.14,160.066"/>
26
- <path clip-path="url(#SVGID_2_)" d="M315.295,167.817c1.409,0.21,2.996,0.316,4.756,0.316c4.583,0,8.106-1.059,10.575-3.173
27
- c2.466-2.115,3.699-5.107,3.699-8.986c0-7.398-4.758-11.101-14.274-11.101c-1.55,0-3.137,0.177-4.756,0.528V167.817z
28
- M315.295,183.147v24.107h-20.617v-76.653c7.33-1.06,15.083-1.587,23.261-1.587c23.963,0,35.948,8.636,35.948,25.903
29
- c0,9.377-2.699,16.477-8.088,21.306c-5.393,4.829-13.271,7.241-23.632,7.241C319.417,183.463,317.127,183.357,315.295,183.147"/>
30
- </g>
31
- <rect x="363.609" y="130.072" width="23.261" height="77.18"/>
32
- <g>
33
- <defs>
34
- <rect id="SVGID_3_" width="850.394" height="425.197"/>
35
- </defs>
36
- <clipPath id="SVGID_4_">
37
- <use xlink:href="#SVGID_3_" overflow="visible"/>
38
- </clipPath>
39
- <path clip-path="url(#SVGID_4_)" d="M422.5,164.964h5.816c3.596,0,6.429-0.901,8.508-2.699c2.08-1.798,3.119-4.245,3.119-7.347
40
- c0-6.697-3.874-10.044-11.627-10.044c-2.259,0-4.196,0.177-5.816,0.528V164.964z M422.5,180.293v26.961h-20.618V130.6
41
- c9.162-1.059,18.326-1.586,27.49-1.586c21.146,0,31.72,7.929,31.72,23.791c0,4.438-1.377,8.563-4.124,12.37
42
- c-2.751,3.804-6.311,6.519-10.678,8.142v0.21c2.111,1.2,3.874,2.733,5.283,4.599c1.41,1.87,2.751,4.53,4.021,7.984l7.61,21.145
43
- h-21.676l-6.555-20.09c-0.775-2.465-1.759-4.228-2.959-5.285c-1.202-1.059-2.783-1.586-4.758-1.586H422.5z"/>
44
- </g>
45
- <path d="M496.933,176.591h13.957l-6.874-28.547h-0.212L496.933,176.591z M508.349,123.728h-16.914l10.571-19.03h23.261
46
- L508.349,123.728z M493.127,192.451l-3.489,14.803h-21.99l25.373-77.183h22.199l25.376,77.183h-22.413l-3.593-14.803H493.127z"/>
47
- <polygon points="602.552,130.07 602.552,147.515 581.62,147.515 581.62,207.251 560.051,207.251 560.051,147.515 539.114,147.515
48
- 539.114,130.07 "/>
49
- <g>
50
- <defs>
51
- <rect id="SVGID_5_" width="850.394" height="425.197"/>
52
- </defs>
53
- <clipPath id="SVGID_6_">
54
- <use xlink:href="#SVGID_5_" overflow="visible"/>
55
- </clipPath>
56
- <path clip-path="url(#SVGID_6_)" d="M662.502,150.688c-7.122-3.523-14.345-5.286-21.672-5.286c-3.316,0-5.816,0.583-7.51,1.745
57
- c-1.689,1.165-2.535,2.694-2.535,4.598c0,2.961,2.289,5.076,6.87,6.344c11.065,2.962,18.855,6.504,23.367,10.627
58
- c4.509,4.121,6.765,9.393,6.765,15.804c0,7.757-2.677,13.661-8.032,17.711c-5.358,4.053-13.43,6.082-24.213,6.082
59
- c-4.512,0-9.357-0.758-14.536-2.277c-5.179-1.513-9.324-3.397-12.426-5.653l4.758-16.39c3.596,2.469,7.489,4.406,11.687,5.816
60
- c4.19,1.41,8.05,2.115,11.573,2.115c6.344,0,9.518-2.292,9.518-6.874c0-2.959-2.82-5.249-8.46-6.873
61
- c-10.29-2.958-17.623-6.517-21.992-10.678c-4.367-4.157-6.553-9.41-6.553-15.754c0-6.977,2.674-12.511,8.036-16.6
62
- c5.354-4.086,12.898-6.13,22.625-6.13c10.43,0,19.241,1.762,26.433,5.285L662.502,150.688z"/>
63
- </g>
64
- <polygon points="700.248,162.848 700.457,162.848 720.336,130.07 744.654,130.07 720.336,167.078 745.71,207.251 721.392,207.251
65
- 700.457,171.305 700.248,171.305 700.248,207.251 679.101,207.251 679.101,130.07 700.248,130.07 "/>
66
- <path d="M778.383,176.591h13.956l-6.872-28.547h-0.214L778.383,176.591z M789.799,123.728h-16.913l10.569-19.03h23.26
67
- L789.799,123.728z M774.576,192.451l-3.49,14.803h-21.989l25.375-77.183h22.201l25.374,77.183h-22.415l-3.594-14.803H774.576z"/>
68
- <g>
69
- <defs>
70
- <rect id="SVGID_7_" width="850.394" height="425.197"/>
71
- </defs>
72
- <clipPath id="SVGID_8_">
73
- <use xlink:href="#SVGID_7_" overflow="visible"/>
74
- </clipPath>
75
- <path clip-path="url(#SVGID_8_)" d="M345.958,255.048c-7.122-3.522-14.346-5.288-21.677-5.288c-3.314,0-5.813,0.585-7.505,1.747
76
- c-1.692,1.164-2.537,2.695-2.537,4.597c0,2.963,2.288,5.076,6.871,6.344c11.066,2.963,18.854,6.504,23.367,10.627
77
- c4.508,4.122,6.765,9.394,6.765,15.808c0,7.753-2.679,13.656-8.032,17.709c-5.36,4.054-13.43,6.076-24.213,6.076
78
- c-4.512,0-9.359-0.755-14.539-2.269c-5.182-1.519-9.324-3.401-12.422-5.657l4.755-16.39c3.597,2.468,7.49,4.406,11.685,5.816
79
- c4.192,1.409,8.05,2.116,11.576,2.116c6.343,0,9.516-2.293,9.516-6.872c0-2.963-2.818-5.251-8.458-6.877
80
- c-10.293-2.955-17.62-6.519-21.992-10.677c-4.368-4.157-6.554-9.411-6.554-15.755c0-6.977,2.675-12.511,8.035-16.595
81
- c5.356-4.091,12.899-6.135,22.627-6.135c10.429,0,19.242,1.761,26.433,5.286L345.958,255.048z"/>
82
- </g>
83
- <polygon points="421.234,234.433 421.234,251.874 400.304,251.874 400.304,311.612 378.732,311.612 378.732,251.874
84
- 357.795,251.874 357.795,234.433 "/>
85
- <g>
86
- <defs>
87
- <rect id="SVGID_9_" width="850.394" height="425.197"/>
88
- </defs>
89
- <clipPath id="SVGID_10_">
90
- <use xlink:href="#SVGID_9_" overflow="visible"/>
91
- </clipPath>
92
- <path clip-path="url(#SVGID_10_)" d="M453.164,269.322h5.816c3.593,0,6.429-0.897,8.51-2.699c2.077-1.792,3.119-4.241,3.119-7.344
93
- c0-6.698-3.875-10.047-11.629-10.047c-2.259,0-4.195,0.18-5.816,0.528V269.322z M453.164,284.653v26.959h-20.618V234.96
94
- c9.163-1.056,18.327-1.586,27.49-1.586c21.146,0,31.721,7.93,31.721,23.787c0,4.442-1.378,8.563-4.124,12.372
95
- c-2.751,3.805-6.31,6.52-10.677,8.142v0.21c2.11,1.2,3.872,2.734,5.282,4.599c1.411,1.869,2.751,4.531,4.018,7.984l7.614,21.144
96
- h-21.675l-6.555-20.088c-0.776-2.466-1.766-4.23-2.961-5.285c-1.2-1.059-2.783-1.586-4.76-1.586H453.164z"/>
97
- </g>
98
- <path d="M528.652,280.95h13.958l-6.874-28.546h-0.213L528.652,280.95z M524.848,296.812l-3.49,14.8h-21.99l25.374-77.179h22.201
99
- l25.375,77.179h-22.412l-3.596-14.8H524.848z"/>
100
- <polygon points="624.653,276.724 624.865,276.724 624.865,234.433 645.482,234.433 645.482,311.612 624.865,311.612
101
- 601.817,269.325 601.605,269.325 601.605,311.612 580.99,311.612 580.99,234.433 601.605,234.433 "/>
102
- <path d="M683.439,280.95h13.955l-6.871-28.546h-0.209L683.439,280.95z M679.634,296.812l-3.489,14.8h-21.99l25.374-77.179h22.202
103
- l25.373,77.179h-22.41l-3.596-14.8H679.634z"/>
104
- </svg>
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 15.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4
+ <svg version="1.1" id="Vrstva_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
5
+ width="850.394px" height="425.197px" viewBox="0 0 850.394 425.197" enable-background="new 0 0 850.394 425.197"
6
+ xml:space="preserve">
7
+ <g>
8
+ <defs>
9
+ <rect id="SVGID_1_" width="850.394" height="425.197"/>
10
+ </defs>
11
+ <clipPath id="SVGID_2_">
12
+ <use xlink:href="#SVGID_1_" overflow="visible"/>
13
+ </clipPath>
14
+ <path clip-path="url(#SVGID_2_)" fill="#FFFFFF" d="M254.885,220.26c0,62.555-50.706,113.278-113.262,113.278
15
+ c-62.552,0-113.277-50.724-113.277-113.278c0-62.553,50.725-113.276,113.277-113.276
16
+ C204.179,106.984,254.885,157.708,254.885,220.26"/>
17
+ <path clip-path="url(#SVGID_2_)" d="M141.623,311.816c-50.494,0-91.551-41.057-91.551-91.556c0-50.479,41.057-91.551,91.551-91.551
18
+ c50.481,0,91.589,41.073,91.589,91.551C233.212,270.759,192.104,311.816,141.623,311.816 M213.151,148.72
19
+ c-19.091-19.105-44.498-29.643-71.528-29.643c-26.992,0-52.403,10.538-71.555,29.643c-19.093,19.104-29.628,44.517-29.628,71.54
20
+ c0,27.06,10.535,52.473,29.628,71.543c19.152,19.105,44.563,29.613,71.555,29.613c27.03,0,52.437-10.508,71.528-29.613
21
+ c19.154-19.07,29.661-44.483,29.661-71.543C242.812,193.237,232.305,167.825,213.151,148.72"/>
22
+ <path clip-path="url(#SVGID_2_)" d="M139.572,213.474c-3.085,14.675-19.089,22.305-28.432,28.657v-74.145
23
+ C127.062,171.8,145.779,184.037,139.572,213.474 M111.14,160.066v-14.159h-8.858v16.357c-5.981,1.843-9.471,3.751-8.891,4.931
24
+ c1.973-0.551,5.14-0.792,8.891-0.566v85.17c-9.018,17.647,3.976,44.661,3.976,44.661s-9.78-29.001,11.961-42.706
25
+ c19.978-12.575,88.884-6.678,88.626-45.551C206.538,153.116,142.981,153.44,111.14,160.066"/>
26
+ <path clip-path="url(#SVGID_2_)" d="M315.295,167.817c1.409,0.21,2.996,0.316,4.756,0.316c4.583,0,8.106-1.059,10.575-3.173
27
+ c2.466-2.115,3.699-5.107,3.699-8.986c0-7.398-4.758-11.101-14.274-11.101c-1.55,0-3.137,0.177-4.756,0.528V167.817z
28
+ M315.295,183.147v24.107h-20.617v-76.653c7.33-1.06,15.083-1.587,23.261-1.587c23.963,0,35.948,8.636,35.948,25.903
29
+ c0,9.377-2.699,16.477-8.088,21.306c-5.393,4.829-13.271,7.241-23.632,7.241C319.417,183.463,317.127,183.357,315.295,183.147"/>
30
+ </g>
31
+ <rect x="363.609" y="130.072" width="23.261" height="77.18"/>
32
+ <g>
33
+ <defs>
34
+ <rect id="SVGID_3_" width="850.394" height="425.197"/>
35
+ </defs>
36
+ <clipPath id="SVGID_4_">
37
+ <use xlink:href="#SVGID_3_" overflow="visible"/>
38
+ </clipPath>
39
+ <path clip-path="url(#SVGID_4_)" d="M422.5,164.964h5.816c3.596,0,6.429-0.901,8.508-2.699c2.08-1.798,3.119-4.245,3.119-7.347
40
+ c0-6.697-3.874-10.044-11.627-10.044c-2.259,0-4.196,0.177-5.816,0.528V164.964z M422.5,180.293v26.961h-20.618V130.6
41
+ c9.162-1.059,18.326-1.586,27.49-1.586c21.146,0,31.72,7.929,31.72,23.791c0,4.438-1.377,8.563-4.124,12.37
42
+ c-2.751,3.804-6.311,6.519-10.678,8.142v0.21c2.111,1.2,3.874,2.733,5.283,4.599c1.41,1.87,2.751,4.53,4.021,7.984l7.61,21.145
43
+ h-21.676l-6.555-20.09c-0.775-2.465-1.759-4.228-2.959-5.285c-1.202-1.059-2.783-1.586-4.758-1.586H422.5z"/>
44
+ </g>
45
+ <path d="M496.933,176.591h13.957l-6.874-28.547h-0.212L496.933,176.591z M508.349,123.728h-16.914l10.571-19.03h23.261
46
+ L508.349,123.728z M493.127,192.451l-3.489,14.803h-21.99l25.373-77.183h22.199l25.376,77.183h-22.413l-3.593-14.803H493.127z"/>
47
+ <polygon points="602.552,130.07 602.552,147.515 581.62,147.515 581.62,207.251 560.051,207.251 560.051,147.515 539.114,147.515
48
+ 539.114,130.07 "/>
49
+ <g>
50
+ <defs>
51
+ <rect id="SVGID_5_" width="850.394" height="425.197"/>
52
+ </defs>
53
+ <clipPath id="SVGID_6_">
54
+ <use xlink:href="#SVGID_5_" overflow="visible"/>
55
+ </clipPath>
56
+ <path clip-path="url(#SVGID_6_)" d="M662.502,150.688c-7.122-3.523-14.345-5.286-21.672-5.286c-3.316,0-5.816,0.583-7.51,1.745
57
+ c-1.689,1.165-2.535,2.694-2.535,4.598c0,2.961,2.289,5.076,6.87,6.344c11.065,2.962,18.855,6.504,23.367,10.627
58
+ c4.509,4.121,6.765,9.393,6.765,15.804c0,7.757-2.677,13.661-8.032,17.711c-5.358,4.053-13.43,6.082-24.213,6.082
59
+ c-4.512,0-9.357-0.758-14.536-2.277c-5.179-1.513-9.324-3.397-12.426-5.653l4.758-16.39c3.596,2.469,7.489,4.406,11.687,5.816
60
+ c4.19,1.41,8.05,2.115,11.573,2.115c6.344,0,9.518-2.292,9.518-6.874c0-2.959-2.82-5.249-8.46-6.873
61
+ c-10.29-2.958-17.623-6.517-21.992-10.678c-4.367-4.157-6.553-9.41-6.553-15.754c0-6.977,2.674-12.511,8.036-16.6
62
+ c5.354-4.086,12.898-6.13,22.625-6.13c10.43,0,19.241,1.762,26.433,5.285L662.502,150.688z"/>
63
+ </g>
64
+ <polygon points="700.248,162.848 700.457,162.848 720.336,130.07 744.654,130.07 720.336,167.078 745.71,207.251 721.392,207.251
65
+ 700.457,171.305 700.248,171.305 700.248,207.251 679.101,207.251 679.101,130.07 700.248,130.07 "/>
66
+ <path d="M778.383,176.591h13.956l-6.872-28.547h-0.214L778.383,176.591z M789.799,123.728h-16.913l10.569-19.03h23.26
67
+ L789.799,123.728z M774.576,192.451l-3.49,14.803h-21.989l25.375-77.183h22.201l25.374,77.183h-22.415l-3.594-14.803H774.576z"/>
68
+ <g>
69
+ <defs>
70
+ <rect id="SVGID_7_" width="850.394" height="425.197"/>
71
+ </defs>
72
+ <clipPath id="SVGID_8_">
73
+ <use xlink:href="#SVGID_7_" overflow="visible"/>
74
+ </clipPath>
75
+ <path clip-path="url(#SVGID_8_)" d="M345.958,255.048c-7.122-3.522-14.346-5.288-21.677-5.288c-3.314,0-5.813,0.585-7.505,1.747
76
+ c-1.692,1.164-2.537,2.695-2.537,4.597c0,2.963,2.288,5.076,6.871,6.344c11.066,2.963,18.854,6.504,23.367,10.627
77
+ c4.508,4.122,6.765,9.394,6.765,15.808c0,7.753-2.679,13.656-8.032,17.709c-5.36,4.054-13.43,6.076-24.213,6.076
78
+ c-4.512,0-9.359-0.755-14.539-2.269c-5.182-1.519-9.324-3.401-12.422-5.657l4.755-16.39c3.597,2.468,7.49,4.406,11.685,5.816
79
+ c4.192,1.409,8.05,2.116,11.576,2.116c6.343,0,9.516-2.293,9.516-6.872c0-2.963-2.818-5.251-8.458-6.877
80
+ c-10.293-2.955-17.62-6.519-21.992-10.677c-4.368-4.157-6.554-9.411-6.554-15.755c0-6.977,2.675-12.511,8.035-16.595
81
+ c5.356-4.091,12.899-6.135,22.627-6.135c10.429,0,19.242,1.761,26.433,5.286L345.958,255.048z"/>
82
+ </g>
83
+ <polygon points="421.234,234.433 421.234,251.874 400.304,251.874 400.304,311.612 378.732,311.612 378.732,251.874
84
+ 357.795,251.874 357.795,234.433 "/>
85
+ <g>
86
+ <defs>
87
+ <rect id="SVGID_9_" width="850.394" height="425.197"/>
88
+ </defs>
89
+ <clipPath id="SVGID_10_">
90
+ <use xlink:href="#SVGID_9_" overflow="visible"/>
91
+ </clipPath>
92
+ <path clip-path="url(#SVGID_10_)" d="M453.164,269.322h5.816c3.593,0,6.429-0.897,8.51-2.699c2.077-1.792,3.119-4.241,3.119-7.344
93
+ c0-6.698-3.875-10.047-11.629-10.047c-2.259,0-4.195,0.18-5.816,0.528V269.322z M453.164,284.653v26.959h-20.618V234.96
94
+ c9.163-1.056,18.327-1.586,27.49-1.586c21.146,0,31.721,7.93,31.721,23.787c0,4.442-1.378,8.563-4.124,12.372
95
+ c-2.751,3.805-6.31,6.52-10.677,8.142v0.21c2.11,1.2,3.872,2.734,5.282,4.599c1.411,1.869,2.751,4.531,4.018,7.984l7.614,21.144
96
+ h-21.675l-6.555-20.088c-0.776-2.466-1.766-4.23-2.961-5.285c-1.2-1.059-2.783-1.586-4.76-1.586H453.164z"/>
97
+ </g>
98
+ <path d="M528.652,280.95h13.958l-6.874-28.546h-0.213L528.652,280.95z M524.848,296.812l-3.49,14.8h-21.99l25.374-77.179h22.201
99
+ l25.375,77.179h-22.412l-3.596-14.8H524.848z"/>
100
+ <polygon points="624.653,276.724 624.865,276.724 624.865,234.433 645.482,234.433 645.482,311.612 624.865,311.612
101
+ 601.817,269.325 601.605,269.325 601.605,311.612 580.99,311.612 580.99,234.433 601.605,234.433 "/>
102
+ <path d="M683.439,280.95h13.955l-6.871-28.546h-0.209L683.439,280.95z M679.634,296.812l-3.489,14.8h-21.99l25.374-77.179h22.202
103
+ l25.373,77.179h-22.41l-3.596-14.8H679.634z"/>
104
+ </svg>