jekyll-theme-czechitas 0.2.0 → 0.2.1

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
  SHA1:
3
- metadata.gz: c06785bf45cb461079b533e125414c84f1efcd46
4
- data.tar.gz: 7e1c673339dd7b494ae05c292d8e17fd2eea83dc
3
+ metadata.gz: 4a69ff9b28557ec5b74cbe272dadf03b2d8564bb
4
+ data.tar.gz: be445be51f45cca25768f5375a4f4f3da6f894d0
5
5
  SHA512:
6
- metadata.gz: ad86b40a6a46d3d3b3b52b3b2b5b7814a929c012f90222ed218ded2dec233611064cddb2813b2610f9cc38b9a982360e2c08695a4814adbe2bd5d9efaa588777
7
- data.tar.gz: 59cfba396250e22fb481632b58d149626bf8189d536cffcf856a12ab6af8d78aeba63f2abc745d60fc94c24985f170a3ffe17740cd4634ec76e41635062e618b
6
+ metadata.gz: 0c394e15b616716d84df4c5f8adf2e9f430cb3e7c41f3b1a24ec949c343b293a98338f3bd8f1b767bbf43eda141e1f27cb8c656ca95b803ea8102fe8786783c5
7
+ data.tar.gz: c675640fe53800a622d5180190c19451d3e5da7b13083bff651f80c8fcc0cff6c008cfc86ea0307b30cf5523f6bf5ad35e870df805b3ec4a60f4bd42ca899e24
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2016 Honza Pobořil
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
@@ -0,0 +1,51 @@
1
+ # jekyll-theme-czechitas
2
+
3
+ Reponzivní téma a Jekyll konfigurace, která ti umožní jednoduše postavit a udržovat web [jako tento](http://start.czechitas.cz) jen psaním Markdown souborů.
4
+
5
+ ![](screenshot.png)
6
+
7
+ ## Instalace
8
+
9
+ 1. [Nainstaluj si Ruby](https://www.ruby-lang.org/en/documentation/installation/)
10
+
11
+ 2. Nainstaluj si Bundler:
12
+
13
+ ```sh
14
+ gem install bundler
15
+ ```
16
+
17
+ 3. Stáhni si jako základ třeba [zdrojáky webu Základy programování](https://gitlab.com/czechitas/kurz_start/repository/archive.zip?ref=master).
18
+
19
+ 4. V jeho adresáři pak dej stáhnout závislosti:
20
+
21
+ ```sh
22
+ cd kurz_muj
23
+ bundle install
24
+ ```
25
+
26
+ ## Použití
27
+
28
+ Hlavní co potřebuješ je do adresáře `_lessons` vkládat své lekce (název jen musí končit na `.md`, viz. existující web) a v `_config.yml` upravit své specifické nastavení.
29
+
30
+ Na svém počítači pak web vyzkoušíš takto:
31
+
32
+ ```sh
33
+ bundle exec jekyll s
34
+ ```
35
+
36
+ Spustí se lokální webserver, kde si můžeš sestavený web prohlédnout na: <http://localhost:4000>
37
+
38
+ Lekce se řadí podle data v hlavičce (tedy nezáleží na názvu souboru) s tím, že datum v budoucnu Jekyll ignoruje (aby bylo možné psát lekce dopředu). Pokud si chceš prohlédnout web i s budoucími lekcemi, tak jej spusť takto:
39
+
40
+ ```sh
41
+ bundle exec jekyll s --future
42
+ ```
43
+
44
+ Verzi Czechitas tématu, Jekyllu i všech závislostí aktualizuješ takto:
45
+
46
+ ```sh
47
+ bundle update
48
+ ```
49
+
50
+ ## GitLab Pages
51
+
@@ -0,0 +1,34 @@
1
+ <footer class="site-footer">
2
+
3
+ <div class="wrapper">
4
+
5
+ <div class="footer-col-wrapper">
6
+ <div class="footer-col footer-col-1">
7
+ <h2>Připravil</h2>
8
+ <ul class="contact-list">
9
+ {% if site.author %}
10
+ <li>{{ site.author | escape }}</li>
11
+ {% endif %}
12
+ {% if site.author_url %}
13
+ <li><a href="{{ site.author_url }}">{{ site.author_url }}</a></li>
14
+ {% endif %}
15
+ {% if site.author_email %}
16
+ <li><a href="mailto:{{ site.author_email }}">{{ site.author_email }}</a></li>
17
+ {% endif %}
18
+ <li class="footer-license">{{ site.license }}</li>
19
+ </ul>
20
+ </div>
21
+
22
+ <div class="footer-col footer-col-2">
23
+ </div>
24
+
25
+ <div class="footer-col footer-col-3">
26
+ <a href="http://www.czechitas.cz">
27
+ <img src="/assets/czechitas-logo.svg" alt="Czechitas - girls talk IT">
28
+ </a>
29
+ </div>
30
+ </div>
31
+
32
+ </div>
33
+
34
+ </footer>
@@ -0,0 +1,16 @@
1
+ <head>
2
+ <meta charset="utf-8">
3
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
4
+ <meta name="viewport" content="width=device-width, initial-scale=1">
5
+
6
+ <title>{% if page.title %}{{ page.title | escape }}{% else %}{{ site.title | escape }}{% endif %}</title>
7
+ <meta name="description" content="{{ page.excerpt | default: site.description | strip_html | normalize_whitespace | truncate: 160 | escape }}">
8
+
9
+ <link rel="stylesheet" href="{{ "/assets/main.css" | relative_url }}">
10
+ <link rel="canonical" href="{{ page.url | replace:'index.html','' | absolute_url }}">
11
+ <link rel="alternate" type="application/rss+xml" title="{{ site.title | escape }}" href="{{ "/feed.xml" | relative_url }}">
12
+
13
+ {% if jekyll.environment == 'production' and site.google_analytics %}
14
+ {% include google-analytics.html %}
15
+ {% endif %}
16
+ </head>
@@ -0,0 +1,15 @@
1
+ <header class="site-header" role="banner">
2
+
3
+ <div class="wrapper">
4
+
5
+ <a class="site-title" href="{{ "/" | relative_url}}">{{ site.title | escape }}</a>
6
+
7
+ <nav class="site-nav">
8
+ {% for item in site.menu %}
9
+ <a class="page-link" href="{{ item.href }}">{{ item.text }}</a>
10
+ {% endfor %}
11
+ </nav>
12
+
13
+ </div>
14
+
15
+ </header>
@@ -0,0 +1,30 @@
1
+ <div class="home">
2
+
3
+ {% assign posts = site.lessons | sort: date %}
4
+
5
+ {% if posts and site.last_post_on_index %}
6
+ {% assign post = posts | last %}
7
+ {% include post-full.html %}
8
+ {% endif %}
9
+
10
+ {% if posts.size > 1 and site.last_post_on_index %}
11
+ <h2>Předchozí lekce</h2>
12
+ {% endif %}
13
+
14
+ <ul class="post-list">
15
+ {% for post in posts reversed %}
16
+ {% if forloop.index0 == 0 and site.last_post_on_index %}
17
+ {% continue %}
18
+ {% endif %}
19
+
20
+ <li>
21
+ <span class="post-meta">{{ post.date | date: "%-d. %-m. %Y" }}</span>
22
+
23
+ <h2>
24
+ <a class="post-link" href="{{ post.url | relative_url }}">{{ post.title | escape }}</a>
25
+ </h2>
26
+ </li>
27
+ {% endfor %}
28
+ </ul>
29
+
30
+ </div>
@@ -0,0 +1,11 @@
1
+ <article class="post" itemscope itemtype="http://schema.org/BlogPosting">
2
+
3
+ <header class="post-header">
4
+ <h1 class="post-title" itemprop="name headline">{{ post.title | escape }}</h1>
5
+ <p class="post-meta"><time datetime="{{ post.date | date_to_xmlschema }}" itemprop="datePublished">{{ post.date | date: "%-d. %-m. %Y" }}</time>{% if post.author %} • <span itemprop="author" itemscope itemtype="http://schema.org/Person"><span itemprop="name">{{ post.author }}</span></span>{% endif %}</p>
6
+ </header>
7
+
8
+ <div class="post-content" itemprop="articleBody">
9
+ {{ post.content }}
10
+ </div>
11
+ </article>
@@ -0,0 +1 @@
1
+ {{ content }}
@@ -0,0 +1,12 @@
1
+ <!DOCTYPE html>
2
+ <html lang="{{ page.lang | default: site.lang | default: "en" }}">
3
+
4
+ {% include head.html %}
5
+
6
+ <body>
7
+
8
+ {{ content | extlinks }}
9
+
10
+ </body>
11
+
12
+ </html>
@@ -0,0 +1,5 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ {{ content }}
@@ -0,0 +1,43 @@
1
+ // Define defaults for each variable.
2
+
3
+ $base-font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !default;
4
+ $base-font-size: 16px !default;
5
+ $base-font-weight: 400 !default;
6
+ $small-font-size: $base-font-size * 0.875 !default;
7
+ $base-line-height: 1.5 !default;
8
+
9
+ $spacing-unit: 30px !default;
10
+
11
+ $text-color: #111 !default;
12
+ $background-color: #fdfdfd !default;
13
+ $brand-color: #2a7ae2 !default;
14
+
15
+ $grey-color: #828282 !default;
16
+ $grey-color-light: lighten($grey-color, 40%) !default;
17
+ $grey-color-dark: darken($grey-color, 25%) !default;
18
+
19
+ // Width of the content area
20
+ $content-width: 800px !default;
21
+
22
+ $on-palm: 600px !default;
23
+ $on-laptop: 800px !default;
24
+
25
+ // Use media queries like this:
26
+ // @include media-query($on-palm) {
27
+ // .wrapper {
28
+ // padding-right: $spacing-unit / 2;
29
+ // padding-left: $spacing-unit / 2;
30
+ // }
31
+ // }
32
+ @mixin media-query($device) {
33
+ @media screen and (max-width: $device) {
34
+ @content;
35
+ }
36
+ }
37
+
38
+ // Import partials.
39
+ @import
40
+ "minima/base",
41
+ "minima/layout",
42
+ "minima/syntax-highlighting"
43
+ ;
@@ -0,0 +1,198 @@
1
+ /**
2
+ * Reset some basic elements
3
+ */
4
+ body, h1, h2, h3, h4, h5, h6,
5
+ p, blockquote, pre, hr,
6
+ dl, dd, ol, ul, figure {
7
+ margin: 0;
8
+ padding: 0;
9
+ }
10
+
11
+
12
+
13
+ /**
14
+ * Basic styling
15
+ */
16
+ body {
17
+ font: $base-font-weight #{$base-font-size}/#{$base-line-height} $base-font-family;
18
+ color: $text-color;
19
+ background-color: $background-color;
20
+ -webkit-text-size-adjust: 100%;
21
+ -webkit-font-feature-settings: "kern" 1;
22
+ -moz-font-feature-settings: "kern" 1;
23
+ -o-font-feature-settings: "kern" 1;
24
+ font-feature-settings: "kern" 1;
25
+ font-kerning: normal;
26
+ }
27
+
28
+
29
+
30
+ /**
31
+ * Set `margin-bottom` to maintain vertical rhythm
32
+ */
33
+ h1, h2, h3, h4, h5, h6,
34
+ p, blockquote, pre,
35
+ ul, ol, dl, figure,
36
+ %vertical-rhythm {
37
+ margin-bottom: $spacing-unit / 2;
38
+ }
39
+
40
+
41
+
42
+ /**
43
+ * Images
44
+ */
45
+ img {
46
+ max-width: 100%;
47
+ vertical-align: middle;
48
+ }
49
+
50
+
51
+
52
+ /**
53
+ * Figures
54
+ */
55
+ figure > img {
56
+ display: block;
57
+ }
58
+
59
+ figcaption {
60
+ font-size: $small-font-size;
61
+ }
62
+
63
+
64
+
65
+ /**
66
+ * Lists
67
+ */
68
+ ul, ol {
69
+ margin-left: $spacing-unit;
70
+ }
71
+
72
+ li {
73
+ > ul,
74
+ > ol {
75
+ margin-bottom: 0;
76
+ }
77
+ }
78
+
79
+
80
+
81
+ /**
82
+ * Headings
83
+ */
84
+ h1, h2, h3, h4, h5, h6 {
85
+ font-weight: $base-font-weight;
86
+ }
87
+
88
+
89
+
90
+ /**
91
+ * Links
92
+ */
93
+ a {
94
+ color: $brand-color;
95
+ text-decoration: none;
96
+
97
+ &:visited {
98
+ color: darken($brand-color, 15%);
99
+ }
100
+
101
+ &:hover {
102
+ color: $text-color;
103
+ text-decoration: underline;
104
+ }
105
+ }
106
+
107
+
108
+
109
+ /**
110
+ * Blockquotes
111
+ */
112
+ blockquote {
113
+ color: $grey-color;
114
+ border-left: 4px solid $grey-color-light;
115
+ padding-left: $spacing-unit / 2;
116
+ font-size: 18px;
117
+ letter-spacing: -1px;
118
+ font-style: italic;
119
+
120
+ > :last-child {
121
+ margin-bottom: 0;
122
+ }
123
+ }
124
+
125
+
126
+
127
+ /**
128
+ * Code formatting
129
+ */
130
+ pre,
131
+ code {
132
+ font-size: 15px;
133
+ border: 1px solid $grey-color-light;
134
+ border-radius: 3px;
135
+ background-color: #eef;
136
+ }
137
+
138
+ code {
139
+ padding: 1px 5px;
140
+ }
141
+
142
+ pre {
143
+ padding: 8px 12px;
144
+ overflow-x: auto;
145
+
146
+ > code {
147
+ border: 0;
148
+ padding-right: 0;
149
+ padding-left: 0;
150
+ }
151
+ }
152
+
153
+
154
+
155
+ /**
156
+ * Wrapper
157
+ */
158
+ .wrapper {
159
+ max-width: -webkit-calc(#{$content-width} - (#{$spacing-unit} * 2));
160
+ max-width: calc(#{$content-width} - (#{$spacing-unit} * 2));
161
+ margin-right: auto;
162
+ margin-left: auto;
163
+ padding-right: $spacing-unit;
164
+ padding-left: $spacing-unit;
165
+ @extend %clearfix;
166
+
167
+ @include media-query($on-laptop) {
168
+ max-width: -webkit-calc(#{$content-width} - (#{$spacing-unit}));
169
+ max-width: calc(#{$content-width} - (#{$spacing-unit}));
170
+ padding-right: $spacing-unit / 2;
171
+ padding-left: $spacing-unit / 2;
172
+ }
173
+ }
174
+
175
+
176
+
177
+ /**
178
+ * Clearfix
179
+ */
180
+ %clearfix:after {
181
+ content: "";
182
+ display: table;
183
+ clear: both;
184
+ }
185
+
186
+
187
+
188
+ /**
189
+ * Icons
190
+ */
191
+ .icon > svg {
192
+ display: inline-block;
193
+ vertical-align: middle;
194
+
195
+ path {
196
+ fill: $grey-color;
197
+ }
198
+ }
@@ -0,0 +1,193 @@
1
+ /**
2
+ * Site header
3
+ */
4
+ .site-header {
5
+ border-top: 5px solid $grey-color-dark;
6
+ border-bottom: 1px solid $grey-color-light;
7
+ min-height: 56px;
8
+
9
+ // Positioning context for the mobile navigation icon
10
+ position: relative;
11
+ }
12
+
13
+ .site-title {
14
+ font-size: 26px;
15
+ font-weight: 300;
16
+ line-height: 56px;
17
+ letter-spacing: -1px;
18
+ margin-bottom: 0;
19
+ float: left;
20
+
21
+ &,
22
+ &:visited {
23
+ color: $grey-color-dark;
24
+ }
25
+ }
26
+
27
+ .site-nav {
28
+ float: right;
29
+ line-height: 56px;
30
+
31
+ .menu-icon {
32
+ display: none;
33
+ }
34
+
35
+ .page-link {
36
+ color: $text-color;
37
+ line-height: $base-line-height;
38
+
39
+ // Gaps between nav items, but not on the last one
40
+ &:not(:last-child) {
41
+ margin-right: 20px;
42
+ }
43
+ }
44
+ }
45
+
46
+
47
+
48
+ /**
49
+ * Site footer
50
+ */
51
+ .site-footer {
52
+ border-top: 1px solid $grey-color-light;
53
+ padding: $spacing-unit 0;
54
+ }
55
+
56
+ .footer-heading {
57
+ font-size: 18px;
58
+ margin-bottom: $spacing-unit / 2;
59
+ }
60
+
61
+ .contact-list,
62
+ .social-media-list {
63
+ list-style: none;
64
+ margin-left: 0;
65
+ }
66
+
67
+ .footer-col-wrapper {
68
+ font-size: 15px;
69
+ color: $grey-color;
70
+ margin-left: -$spacing-unit / 2;
71
+ @extend %clearfix;
72
+ }
73
+
74
+ .footer-col {
75
+ float: left;
76
+ margin-bottom: $spacing-unit / 2;
77
+ padding-left: $spacing-unit / 2;
78
+ }
79
+
80
+ .footer-col-1 {
81
+ width: -webkit-calc(35% - (#{$spacing-unit} / 2));
82
+ width: calc(35% - (#{$spacing-unit} / 2));
83
+ }
84
+
85
+ .footer-col-2 {
86
+ width: -webkit-calc(20% - (#{$spacing-unit} / 2));
87
+ width: calc(20% - (#{$spacing-unit} / 2));
88
+ }
89
+
90
+ .footer-col-3 {
91
+ width: -webkit-calc(45% - (#{$spacing-unit} / 2));
92
+ width: calc(45% - (#{$spacing-unit} / 2));
93
+ }
94
+
95
+ @include media-query($on-laptop) {
96
+ .footer-col-1,
97
+ .footer-col-2 {
98
+ width: -webkit-calc(50% - (#{$spacing-unit} / 2));
99
+ width: calc(50% - (#{$spacing-unit} / 2));
100
+ }
101
+
102
+ .footer-col-3 {
103
+ width: -webkit-calc(100% - (#{$spacing-unit} / 2));
104
+ width: calc(100% - (#{$spacing-unit} / 2));
105
+ }
106
+ }
107
+
108
+ @include media-query($on-palm) {
109
+ .footer-col {
110
+ float: none;
111
+ width: -webkit-calc(100% - (#{$spacing-unit} / 2));
112
+ width: calc(100% - (#{$spacing-unit} / 2));
113
+ }
114
+ }
115
+
116
+
117
+
118
+ /**
119
+ * Page content
120
+ */
121
+ .page-content {
122
+ padding: $spacing-unit 0;
123
+ }
124
+
125
+ .page-heading {
126
+ font-size: 20px;
127
+ }
128
+
129
+ .post-list {
130
+ margin-left: 0;
131
+ list-style: none;
132
+
133
+ > li {
134
+ margin-bottom: $spacing-unit;
135
+ }
136
+ }
137
+
138
+ .post-meta {
139
+ font-size: $small-font-size;
140
+ color: $grey-color;
141
+ }
142
+
143
+ .post-link {
144
+ display: block;
145
+ font-size: 24px;
146
+ }
147
+
148
+
149
+
150
+ /**
151
+ * Posts
152
+ */
153
+ .post-header {
154
+ margin-bottom: $spacing-unit;
155
+ }
156
+
157
+ .post-title {
158
+ font-size: 42px;
159
+ letter-spacing: -1px;
160
+ line-height: 1;
161
+
162
+ @include media-query($on-laptop) {
163
+ font-size: 36px;
164
+ }
165
+ }
166
+
167
+ .post-content {
168
+ margin-bottom: $spacing-unit;
169
+
170
+ h2 {
171
+ font-size: 32px;
172
+
173
+ @include media-query($on-laptop) {
174
+ font-size: 28px;
175
+ }
176
+ }
177
+
178
+ h3 {
179
+ font-size: 26px;
180
+
181
+ @include media-query($on-laptop) {
182
+ font-size: 22px;
183
+ }
184
+ }
185
+
186
+ h4 {
187
+ font-size: 20px;
188
+
189
+ @include media-query($on-laptop) {
190
+ font-size: 18px;
191
+ }
192
+ }
193
+ }
@@ -0,0 +1,71 @@
1
+ /**
2
+ * Syntax highlighting styles
3
+ */
4
+ .highlight {
5
+ background: #fff;
6
+ @extend %vertical-rhythm;
7
+
8
+ .highlighter-rouge & {
9
+ background: #eef;
10
+ }
11
+
12
+ .c { color: #998; font-style: italic } // Comment
13
+ .err { color: #a61717; background-color: #e3d2d2 } // Error
14
+ .k { font-weight: bold } // Keyword
15
+ .o { font-weight: bold } // Operator
16
+ .cm { color: #998; font-style: italic } // Comment.Multiline
17
+ .cp { color: #999; font-weight: bold } // Comment.Preproc
18
+ .c1 { color: #998; font-style: italic } // Comment.Single
19
+ .cs { color: #999; font-weight: bold; font-style: italic } // Comment.Special
20
+ .gd { color: #000; background-color: #fdd } // Generic.Deleted
21
+ .gd .x { color: #000; background-color: #faa } // Generic.Deleted.Specific
22
+ .ge { font-style: italic } // Generic.Emph
23
+ .gr { color: #a00 } // Generic.Error
24
+ .gh { color: #999 } // Generic.Heading
25
+ .gi { color: #000; background-color: #dfd } // Generic.Inserted
26
+ .gi .x { color: #000; background-color: #afa } // Generic.Inserted.Specific
27
+ .go { color: #888 } // Generic.Output
28
+ .gp { color: #555 } // Generic.Prompt
29
+ .gs { font-weight: bold } // Generic.Strong
30
+ .gu { color: #aaa } // Generic.Subheading
31
+ .gt { color: #a00 } // Generic.Traceback
32
+ .kc { font-weight: bold } // Keyword.Constant
33
+ .kd { font-weight: bold } // Keyword.Declaration
34
+ .kp { font-weight: bold } // Keyword.Pseudo
35
+ .kr { font-weight: bold } // Keyword.Reserved
36
+ .kt { color: #458; font-weight: bold } // Keyword.Type
37
+ .m { color: #099 } // Literal.Number
38
+ .s { color: #d14 } // Literal.String
39
+ .na { color: #008080 } // Name.Attribute
40
+ .nb { color: #0086B3 } // Name.Builtin
41
+ .nc { color: #458; font-weight: bold } // Name.Class
42
+ .no { color: #008080 } // Name.Constant
43
+ .ni { color: #800080 } // Name.Entity
44
+ .ne { color: #900; font-weight: bold } // Name.Exception
45
+ .nf { color: #900; font-weight: bold } // Name.Function
46
+ .nn { color: #555 } // Name.Namespace
47
+ .nt { color: #000080 } // Name.Tag
48
+ .nv { color: #008080 } // Name.Variable
49
+ .ow { font-weight: bold } // Operator.Word
50
+ .w { color: #bbb } // Text.Whitespace
51
+ .mf { color: #099 } // Literal.Number.Float
52
+ .mh { color: #099 } // Literal.Number.Hex
53
+ .mi { color: #099 } // Literal.Number.Integer
54
+ .mo { color: #099 } // Literal.Number.Oct
55
+ .sb { color: #d14 } // Literal.String.Backtick
56
+ .sc { color: #d14 } // Literal.String.Char
57
+ .sd { color: #d14 } // Literal.String.Doc
58
+ .s2 { color: #d14 } // Literal.String.Double
59
+ .se { color: #d14 } // Literal.String.Escape
60
+ .sh { color: #d14 } // Literal.String.Heredoc
61
+ .si { color: #d14 } // Literal.String.Interpol
62
+ .sx { color: #d14 } // Literal.String.Other
63
+ .sr { color: #009926 } // Literal.String.Regex
64
+ .s1 { color: #d14 } // Literal.String.Single
65
+ .ss { color: #990073 } // Literal.String.Symbol
66
+ .bp { color: #999 } // Name.Builtin.Pseudo
67
+ .vc { color: #008080 } // Name.Variable.Class
68
+ .vg { color: #008080 } // Name.Variable.Global
69
+ .vi { color: #008080 } // Name.Variable.Instance
70
+ .il { color: #099 } // Literal.Number.Integer.Long
71
+ }
@@ -0,0 +1,102 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg
3
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
4
+ xmlns:cc="http://creativecommons.org/ns#"
5
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
6
+ xmlns:svg="http://www.w3.org/2000/svg"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ viewBox="0 0 309.91069 90.856735"
9
+ height="90.856735"
10
+ width="309.91071"
11
+ xml:space="preserve"
12
+ version="1.1"
13
+ id="svg2"><metadata
14
+ id="metadata8"><rdf:RDF><cc:Work
15
+ rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
16
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
17
+ id="defs6"><clipPath
18
+ id="clipPath32"
19
+ clipPathUnits="userSpaceOnUse"><path
20
+ id="path34"
21
+ d="m 479.221,273.309 245.875,0 0,71.546 -245.875,0 0,-71.546 z" /></clipPath><clipPath
22
+ id="clipPath92"
23
+ clipPathUnits="userSpaceOnUse"><path
24
+ id="path94"
25
+ d="m 121.728,273.309 245.875,0 0,71.546 -245.875,0 0,-71.546 z" /></clipPath></defs><g
26
+ transform="matrix(1.25,0,0,-1.25,-599.15227,431.06875)"
27
+ id="g10"><text
28
+ id="text20"
29
+ style="font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;font-family:'Open Sans';-inkscape-font-specification:OpenSans;writing-mode:lr-tb;fill:#918f90;fill-opacity:1;fill-rule:nonzero;stroke:none"
30
+ transform="matrix(1,0,0,-1,604.063,275.4743)"><tspan
31
+ id="tspan22"
32
+ y="0"
33
+ x="0 5.8559999 11.712 17.568001 23.327999 33.695999 39.344002 47.472 53.119999 62.352001 68.112 75.360001 85.856003 91.503998 101.504 107.264 113.328">... girls talk IT</tspan></text>
34
+ <g
35
+ id="g28"><g
36
+ clip-path="url(#clipPath32)"
37
+ id="g30"><g
38
+ transform="translate(482.9749,318.5984)"
39
+ id="g36"><path
40
+ id="path38"
41
+ style="fill:#ec008c;fill-opacity:1;fill-rule:nonzero;stroke:none"
42
+ d="m 0,0 c -2.151,-1.788 -3.543,-4.352 -3.647,-7.247 -0.107,-3.015 1.204,-5.776 3.373,-7.728 l 0.002,0 c 2.306,1.793 3.81,4.451 3.918,7.467 C 3.691,-6.281 3.643,-4.83 3.108,-3.992 2.574,-3.153 0.856,-1.497 0,0 m -0.259,-2.356 c 0.62,-0.872 1.751,-1.534 2.067,-2.446 0.316,-0.91 0.382,-1.755 0.351,-2.653 -0.073,-2.022 -0.917,-3.951 -2.358,-5.456 -1.327,1.603 -2.032,3.588 -1.96,5.61 0.065,1.818 0.73,3.527 1.9,4.945" /></g><g
43
+ transform="translate(520.1817,324.1726)"
44
+ id="g40"><path
45
+ id="path42"
46
+ style="fill:#ec008c;fill-opacity:1;fill-rule:nonzero;stroke:none"
47
+ d="M 0,0 C -0.599,0.653 -1.258,1.336 -1.446,2.226 -1.633,3.115 -1.368,4.375 -1.465,5.447 0.344,5.128 1.96,4.26 3.186,2.922 4.556,1.429 5.308,-0.541 5.337,-2.624 3.253,-2.421 1.382,-1.507 0,0 M 4.284,3.928 C 2.36,6.024 -0.372,7.245 -3.045,7.072 L -3.196,7.071 c 0.326,-1.699 0.133,-3.955 0.235,-5.077 0.104,-1.122 1.04,-2.104 1.865,-3.001 1.923,-2.099 4.588,-3.149 7.332,-3.149 0.166,0 0.333,0.003 0.499,0.011 0.383,2.898 -0.411,5.847 -2.451,8.073" /></g><g
48
+ transform="translate(509.406,333.6985)"
49
+ id="g44"><path
50
+ id="path46"
51
+ style="fill:#ec008c;fill-opacity:1;fill-rule:nonzero;stroke:none"
52
+ d="m 0,0 c -2.194,1.246 -4.206,3.052 -5.665,5.089 l -0.19,0.263 0.065,0.319 c 0.218,1.065 0.318,2.101 0.311,3.095 C -0.773,7.094 2.887,3.218 4.252,-1.622 2.852,-1.344 1.425,-0.81 0,0 m -15.633,-7.507 c -2.666,-2.446 -5.639,-4.381 -8.642,-5.647 -1.18,2.185 -1.854,4.683 -1.854,7.336 0,8.54 6.948,15.488 15.488,15.488 1.272,0 2.504,-0.173 3.688,-0.463 0.249,-5.132 -3.057,-11.561 -8.68,-16.714 m 21.494,5.611 c -1.773,7.482 -8.479,13.054 -16.502,13.054 -9.375,0 -16.975,-7.601 -16.975,-16.976 0,-2.851 0.71,-5.533 1.953,-7.893 l -0.012,-0.004 0.081,-0.14 c 0.039,-0.073 0.084,-0.143 0.125,-0.216 l 0.568,-0.936 c 3.022,-4.68 8.274,-7.786 14.26,-7.786 1.518,0 2.981,0.218 4.382,0.591 l 0,1.403 0,0.135 c -1.391,-0.41 -2.86,-0.64 -4.382,-0.64 -5.356,0 -10.083,2.734 -12.866,6.879 3.088,1.331 6.143,3.334 8.866,5.834 3.601,3.298 6.317,7.092 7.853,10.966 L -6.347,3.487 -5.544,2.6 c 1.389,-1.535 3.055,-2.877 4.817,-3.878 1.764,-1 3.584,-1.629 5.328,-1.887 0.151,-0.864 0.245,-1.746 0.245,-2.653 0,-5.317 -2.694,-10.012 -6.788,-12.803 l 0.217,-0.197 0.909,-0.826 c 4.322,3.077 7.15,8.117 7.15,13.826 0,0.848 -0.081,1.674 -0.203,2.489 l -0.27,1.433 z" /></g><g
53
+ transform="translate(525.4641,278.0078)"
54
+ id="g48"><path
55
+ id="path50"
56
+ style="fill:#2c3792;fill-opacity:1;fill-rule:nonzero;stroke:none"
57
+ d="m 0,0 -5.127,-2.799 -6.235,12.743 -9.57,-8.044 0,32.024 0,1.393 0,0.194 0,1.297 0,1.053 0.792,-0.719 0.91,-0.827 0.184,-0.168 0.968,-0.879 L 4.888,14.393 -6.205,12.09 0,0 Z m 7.811,13.609 -24.684,22.438 -0.909,0.826 -0.217,0.196 -0.848,0.772 -3.471,3.154 0,-4.665 0,-1.303 0,-0.135 0,-1.403 0,-34.55 10.49,8.812 6.089,-12.449 7.62,4.133 -5.99,11.691 11.92,2.483 z" /></g><g
58
+ transform="translate(557.4657,312.5853)"
59
+ id="g52"><path
60
+ id="path54"
61
+ style="fill:#2c3792;fill-opacity:1;fill-rule:nonzero;stroke:none"
62
+ d="m 0,0 -0.219,0 c -0.413,0.734 -1.185,1.332 -2.316,1.789 -1.131,0.455 -2.506,0.683 -4.122,0.683 -1.735,0 -3.248,-0.619 -4.54,-1.85 -1.295,-1.239 -1.941,-2.722 -1.941,-4.456 0,-2.175 0.596,-3.932 1.785,-5.266 1.191,-1.341 2.786,-2.008 4.784,-2.008 3.058,0 5.144,0.735 6.26,2.206 l 0.222,0 0,-2.735 c 0,-1.442 -0.647,-2.623 -1.942,-3.55 -1.291,-0.925 -2.996,-1.389 -5.112,-1.389 -3.322,0 -6.181,1.14 -8.577,3.415 -2.395,2.281 -3.592,5.094 -3.592,8.444 0,3.529 1.16,6.511 3.483,8.951 2.322,2.439 5.438,3.659 9.348,3.659 1.88,0 3.429,-0.492 4.651,-1.476 C -0.609,5.43 0,4.22 0,2.779 L 0,0 Z" /></g><g
63
+ transform="translate(578.9948,299.227)"
64
+ id="g56"><path
65
+ id="path58"
66
+ style="fill:#2c3792;fill-opacity:1;fill-rule:nonzero;stroke:none"
67
+ d="M 0,0 C 0,-0.704 -0.316,-1.344 -0.949,-1.916 -1.581,-2.49 -2.278,-2.777 -3.042,-2.777 l -11.596,0 c -1.322,0 -2.33,0.279 -3.019,0.84 -0.692,0.56 -1.037,1.32 -1.037,2.293 0,1.76 1.205,3.939 3.616,6.525 l 5.995,6.527 c 1.029,1.173 1.706,2.072 2.028,2.684 l -11.682,0 0,1.809 c 0,0.912 0.336,1.663 1.012,2.249 0.677,0.588 1.646,0.882 2.912,0.882 l 10.802,0 c 1.263,0 2.195,-0.311 2.798,-0.925 0.601,-0.619 0.903,-1.322 0.903,-2.115 0,-2.001 -1.013,-4.101 -3.041,-6.307 L -9.302,5.249 c -1.057,-1.177 -1.808,-2.16 -2.25,-2.954 L 0,2.295 0,0 Z" /></g><g
68
+ transform="translate(596.8467,312.2793)"
69
+ id="g60"><path
70
+ id="path62"
71
+ style="fill:#2c3792;fill-opacity:1;fill-rule:nonzero;stroke:none"
72
+ d="m 0,0 c 0,1.176 -0.396,2.064 -1.191,2.67 -0.794,0.598 -1.896,0.901 -3.307,0.901 -1.412,0 -2.58,-0.492 -3.505,-1.476 -0.927,-0.986 -1.419,-2.182 -1.478,-3.597 l -0.043,-0.788 2.645,0 c 2.734,0 4.564,0.167 5.489,0.506 C -0.464,-1.45 0,-0.852 0,0 M 5.554,-0.706 C 5.554,-2.851 4.695,-4.349 2.975,-5.202 1.256,-6.054 -1.604,-6.481 -5.6,-6.481 l -3.881,0 c 0.207,-1.47 0.927,-2.652 2.16,-3.549 1.235,-0.897 2.734,-1.344 4.497,-1.344 3.235,0 5.66,0.749 7.276,2.248 l 0.221,0 0,-1.853 c 0,-3.584 -2.866,-5.378 -8.597,-5.378 -3.087,0 -5.805,1.116 -8.158,3.349 -2.351,2.234 -3.527,5.102 -3.527,8.597 0,3.91 1.082,7.04 3.242,9.395 2.159,2.348 4.961,3.525 8.398,3.525 2.586,0 4.819,-0.851 6.701,-2.559 1.881,-1.703 2.822,-3.923 2.822,-6.656" /></g><g
73
+ transform="translate(624.3253,312.5853)"
74
+ id="g64"><path
75
+ id="path66"
76
+ style="fill:#2c3792;fill-opacity:1;fill-rule:nonzero;stroke:none"
77
+ d="m 0,0 -0.219,0 c -0.412,0.734 -1.184,1.332 -2.314,1.789 -1.135,0.455 -2.507,0.683 -4.124,0.683 -1.733,0 -3.249,-0.619 -4.541,-1.85 -1.292,-1.239 -1.94,-2.722 -1.94,-4.456 0,-2.175 0.596,-3.932 1.785,-5.266 1.191,-1.341 2.785,-2.008 4.785,-2.008 3.055,0 5.141,0.735 6.259,2.206 l 0.221,0 0,-2.735 c 0,-1.442 -0.648,-2.623 -1.941,-3.55 -1.29,-0.925 -2.995,-1.389 -5.114,-1.389 -3.32,0 -6.181,1.14 -8.573,3.415 -2.395,2.281 -3.594,5.094 -3.594,8.444 0,3.529 1.16,6.511 3.482,8.951 2.323,2.439 5.439,3.659 9.35,3.659 1.878,0 3.429,-0.492 4.651,-1.476 C -0.611,5.43 0,4.22 0,2.779 L 0,0 Z" /></g><g
78
+ transform="translate(649.4179,296.4498)"
79
+ id="g68"><path
80
+ id="path70"
81
+ style="fill:#2c3792;fill-opacity:1;fill-rule:nonzero;stroke:none"
82
+ d="M 0,0 -1.939,0 C -3.174,0 -4.153,0.346 -4.873,1.035 -5.593,1.728 -5.95,2.704 -5.95,3.972 l 0,9.697 c 0,1.85 -0.436,3.217 -1.303,4.101 -0.869,0.882 -2.005,1.322 -3.415,1.322 -1.118,0 -2.111,-0.457 -2.978,-1.367 -0.869,-0.912 -1.302,-2.324 -1.302,-4.233 l 0,-13.492 -1.939,0 c -2.702,0 -4.056,1.322 -4.056,3.972 l 0,27.773 1.852,0 c 1.351,0 2.387,-0.347 3.108,-1.034 0.72,-0.692 1.082,-1.612 1.082,-2.757 l 0,-6.79 c 0.499,0.821 1.224,1.558 2.18,2.203 0.955,0.649 1.947,0.973 2.975,0.973 3.087,0 5.485,-0.9 7.188,-2.694 C -0.854,19.854 0,17.284 0,13.934 L 0,0 Z" /></g><g
83
+ transform="translate(665.1648,299.8034)"
84
+ id="g72"><path
85
+ id="path74"
86
+ style="fill:#ec008c;fill-opacity:1;fill-rule:nonzero;stroke:none"
87
+ d="m 0,0 c 0,-1.266 -0.273,-2.179 -0.815,-2.735 -0.545,-0.56 -1.447,-0.838 -2.71,-0.838 -2.293,0 -4.052,0.634 -5.271,1.898 -1.219,1.261 -1.83,3.099 -1.83,5.51 l 0,16.092 1.677,0 c 2.821,0 4.233,-1.47 4.233,-4.412 l 0,-11.109 c 0,-1.176 0.27,-1.987 0.813,-2.445 0.547,-0.459 1.478,-0.682 2.801,-0.682 L 0,1.279 0,0 Z m -5.268,28.037 c 0.691,-0.674 1.035,-1.483 1.035,-2.421 0,-0.947 -0.344,-1.759 -1.035,-2.448 -0.693,-0.692 -1.506,-1.037 -2.448,-1.037 -0.941,0 -1.75,0.345 -2.424,1.037 -0.678,0.689 -1.018,1.501 -1.018,2.448 0,0.938 0.34,1.747 1.018,2.421 0.674,0.679 1.483,1.015 2.424,1.015 0.942,0 1.755,-0.336 2.448,-1.015" /></g><g
88
+ transform="translate(667.6743,319.2895)"
89
+ id="g76"><path
90
+ id="path78"
91
+ style="fill:#ec008c;fill-opacity:1;fill-rule:nonzero;stroke:none"
92
+ d="m 0,0 c 0,1.116 0.116,1.984 0.351,2.601 0.238,0.62 0.689,1.323 1.368,2.116 0.939,1.088 1.864,1.631 2.778,1.631 l 1.364,0 0,-5.378 8.249,0 0,-2.425 c 0,-0.706 -0.311,-1.353 -0.929,-1.939 -0.618,-0.592 -1.484,-0.884 -2.602,-0.884 l -4.718,0 0,-9.302 c 0,-2.85 1.252,-4.279 3.75,-4.279 1.941,0 3.363,0.283 4.275,0.84 l 0.224,0 0,-2.116 c 0,-1.233 -0.45,-2.206 -1.347,-2.912 -0.897,-0.703 -2.184,-1.057 -3.858,-1.057 -2.941,0 -5.158,0.765 -6.657,2.293 C 0.75,-19.286 0,-17.107 0,-14.286 L 0,0 Z" /></g><g
93
+ transform="translate(697.9883,304.5182)"
94
+ id="g80"><path
95
+ id="path82"
96
+ style="fill:#2c3792;fill-opacity:1;fill-rule:nonzero;stroke:none"
97
+ d="m 0,0 0,2.292 -2.117,0 c -2.144,0 -3.646,-0.239 -4.495,-0.726 -0.854,-0.484 -1.278,-1.241 -1.278,-2.27 0,-0.941 0.357,-1.67 1.078,-2.181 0.723,-0.517 1.727,-0.774 3.021,-0.774 C -1.264,-3.659 0,-2.44 0,0 m 5.777,0.045 c 0,-2.498 -0.836,-4.541 -2.514,-6.128 -1.677,-1.589 -3.836,-2.38 -6.481,-2.38 l -1.188,0 c -2.793,0 -5.08,0.702 -6.857,2.115 -1.78,1.412 -2.668,3.22 -2.668,5.424 0,2.295 0.932,4.104 2.801,5.444 1.865,1.34 4.868,2.005 9.013,2.005 l 2.074,0 0,0.309 c 0,1.647 -0.397,2.787 -1.19,3.418 -0.794,0.633 -2.1,0.946 -3.924,0.946 -1.909,0 -3.505,-0.278 -4.784,-0.836 -1.278,-0.557 -2.196,-1.191 -2.757,-1.897 l -0.22,0 0,1.897 c 0,1.527 0.72,2.878 2.16,4.053 1.442,1.177 3.601,1.766 6.483,1.766 1.41,0 2.688,-0.175 3.835,-0.528 1.146,-0.354 2.196,-0.919 3.152,-1.698 0.955,-0.78 1.703,-1.888 2.25,-3.329 C 5.503,9.188 5.777,7.483 5.777,5.513 l 0,-5.468 z" /></g><g
98
+ transform="translate(725.0958,303.9445)"
99
+ id="g84"><path
100
+ id="path86"
101
+ style="fill:#2c3792;fill-opacity:1;fill-rule:nonzero;stroke:none"
102
+ d="m 0,0 c 0,-2.528 -0.862,-4.497 -2.582,-5.906 -1.719,-1.413 -4.164,-2.116 -7.337,-2.116 -2.148,0 -3.954,0.47 -5.428,1.41 -1.469,0.94 -2.205,2.028 -2.205,3.263 l 0,2.69 0.222,0 c 0.648,-0.617 1.655,-1.146 3.022,-1.589 1.367,-0.442 2.74,-0.659 4.123,-0.659 2.879,0 4.319,0.866 4.319,2.601 0,0.706 -0.33,1.252 -0.991,1.633 -0.662,0.379 -1.977,0.699 -3.947,0.968 -2.529,0.351 -4.4,1.043 -5.619,2.071 -1.222,1.029 -1.83,2.439 -1.83,4.233 0,2.292 0.938,4.242 2.82,5.842 1.881,1.601 4.306,2.403 7.274,2.403 2.472,0 4.351,-0.515 5.645,-1.541 1.293,-1.033 1.939,-2.206 1.939,-3.531 l 0,-2.248 -0.221,0 c -0.617,0.647 -1.559,1.177 -2.82,1.589 -1.267,0.412 -2.587,0.617 -3.968,0.617 -3.174,0 -4.759,-0.881 -4.759,-2.644 0,-0.621 0.298,-1.08 0.9,-1.391 0.602,-0.309 1.886,-0.624 3.859,-0.949 C -2.528,5.925 0,3.676 0,0" /></g></g></g></g></svg>
@@ -0,0 +1,43 @@
1
+ ---
2
+ # Only the main Sass file needs front matter (the dashes are enough)
3
+ ---
4
+ @charset "utf-8";
5
+
6
+ // Our variables
7
+ $base-font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
8
+ $base-font-size: 16px;
9
+ $base-font-weight: 400;
10
+ $small-font-size: $base-font-size * 0.875;
11
+ $base-line-height: 1.5;
12
+
13
+ $spacing-unit: 30px;
14
+
15
+ $text-color: #111;
16
+ $background-color: #fdfdfd;
17
+ $brand-color: #2a7ae2;
18
+
19
+ $grey-color: #828282;
20
+ $grey-color-light: lighten($grey-color, 40%);
21
+ $grey-color-dark: darken($grey-color, 25%);
22
+
23
+ // Width of the content area
24
+ $content-width: 800px;
25
+
26
+ $on-palm: 600px;
27
+ $on-laptop: 800px;
28
+
29
+ // Minima also includes a mixin for defining media queries.
30
+ // Use media queries like this:
31
+ // @include media-query($on-palm) {
32
+ // .wrapper {
33
+ // padding-right: $spacing-unit / 2;
34
+ // padding-left: $spacing-unit / 2;
35
+ // }
36
+ // }
37
+
38
+ // Import partials from the `minima` theme.
39
+ @import "minima";
40
+
41
+ .footer-license {
42
+ font-size: 0.6em;
43
+ }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-theme-czechitas
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Honza Pobořil
@@ -72,7 +72,23 @@ email:
72
72
  executables: []
73
73
  extensions: []
74
74
  extra_rdoc_files: []
75
- files: []
75
+ files:
76
+ - LICENSE.txt
77
+ - README.md
78
+ - _includes/footer.html
79
+ - _includes/head.html
80
+ - _includes/header.html
81
+ - _includes/index.html
82
+ - _includes/post-full.html
83
+ - _layouts/default.html
84
+ - _layouts/html.html
85
+ - _layouts/post.html
86
+ - _sass/minima.scss
87
+ - _sass/minima/_base.scss
88
+ - _sass/minima/_layout.scss
89
+ - _sass/minima/_syntax-highlighting.scss
90
+ - assets/czechitas-logo.svg
91
+ - assets/main.scss
76
92
  homepage: https://gitlab.com/czechitas/jekyll-theme
77
93
  licenses:
78
94
  - MIT