jekyll-theme-simplex 0.9.3 → 0.9.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a3cac9e8df49ff462e3c029bbcd0abfd2cc22ff994e5248c38a3844a4c6514aa
4
- data.tar.gz: c6fda47b2058d38c0235c07354bd694cfe14ff9159659075f0f68d002200d2a0
3
+ metadata.gz: b332a4036a61aeab0a1028cf031d9322aa326f56566fd5d3b14c45d586bccfa6
4
+ data.tar.gz: 312f1f3b07cb3c0f091d5c24234a02df100d0263a82f617208b795de511c8c61
5
5
  SHA512:
6
- metadata.gz: c65ac0e803c19c3f285ae0482f0f6b5ecc5e2a4257c1054f8f6a7e7059d64e7a7e86ff87980ce136cb7300b66cf5c18960ee6f6e5cac765caf4dbbcf92723c67
7
- data.tar.gz: 3002eb374d61022b160f319f359865d331b7d691b0aba91689b5ba61640ca885a9c0083d3e2f22bf14f11a928b92bf9ef3b079b84faa5b46b18327c53aa9b553
6
+ metadata.gz: d7394a9b5e32a127dd93f117240ddedd51ea23f6c79651242f3a4e103a81b5098fd5f0400dd4287e15baf8102e6d43c07c4e811a40cdd4824b6deb61705e81c4
7
+ data.tar.gz: 8237b3833fee7837aaa1af13b6259950ba1fa8b5c2019d4fdc2f4f48599c410a7c30212dba96cbf6814ed8508ce8ba1418ea789b5bf819660a2a277f06bb9207
data/README.md CHANGED
@@ -6,6 +6,9 @@
6
6
 
7
7
  A *simple* yet neat blogging theme. Developed for the [golas blog](https://golas.blog/) project.
8
8
 
9
+ ## 👓 Preview
10
+ ![Preview](preview.gif)
11
+
9
12
  ## ℹ Installation
10
13
 
11
14
  Add this line to your Jekyll site's `Gemfile`:
@@ -134,7 +137,7 @@ You can use following predefined colors:
134
137
  --c-themeHuePurple: #9F00CE;
135
138
  --c-themeHueBrown: #230007;
136
139
  ```
137
- This colors are CSS variables, usage: `var(--var-name)`
140
+ These colors are CSS variables, usage: `var(--var-name)`
138
141
 
139
142
  ## 🤝 Contributing
140
143
 
@@ -1,11 +1,13 @@
1
1
  <header class="header">
2
2
  <section class="logo">
3
- {% if site.logo_img != nil %}
4
- <h1 style="display: none;">golasblog</h1>
5
- <img class="logo__img" src={{site.logo_img}}/>
6
- {% else %}
7
- <h1>golasblog</h1>
8
- {% endif %}
3
+ <a href="{{ site.url }}/" class="logo__link">
4
+ {% if site.logo_img != nil %}
5
+ <h1 style="display: none;">golasblog</h1>
6
+ <img class="logo__link__img" src={{site.logo_img}}/>
7
+ {% else %}
8
+ <h1>golasblog</h1>
9
+ {% endif %}
10
+ </a>
9
11
  </section>
10
12
  <button id="menuToggle">
11
13
  <div></div>
@@ -2,4 +2,6 @@
2
2
  layout: default
3
3
  ---
4
4
 
5
- {{ content }}
5
+ <main class="page">
6
+ {{ content }}
7
+ </main>
@@ -3,5 +3,34 @@ layout: default
3
3
  ---
4
4
 
5
5
  <section class="post">
6
- {{ content }}
6
+
7
+ <div class="post__title">
8
+ <h1 class="post__title__text">{{ page.title }}</h1>
9
+ </div>
10
+ <div class="post__meta">
11
+ <div class="post__meta__category">
12
+ {% for category in page.category %}
13
+ <p class="post__meta__category__title" style="background: {{ site.category | where: "category", category | map: "hue"}}">{{ category }}</p>
14
+ {% else %}
15
+ <p class="post__meta__category__title">No category</p>
16
+ {% endfor %}
17
+ </div>
18
+ <p class="post__meta__divider">·</p>
19
+ <div class="post__meta__date">
20
+ {{ page.date | date: '%B %d, %Y' }}
21
+ </div>
22
+ {% if page.author != nil %}
23
+ {% assign author = site.authors | where: "nick", page.author | first %}
24
+ <p class="post__meta__divider">·</p>
25
+ <div class="post__meta__author">
26
+ <p>by </p>
27
+ <img class="post__meta__author__photo" src="{{ site.url }}/{{ author.photo_dir }}"/>
28
+ <p>{{ author.full_name }}</p>
29
+ </div>
30
+ {% endif %}
31
+ </div>
32
+
33
+ <div class="post__content">
34
+ {{ content }}
35
+ </div>
7
36
  </section>
@@ -7,6 +7,7 @@
7
7
 
8
8
  @include flexbox;
9
9
  padding: 1rem 0 0 0;
10
+ margin-top: auto;
10
11
 
11
12
  &__about{
12
13
 
@@ -27,6 +27,7 @@ body{
27
27
 
28
28
  display: grid;
29
29
  gap: 0 100px;
30
+ align-items: start;
30
31
  grid-template-areas:
31
32
  "header"
32
33
  "main"
@@ -13,11 +13,21 @@
13
13
 
14
14
  .logo{
15
15
 
16
- h1{
17
- margin: 0;
18
- }
19
- &__img{
20
- height: 2rem;
16
+ &__link{
17
+
18
+ text-decoration: none;
19
+ color: var(--c-themePrimaryDark);
20
+ transition: $t-smooth;
21
+
22
+ &:hover{
23
+ letter-spacing: .5rem;
24
+ }
25
+ h1{
26
+ margin: 0;
27
+ }
28
+ &__img{
29
+ height: 2rem;
30
+ }
21
31
  }
22
32
  }
23
33
 
@@ -0,0 +1,16 @@
1
+ // =============================
2
+ // global.scss
3
+ // =============================
4
+ // Used for single page styles.
5
+
6
+ .page{
7
+
8
+ justify-self: center;
9
+ padding: 0 1rem;
10
+ max-width: 1000px;
11
+ @include flexbox{
12
+ flex-direction: column;
13
+ justify-content: flex-start;
14
+ align-items: center;
15
+ }
16
+ }
@@ -8,4 +8,85 @@
8
8
  justify-self: center;
9
9
  padding: 0 1rem;
10
10
  max-width: 1000px;
11
+ @include flexbox{
12
+ flex-direction: column;
13
+ justify-content: flex-start;
14
+ align-items: center;
15
+ }
16
+
17
+ &__title{
18
+
19
+ &__text{
20
+ margin-bottom: 0;
21
+ }
22
+ }
23
+
24
+ &__meta{
25
+
26
+ @include flexbox;
27
+ width: 100%;
28
+
29
+ &__divider{
30
+ margin: 0 1rem;
31
+
32
+ @include for-size('tablet'){
33
+ display: none;
34
+ }
35
+ }
36
+
37
+ &__category{
38
+ text-transform: uppercase;
39
+ margin: 0;
40
+ @include flexbox;
41
+
42
+ &__title{
43
+ color: white;
44
+ background: var(--c-themePrimaryDark);
45
+ padding: .2rem .5rem;
46
+ }
47
+
48
+ @include for-size('tablet'){
49
+
50
+ display: none;
51
+ margin-top: 1rem;
52
+ p{
53
+ margin: 0;
54
+ width: 100%;
55
+ text-align: center;
56
+ }
57
+ flex-direction: column;
58
+ }
59
+ }
60
+
61
+ &__date{
62
+
63
+ @include for-size('tablet'){
64
+ margin-top: 1rem;
65
+ }
66
+ }
67
+
68
+ &__author{
69
+
70
+ width: fit-content;
71
+ //box-shadow: inset 0px 0px 14px -4px rgba(0,0,0,0.5);
72
+ @include flexbox;
73
+
74
+ &__photo{
75
+ margin: 0 1rem;
76
+ width: 2rem;
77
+ border-radius: 100%;
78
+ }
79
+ }
80
+
81
+ @include for-size('tablet'){
82
+ flex-direction: column;
83
+ }
84
+ }
85
+
86
+ &__content{
87
+
88
+ h1{
89
+ font-size: 1.8rem;
90
+ }
91
+ }
11
92
  }
@@ -0,0 +1,47 @@
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
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
9
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
10
+ version="1.1"
11
+ x="0px"
12
+ y="0px"
13
+ viewBox="0 0 100 100"
14
+ style="enable-background:new 0 0 100 100;"
15
+ xml:space="preserve"
16
+ id="svg6"
17
+ sodipodi:docname="brush.svg"
18
+ inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"><metadata
19
+ id="metadata12"><rdf:RDF><cc:Work
20
+ rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
21
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><defs
22
+ id="defs10" /><sodipodi:namedview
23
+ pagecolor="#ffffff"
24
+ bordercolor="#666666"
25
+ borderopacity="1"
26
+ objecttolerance="10"
27
+ gridtolerance="10"
28
+ guidetolerance="10"
29
+ inkscape:pageopacity="0"
30
+ inkscape:pageshadow="2"
31
+ inkscape:window-width="1754"
32
+ inkscape:window-height="1314"
33
+ id="namedview8"
34
+ showgrid="false"
35
+ inkscape:zoom="10.08"
36
+ inkscape:cx="41.765873"
37
+ inkscape:cy="50"
38
+ inkscape:window-x="0"
39
+ inkscape:window-y="0"
40
+ inkscape:window-maximized="0"
41
+ inkscape:current-layer="svg6" /><path
42
+ d="M42,91.9c-4,5.4-10.6,6.7-15.4,6.8c-5.7,0.2-10.6-1.2-13-2.2c6.2-2.6,8.5-6.4,10.9-10.4c1.3-2.2,2.6-4.4,4.7-6.6 c1.6-1.7,3.8-2.7,6.2-2.7c2.4-0.1,4.6,0.8,6.3,2.4C45.7,82.9,44.6,88.4,42,91.9z"
43
+ id="path2"
44
+ style="fill:#e59500;fill-opacity:1" /><path
45
+ d="M84.4,7.4L45.8,78.9c-0.5-0.7-1-1.4-1.7-2c-2.3-2.2-5.3-3.4-8.5-3.3L79,4.3c0.8-1.4,2.6-1.9,4.1-1.1l0.3,0.2 C84.7,4.2,85.2,6,84.4,7.4z"
46
+ id="path4"
47
+ style="fill:#e59500;fill-opacity:1" /></svg>
@@ -0,0 +1,111 @@
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
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
9
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
10
+ version="1.1"
11
+ id="Capa_1"
12
+ x="0px"
13
+ y="0px"
14
+ viewBox="0 0 490.2 490.2"
15
+ style="enable-background:new 0 0 490.2 490.2;"
16
+ xml:space="preserve"
17
+ sodipodi:docname="chip.svg"
18
+ inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"><metadata
19
+ id="metadata41"><rdf:RDF><cc:Work
20
+ rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
21
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><defs
22
+ id="defs39" /><sodipodi:namedview
23
+ pagecolor="#ffffff"
24
+ bordercolor="#666666"
25
+ borderopacity="1"
26
+ objecttolerance="10"
27
+ gridtolerance="10"
28
+ guidetolerance="10"
29
+ inkscape:pageopacity="0"
30
+ inkscape:pageshadow="2"
31
+ inkscape:window-width="2560"
32
+ inkscape:window-height="1361"
33
+ id="namedview37"
34
+ showgrid="false"
35
+ inkscape:zoom="2.0563035"
36
+ inkscape:cx="204.73631"
37
+ inkscape:cy="245.10001"
38
+ inkscape:window-x="-9"
39
+ inkscape:window-y="-9"
40
+ inkscape:window-maximized="1"
41
+ inkscape:current-layer="Capa_1" />
42
+ <g
43
+ id="g4"
44
+ transform="matrix(0.92458779,0,0,0.92458779,18.483533,18.483533)"
45
+ style="fill:#2e86ab;fill-opacity:1">
46
+ <path
47
+ d="m 469.15,265.9 c 11.5,0 20.9,-9.4 20.9,-20.9 0,-11.5 -9.4,-20.9 -20.9,-20.9 h -59.4 V 195 h 59.4 c 11.5,0 20.9,-9.4 20.9,-20.9 0,-11.5 -9.4,-20.9 -20.9,-20.9 h -59.4 v -51.1 c 0,-11.5 -9.4,-20.9 -20.9,-20.9 h -52.1 V 20.9 c 0,-11.5 -9.4,-20.9 -20.9,-20.9 -11.5,0 -20.9,9.4 -20.9,20.9 v 60.5 h -29.2 V 20.9 c 0,-11.5 -9.4,-20.9 -20.9,-20.9 -11.5,0 -20.9,9.4 -20.9,20.9 v 60.5 h -28.9 V 20.9 c 0,-11.5 -9.4,-20.9 -20.9,-20.9 -11.5,0 -20.9,9.4 -20.9,20.9 v 60.5 h -49 c -11.5,0 -20.9,9.4 -20.9,20.9 v 51.1 h -62.4 c -11.5,0 -20.9,9.4 -20.9,20.9 0,11.5 9.4,20.9 20.9,20.9 h 62.6 v 29.2 h -62.6 c -11.5,0 -20.9,9.4 -20.9,20.9 0,11.5 9.4,20.9 20.9,20.9 h 62.6 V 294 h -62.6 c -11.5,0 -20.9,9.4 -20.9,20.9 0,11.5 9.4,20.9 20.9,20.9 h 62.6 v 51.1 c 0,11.5 9.4,20.9 20.9,20.9 h 49 v 61.5 c 0,11.5 9.4,20.9 20.9,20.9 11.5,0 20.9,-9.4 20.9,-20.9 v -61.5 h 29.2 v 61.5 c 0,11.5 9.4,20.9 20.9,20.9 11.5,0 20.9,-9.4 20.9,-20.9 v -61.5 h 28.8 v 61.5 c 0,11.5 9.4,20.9 20.9,20.9 10.4,0 19.8,-9.4 20.9,-20.9 v -61.5 h 52.1 c 11.5,0 20.9,-8.3 20.9,-20.9 v -51.1 h 59.4 c 11.5,0 20.9,-9.4 20.9,-20.9 0,-11.5 -9.4,-20.9 -20.9,-20.9 h -59.4 V 265.9 Z M 368.05,367 h -244 V 123 h 244 z"
48
+ id="path2"
49
+ style="fill:#2e86ab;fill-opacity:1" />
50
+ </g>
51
+ <g
52
+ id="g6"
53
+ transform="matrix(0.92458779,0,0,0.92458779,18.483533,18.483533)">
54
+ </g>
55
+ <g
56
+ id="g8"
57
+ transform="matrix(0.92458779,0,0,0.92458779,18.483533,18.483533)">
58
+ </g>
59
+ <g
60
+ id="g10"
61
+ transform="matrix(0.92458779,0,0,0.92458779,18.483533,18.483533)">
62
+ </g>
63
+ <g
64
+ id="g12"
65
+ transform="matrix(0.92458779,0,0,0.92458779,18.483533,18.483533)">
66
+ </g>
67
+ <g
68
+ id="g14"
69
+ transform="matrix(0.92458779,0,0,0.92458779,18.483533,18.483533)">
70
+ </g>
71
+ <g
72
+ id="g16"
73
+ transform="matrix(0.92458779,0,0,0.92458779,18.483533,18.483533)">
74
+ </g>
75
+ <g
76
+ id="g18"
77
+ transform="matrix(0.92458779,0,0,0.92458779,18.483533,18.483533)">
78
+ </g>
79
+ <g
80
+ id="g20"
81
+ transform="matrix(0.92458779,0,0,0.92458779,18.483533,18.483533)">
82
+ </g>
83
+ <g
84
+ id="g22"
85
+ transform="matrix(0.92458779,0,0,0.92458779,18.483533,18.483533)">
86
+ </g>
87
+ <g
88
+ id="g24"
89
+ transform="matrix(0.92458779,0,0,0.92458779,18.483533,18.483533)">
90
+ </g>
91
+ <g
92
+ id="g26"
93
+ transform="matrix(0.92458779,0,0,0.92458779,18.483533,18.483533)">
94
+ </g>
95
+ <g
96
+ id="g28"
97
+ transform="matrix(0.92458779,0,0,0.92458779,18.483533,18.483533)">
98
+ </g>
99
+ <g
100
+ id="g30"
101
+ transform="matrix(0.92458779,0,0,0.92458779,18.483533,18.483533)">
102
+ </g>
103
+ <g
104
+ id="g32"
105
+ transform="matrix(0.92458779,0,0,0.92458779,18.483533,18.483533)">
106
+ </g>
107
+ <g
108
+ id="g34"
109
+ transform="matrix(0.92458779,0,0,0.92458779,18.483533,18.483533)">
110
+ </g>
111
+ </svg>
@@ -0,0 +1,77 @@
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
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
9
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
10
+ version="1.0"
11
+ width="100"
12
+ height="100"
13
+ id="svg7"
14
+ sodipodi:docname="cpp.svg"
15
+ inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)">
16
+ <defs
17
+ id="defs11" />
18
+ <sodipodi:namedview
19
+ pagecolor="#ffffff"
20
+ bordercolor="#666666"
21
+ borderopacity="1"
22
+ objecttolerance="10"
23
+ gridtolerance="10"
24
+ guidetolerance="10"
25
+ inkscape:pageopacity="0"
26
+ inkscape:pageshadow="2"
27
+ inkscape:window-width="2089"
28
+ inkscape:window-height="1187"
29
+ id="namedview9"
30
+ showgrid="false"
31
+ inkscape:zoom="5.04"
32
+ inkscape:cx="56.240358"
33
+ inkscape:cy="56.589041"
34
+ inkscape:window-x="0"
35
+ inkscape:window-y="0"
36
+ inkscape:window-maximized="0"
37
+ inkscape:current-layer="svg7" />
38
+ <metadata
39
+ id="metadata2">
40
+ <rdf:RDF>
41
+ <rdf:Description
42
+ rdf:about="https://commons.wikimedia.org/wiki/File:C_plus_plus.svg">
43
+ <dc:title>C plus plus</dc:title>
44
+ <dc:description>Logo of C++ (programming language)</dc:description>
45
+ <dc:creator>JTojnar</dc:creator>
46
+ <dc:license>Public Domain</dc:license>
47
+ <dc:format>image/svg+xml</dc:format>
48
+ <dc:type
49
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
50
+ </rdf:Description>
51
+ <cc:Work
52
+ rdf:about="">
53
+ <dc:format>image/svg+xml</dc:format>
54
+ <dc:type
55
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
56
+ </cc:Work>
57
+ </rdf:RDF>
58
+ </metadata>
59
+ <g
60
+ id="g844"
61
+ style="fill:#c02717;fill-opacity:1">
62
+ <path
63
+ id="big-C"
64
+ d="M 54.341278,23.416146 L 54.341278,32.368497 C 51.4832,29.706659 48.429036,27.71725 45.178782,26.400263 C 41.956453,25.083386 38.524021,24.42492 34.881478,24.424862 C 27.708364,24.42492 22.216474,26.624477 18.405794,31.023543 C 14.595077,35.394688 12.689727,41.727171 12.68974,50.021015 C 12.689727,58.286899 14.595077,64.619382 18.405794,69.018487 C 22.216474,73.389594 27.708364,75.575141 34.881478,75.575137 C 38.524021,75.575141 41.956453,74.916676 45.178782,73.599736 C 48.429036,72.282811 51.4832,70.293402 54.341278,67.631502 L 54.341278,76.499792 C 51.371119,78.517225 48.218887,80.030298 44.884573,81.039015 C 41.578185,82.047725 38.075704,82.552085 34.37712,82.552085 C 24.878359,82.552085 17.397061,79.65203 11.933205,73.851913 C 6.4693217,68.023794 3.7373877,60.08017 3.7373917,50.021015 C 3.7373877,39.933903 6.4693217,31.990276 11.933205,26.190115 C 17.397061,20.362043 24.878359,17.447977 34.37712,17.447915 C 38.131745,17.447977 41.662244,17.952335 44.968631,18.960988 C 48.302948,19.941746 51.427159,21.426796 54.341278,23.416146"
65
+ style="fill:#c02717;stroke:none;fill-opacity:1" />
66
+ <text
67
+ id="first-plus"
68
+ y="62.539062"
69
+ x="25.666044"
70
+ style="font-size:40px;font-style:normal;font-weight:normal;fill:#c02717;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans">+</text>
71
+ <text
72
+ id="second-plus"
73
+ y="62.539062"
74
+ x="57.233311"
75
+ style="font-size:40px;font-style:normal;font-weight:normal;fill:#c02717;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans">+</text>
76
+ </g>
77
+ </svg>
@@ -0,0 +1,135 @@
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
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
9
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
10
+ version="1.1"
11
+ id="Capa_1"
12
+ x="0px"
13
+ y="0px"
14
+ viewBox="0 0 512 512"
15
+ style="enable-background:new 0 0 512 512;"
16
+ xml:space="preserve"
17
+ sodipodi:docname="server.svg"
18
+ inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"><metadata
19
+ id="metadata55"><rdf:RDF><cc:Work
20
+ rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
21
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><defs
22
+ id="defs53" /><sodipodi:namedview
23
+ pagecolor="#ffffff"
24
+ bordercolor="#666666"
25
+ borderopacity="1"
26
+ objecttolerance="10"
27
+ gridtolerance="10"
28
+ guidetolerance="10"
29
+ inkscape:pageopacity="0"
30
+ inkscape:pageshadow="2"
31
+ inkscape:window-width="2560"
32
+ inkscape:window-height="1361"
33
+ id="namedview51"
34
+ showgrid="false"
35
+ inkscape:zoom="1.3921165"
36
+ inkscape:cx="117.82162"
37
+ inkscape:cy="294.92293"
38
+ inkscape:window-x="-9"
39
+ inkscape:window-y="-9"
40
+ inkscape:window-maximized="1"
41
+ inkscape:current-layer="Capa_1"
42
+ inkscape:document-rotation="0" />
43
+
44
+ <g
45
+ id="g889"
46
+ transform="matrix(0.7839396,0,0,0.7839396,55.311464,55.311464)"
47
+ style="fill:#8ea604;fill-opacity:1"><g
48
+ id="g4"
49
+ style="fill:#8ea604;fill-opacity:1">
50
+ <path
51
+ d="m 485.52,0 h -448 C 19.848,0 0,8.807 0,26.48 v 320 C 0,364.152 19.848,381 37.52,381 H 231 v 30 h -17.48 c -8.836,0 -16,10 -16,20 h -80 c -17.672,0 -32,12.328 -32,30 0,17.672 14.328,30 32,30 h 80 c 0,10 7.164,21 16,21 h 96 c 8.836,0 16,-11 16,-21 h 80 c 17.672,0 32,-12.328 32,-30 0,-17.672 -14.328,-30 -32,-30 h -80 c 0,-10 -7.164,-20 -16,-20 H 292 V 381 H 485.52 C 503.192,381 512,364.152 512,346.48 v -320 C 512,8.807 503.191,0 485.52,0 Z M 452,311 H 71 v -91 h 381 z m 0,-161 H 71 V 60 h 381 z"
52
+ id="path2"
53
+ style="fill:#8ea604;fill-opacity:1" />
54
+ </g><g
55
+ id="g18"
56
+ style="fill:#8ea604;fill-opacity:1">
57
+ <g
58
+ id="g10"
59
+ style="fill:#8ea604;fill-opacity:1">
60
+ <circle
61
+ cx="299"
62
+ cy="107"
63
+ r="32"
64
+ id="circle6"
65
+ style="fill:#8ea604;fill-opacity:1" />
66
+ <circle
67
+ cx="395"
68
+ cy="107"
69
+ r="32"
70
+ id="circle8"
71
+ style="fill:#8ea604;fill-opacity:1" />
72
+ </g>
73
+ <g
74
+ id="g16"
75
+ style="fill:#8ea604;fill-opacity:1">
76
+ <circle
77
+ cx="299"
78
+ cy="267"
79
+ r="32"
80
+ id="circle12"
81
+ style="fill:#8ea604;fill-opacity:1" />
82
+ <circle
83
+ cx="395"
84
+ cy="267"
85
+ r="32"
86
+ id="circle14"
87
+ style="fill:#8ea604;fill-opacity:1" />
88
+ </g>
89
+ </g></g>
90
+ <g
91
+ id="g20">
92
+ </g>
93
+ <g
94
+ id="g22">
95
+ </g>
96
+ <g
97
+ id="g24">
98
+ </g>
99
+ <g
100
+ id="g26">
101
+ </g>
102
+ <g
103
+ id="g28">
104
+ </g>
105
+ <g
106
+ id="g30">
107
+ </g>
108
+ <g
109
+ id="g32">
110
+ </g>
111
+ <g
112
+ id="g34">
113
+ </g>
114
+ <g
115
+ id="g36">
116
+ </g>
117
+ <g
118
+ id="g38">
119
+ </g>
120
+ <g
121
+ id="g40">
122
+ </g>
123
+ <g
124
+ id="g42">
125
+ </g>
126
+ <g
127
+ id="g44">
128
+ </g>
129
+ <g
130
+ id="g46">
131
+ </g>
132
+ <g
133
+ id="g48">
134
+ </g>
135
+ </svg>
@@ -0,0 +1,63 @@
1
+ <?xml version="1.0" encoding="iso-8859-1"?>
2
+ <!-- Generator: Adobe Illustrator 16.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="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
5
+ width="392.186px" height="392.186px" viewBox="0 0 392.186 392.186" style="enable-background:new 0 0 392.186 392.186;"
6
+ xml:space="preserve">
7
+ <g>
8
+ <g>
9
+ <g>
10
+ <path d="M368.62,17.951H23.568C10.57,17.951,0,28.524,0,41.52v309.146c0,12.996,10.57,23.568,23.568,23.568h345.053
11
+ c12.994,0,23.564-10.572,23.564-23.568V41.52C392.188,28.525,381.614,17.951,368.62,17.951z M297.56,57.528
12
+ c0-4.806,3.896-8.703,8.701-8.703h8.703c4.808,0,8.701,3.896,8.701,8.703v9.863c0,4.806-3.896,8.702-8.701,8.702h-8.703
13
+ c-4.805,0-8.701-3.896-8.701-8.702V57.528z M257.093,57.528c0-4.806,3.898-8.703,8.703-8.703h8.701
14
+ c4.805,0,8.703,3.896,8.703,8.703v9.863c0,4.806-3.898,8.702-8.703,8.702h-8.701c-4.805,0-8.703-3.896-8.703-8.702V57.528z
15
+ M363.903,345.951H28.282V102.235h335.621V345.951L363.903,345.951z M364.132,67.391c0,4.806-3.896,8.702-8.701,8.702h-8.703
16
+ c-4.809,0-8.702-3.896-8.702-8.702v-9.863c0-4.806,3.896-8.703,8.702-8.703h8.703c4.806,0,8.701,3.896,8.701,8.703V67.391z"/>
17
+ <path d="M84.185,233.284l63.084,29.336c1.631,0.755,3.367,1.138,5.162,1.138c2.338,0,4.617-0.664,6.598-1.924
18
+ c3.547-2.267,5.666-6.13,5.666-10.334v-0.322c0-4.752-2.785-9.116-7.096-11.118l-39.455-18.332l39.455-18.334
19
+ c4.311-2.004,7.096-6.367,7.096-11.117v-0.319c0-4.21-2.119-8.075-5.666-10.334c-1.961-1.253-4.246-1.916-6.605-1.916
20
+ c-1.779,0-3.563,0.391-5.16,1.133l-63.08,29.333c-4.307,2.004-7.09,6.369-7.09,11.117v0.877
21
+ C77.093,226.909,79.874,231.272,84.185,233.284z"/>
22
+ <path d="M165.257,293.036c2.301,3.149,6.002,5.03,9.9,5.03h0.316c5.352,0,10.041-3.426,11.672-8.517L228.7,160.788
23
+ c1.192-3.716,0.531-7.818-1.771-10.973c-2.301-3.15-6.002-5.03-9.901-5.03h-0.315c-5.354,0-10.048,3.425-11.679,8.516
24
+ l-41.559,128.771C162.292,285.793,162.958,289.889,165.257,293.036z"/>
25
+ <path d="M227.49,192.276c0,4.745,2.783,9.109,7.095,11.123l39.455,18.329l-39.455,18.33c-4.31,2.004-7.095,6.368-7.095,11.118
26
+ v0.322c0,4.205,2.117,8.068,5.668,10.336c1.974,1.258,4.254,1.924,6.595,1.924c1.793,0,3.528-0.383,5.17-1.142l63.08-29.335
27
+ c4.307-2.009,7.09-6.372,7.09-11.115v-0.877c0-4.748-2.783-9.113-7.094-11.117l-63.08-29.333
28
+ c-1.591-0.74-3.373-1.131-5.152-1.131c-2.355,0-4.643,0.661-6.604,1.912c-3.551,2.263-5.67,6.127-5.67,10.337v0.318H227.49
29
+ L227.49,192.276z"/>
30
+ </g>
31
+ </g>
32
+ </g>
33
+ <g>
34
+ </g>
35
+ <g>
36
+ </g>
37
+ <g>
38
+ </g>
39
+ <g>
40
+ </g>
41
+ <g>
42
+ </g>
43
+ <g>
44
+ </g>
45
+ <g>
46
+ </g>
47
+ <g>
48
+ </g>
49
+ <g>
50
+ </g>
51
+ <g>
52
+ </g>
53
+ <g>
54
+ </g>
55
+ <g>
56
+ </g>
57
+ <g>
58
+ </g>
59
+ <g>
60
+ </g>
61
+ <g>
62
+ </g>
63
+ </svg>
@@ -27,3 +27,5 @@
27
27
  @import "_feed.scss";
28
28
  @import "_index.scss";
29
29
  @import "_post.scss";
30
+ @import "_page.scss";
31
+
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-theme-simplex
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.3
4
+ version: 0.9.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ondrej Golasowski
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-01-11 00:00:00.000000000 Z
11
+ date: 2021-01-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -78,6 +78,7 @@ files:
78
78
  - _sass/_header.scss
79
79
  - _sass/_index.scss
80
80
  - _sass/_mixins.scss
81
+ - _sass/_page.scss
81
82
  - _sass/_post.scss
82
83
  - _sass/_variables.scss
83
84
  - assets/fonts/Roboto-Bold.ttf
@@ -99,9 +100,14 @@ files:
99
100
  - assets/fonts/RobotoSlab-Regular.woff
100
101
  - assets/fonts/RobotoSlab-Regular.woff2
101
102
  - assets/fonts/fonts.css
103
+ - assets/img/icons/brush.svg
104
+ - assets/img/icons/chip.svg
105
+ - assets/img/icons/cpp.svg
102
106
  - assets/img/icons/golasblog_logo.svg
103
107
  - assets/img/icons/question.svg
108
+ - assets/img/icons/server.svg
104
109
  - assets/img/icons/simplex_logo.svg
110
+ - assets/img/icons/web.svg
105
111
  - assets/js/jquery.slim.min.js
106
112
  - assets/js/tools.js
107
113
  - assets/style.scss