minimal-categorized 0.0.4 → 0.0.5
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/README.md +20 -2
- data/_data/menu.yml +4 -4
- data/_data/metaData.yml +1 -3
- data/_includes/common-head.html +5 -0
- data/_includes/menu.html +1 -1
- data/_layouts/category-aggregator.html +18 -1
- data/_layouts/default.html +6 -5
- data/_layouts/home.html +5 -4
- data/_layouts/post.html +1 -1
- data/_sass/styles/_category-aggregator.scss +22 -3
- data/_sass/styles/_defaults.scss +29 -7
- data/_sass/styles/_layout.scss +12 -1
- data/_sass/styles/_menu.scss +33 -13
- data/_sass/styles/_post.scss +27 -0
- data/_sass/variables/_layout.scss +6 -1
- data/assets/styles/styles.scss +0 -5
- data/pages/about.html +1 -2
- data/pages/category-1.html +1 -9
- metadata +4 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6415a38becb2fecea685e504e1151de202d319b0318eaf7a944974883d0a16ac
|
4
|
+
data.tar.gz: 713e4a72dd644f0acdcbc64babe51311edcdeb664c28ee13dd903792d515e56c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 15ef67e272a34ce4b96dfca2bd52c8d9c878d1b17e39e3c0bac59642cf5f28d02c4d102b6da0ff36adadbf17ff04a9cf3882e3f14482812d501a4ef16b135e38
|
7
|
+
data.tar.gz: 48be04e4484a1354600841479a17a0daf6e7d1d478527ceee12ddfd5bae39a3df6dd9dbb3916cde7ffce169d3d184f46d60f5a0eccd59a35f40c8f4bde4dfffa
|
data/README.md
CHANGED
@@ -37,10 +37,28 @@ This theme is based on separating content into categories, which is later shown
|
|
37
37
|
As for now, theme allows to use two main categories that will be displayed on home screen and more categories displayed only in menu to further separate content. Those are defined in `_data/menu.yml`.
|
38
38
|
|
39
39
|
Structure of `_data/menu.yml`:
|
40
|
-
|
40
|
+
* menu_title: Displayed on menu (only for normal menu)
|
41
|
+
* menu_headline: Displayed in menu (only for normal menu) and in about page
|
42
|
+
* menu_intro: Displayed in menu (only for normal menu) and in about page
|
43
|
+
* show_menu_on_category_select: Boolean value determining if menu should be visible on category selection page
|
44
|
+
* minimal_menu: Boolean value determining the style of menu bar
|
45
|
+
* menu_logo: Path to logo displayed on menu (only for normal menu)
|
46
|
+
* menu_pages: a list of items in menu. Each item contains information:
|
47
|
+
* title: Menu position title
|
48
|
+
* url: URL for href
|
49
|
+
* show_on_home: Boolean value to determine if this position is a category to be shown on category picker
|
50
|
+
* image_url: image URL for category picker
|
51
|
+
* icon_name: FavIcon to be displayed in menu
|
52
|
+
* category: unique identifier of category. Used to determine which menu item is selected
|
53
|
+
* tooltip: Tooltip for menu item
|
54
|
+
* menu_contacts: a list of items to be displayed for a contact section in menu
|
55
|
+
* faicon: FavIcon to be displayed in menu
|
56
|
+
* url: URL for href
|
57
|
+
* target: target value of \<a> tag
|
41
58
|
|
42
59
|
Structure of `_data/metaData.yml`:
|
43
|
-
|
60
|
+
author: Site Author name
|
61
|
+
avatar_url: URL for avatar (for about page)
|
44
62
|
|
45
63
|
## Contributing
|
46
64
|
|
data/_data/menu.yml
CHANGED
@@ -2,14 +2,14 @@ menu_title: Example menu title
|
|
2
2
|
menu_headline: example menu headline
|
3
3
|
menu_intro: Hi! This is an example of intro that you could write for your jekyll minimal-categorized theme!
|
4
4
|
show_menu_on_category_select: False
|
5
|
-
minimal_menu:
|
6
|
-
menu_logo:
|
5
|
+
minimal_menu: True
|
6
|
+
menu_logo: assets/img/avatar.png
|
7
7
|
|
8
8
|
menu_pages:
|
9
9
|
- title: Category 1
|
10
10
|
url: /category-1.html
|
11
11
|
show_on_home: True
|
12
|
-
image_url:
|
12
|
+
image_url: assets/img/category-1.jpg
|
13
13
|
icon_name: fas fa-dice
|
14
14
|
category: category-1
|
15
15
|
tooltip: This is category 1
|
@@ -17,7 +17,7 @@ menu_pages:
|
|
17
17
|
- title: Category 2
|
18
18
|
url: /category-2.html
|
19
19
|
show_on_home: True
|
20
|
-
image_url:
|
20
|
+
image_url: assets/img/category-2.jpg
|
21
21
|
icon_name: fas fa-cogs
|
22
22
|
category: category-2
|
23
23
|
tooltip: This is category 2
|
data/_data/metaData.yml
CHANGED
@@ -0,0 +1,5 @@
|
|
1
|
+
<meta charset="utf-8">
|
2
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
3
|
+
<title>{{ page.title }}</title>
|
4
|
+
<link rel="stylesheet" href="{{ '/assets/styles/styles.css' | relative_url }}">
|
5
|
+
<script src="https://kit.fontawesome.com/79c31398dc.js" crossorigin="anonymous"></script>
|
data/_includes/menu.html
CHANGED
@@ -3,14 +3,19 @@ layout: default
|
|
3
3
|
---
|
4
4
|
<div class="content-container category-aggregator {{ page.category }}">
|
5
5
|
<h1>{{ page.title }}</h1>
|
6
|
+
<p>{{ page.summary }}</p>
|
6
7
|
{{content}}
|
7
|
-
<hr>
|
8
|
+
<hr class="content-separator">
|
8
9
|
{% for post in site.posts %}
|
9
10
|
{% if post.category == page.category %}
|
10
11
|
<article>
|
11
12
|
<header>
|
12
13
|
<h2>
|
14
|
+
{% if post.external_url %}
|
15
|
+
<a href="{{ post.external_url | relative_url }}" target="_blank">
|
16
|
+
{% else %}
|
13
17
|
<a href="{{ post.url | relative_url }}">
|
18
|
+
{% endif %}
|
14
19
|
<i class="fas fa-angle-right"></i>
|
15
20
|
{{ post.title }}
|
16
21
|
</a>
|
@@ -22,6 +27,18 @@ layout: default
|
|
22
27
|
{{ post.summary }}
|
23
28
|
</p>
|
24
29
|
</section>
|
30
|
+
<span class="article-read">
|
31
|
+
{% if post.external_url %}
|
32
|
+
<a href="{{ post.external_url | relative_url }}" target="_blank">
|
33
|
+
{% else %}
|
34
|
+
<a href="{{ post.url | relative_url }}">
|
35
|
+
{% endif %} {% if post.external_name %}
|
36
|
+
Read more on {{ post.external_name }} →
|
37
|
+
{% else %}
|
38
|
+
Read more →
|
39
|
+
{% endif %}
|
40
|
+
</a>
|
41
|
+
</span>
|
25
42
|
<hr>
|
26
43
|
</article>
|
27
44
|
{% endif %}
|
data/_layouts/default.html
CHANGED
@@ -1,13 +1,14 @@
|
|
1
1
|
<!doctype html>
|
2
2
|
<html>
|
3
3
|
<head>
|
4
|
-
|
5
|
-
<title>{{ page.title }}</title>
|
6
|
-
<link rel="stylesheet" href="{{ '/assets/styles/styles.css' | relative_url }}">
|
7
|
-
<script src="https://kit.fontawesome.com/79c31398dc.js" crossorigin="anonymous"></script>
|
4
|
+
{% include common-head.html %}
|
8
5
|
</head>
|
6
|
+
{% if site.data.menu.minimal_menu %}
|
7
|
+
<body class="is-minimal-menu" >
|
8
|
+
{% else %}
|
9
9
|
<body>
|
10
|
-
|
10
|
+
{% endif %}
|
11
|
+
{% include menu.html %}
|
11
12
|
<main class="content-layout">
|
12
13
|
{{ content }}
|
13
14
|
{% include footer.html %}
|
data/_layouts/home.html
CHANGED
@@ -1,15 +1,16 @@
|
|
1
1
|
<!doctype html>
|
2
2
|
<html>
|
3
3
|
<head>
|
4
|
-
|
5
|
-
<title>{{ page.title }}</title>
|
6
|
-
<link rel="stylesheet" href="{{ '/assets/styles/styles.css' | relative_url }}">
|
7
|
-
<script src="https://kit.fontawesome.com/79c31398dc.js" crossorigin="anonymous"></script>
|
4
|
+
{% include common-head.html %}
|
8
5
|
<script>
|
9
6
|
{% include home.js %}
|
10
7
|
</script>
|
11
8
|
</head>
|
9
|
+
{% if site.data.menu.minimal_menu %}
|
10
|
+
<body class="is-minimal-menu" >
|
11
|
+
{% else %}
|
12
12
|
<body>
|
13
|
+
{% endif %}
|
13
14
|
{% if site.data.menu.show_menu_on_category_select %}
|
14
15
|
{% include menu.html %}
|
15
16
|
<main class="content-layout">
|
data/_layouts/post.html
CHANGED
@@ -2,19 +2,38 @@
|
|
2
2
|
color: $p_dark;
|
3
3
|
a {
|
4
4
|
color: $secondary;
|
5
|
+
&:hover {
|
6
|
+
color: darken($secondary, 10%);
|
7
|
+
}
|
5
8
|
}
|
6
9
|
hr {
|
7
10
|
border: 0;
|
8
11
|
height: 0;
|
9
12
|
border-top: 1px solid rgba(0, 0, 0, 0.1);
|
10
13
|
border-bottom: 1px solid rgba(255, 255, 255, 0.3);
|
14
|
+
margin: $gap auto $gap * 0.5 auto;
|
11
15
|
}
|
12
|
-
|
13
|
-
|
14
|
-
|
16
|
+
article {
|
17
|
+
position: relative;
|
18
|
+
.article-date {
|
19
|
+
font-weight: 700;
|
20
|
+
padding-left: 18px;
|
21
|
+
font-style: italic;
|
22
|
+
margin-top: -0.8em;
|
23
|
+
color: rgba(0, 0, 0, 0.4);
|
24
|
+
font-size: 0.9em;
|
25
|
+
}
|
26
|
+
.article-read {
|
27
|
+
position: absolute;
|
28
|
+
right: 10px;
|
29
|
+
font-size: 0.8em;
|
30
|
+
bottom: 0;
|
31
|
+
}
|
15
32
|
}
|
16
33
|
section {
|
17
34
|
p {
|
35
|
+
width: 90%;
|
36
|
+
line-height: 1.7em;
|
18
37
|
padding-left: 18px;
|
19
38
|
}
|
20
39
|
}
|
data/_sass/styles/_defaults.scss
CHANGED
@@ -1,15 +1,12 @@
|
|
1
|
-
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
|
2
|
-
|
3
1
|
h1 {
|
4
2
|
text-transform: uppercase;
|
5
3
|
font-weight: 700;
|
6
4
|
text-rendering: optimizeLegibility;
|
7
|
-
line-height: 1.1;
|
8
5
|
color: inherit;
|
9
6
|
text-align: center;
|
10
|
-
|
11
|
-
font-size: 4em;
|
7
|
+
font-size: 2.5em;
|
12
8
|
letter-spacing: -1px;
|
9
|
+
margin: 1em 50px 1em;
|
13
10
|
}
|
14
11
|
|
15
12
|
h2 {
|
@@ -18,19 +15,44 @@ h2 {
|
|
18
15
|
color: $secondary;
|
19
16
|
}
|
20
17
|
|
21
|
-
|
18
|
+
* {
|
19
|
+
padding: 0;
|
20
|
+
margin: 0;
|
21
|
+
box-sizing: border-box;
|
22
|
+
line-height: 1.7em;
|
23
|
+
}
|
24
|
+
body {
|
25
|
+
font-size: 16px;
|
22
26
|
color: $base-white;
|
23
|
-
font-family:
|
27
|
+
font-family: forma-djr-micro,Arial,sans-serif;
|
24
28
|
}
|
25
29
|
main {
|
26
30
|
.content-container {
|
27
31
|
margin: 0px auto;
|
28
32
|
max-width: 960px;
|
33
|
+
width: 90%;
|
29
34
|
padding: 0px 18px 24px;
|
30
35
|
flex-grow: 1;
|
36
|
+
|
37
|
+
.content-separator {
|
38
|
+
margin: $gap auto;
|
39
|
+
}
|
31
40
|
}
|
32
41
|
}
|
33
42
|
a {
|
34
43
|
text-decoration-line: none;
|
35
44
|
color: inherit;
|
45
|
+
}
|
46
|
+
|
47
|
+
a, p {
|
48
|
+
font-size: 1.1em;
|
49
|
+
}
|
50
|
+
|
51
|
+
@include mobile {
|
52
|
+
body {
|
53
|
+
font-size: 13px;
|
54
|
+
}
|
55
|
+
h1 {
|
56
|
+
font-size: 2em;
|
57
|
+
}
|
36
58
|
}
|
data/_sass/styles/_layout.scss
CHANGED
@@ -1,4 +1,3 @@
|
|
1
|
-
|
2
1
|
main {
|
3
2
|
background-color: $main-bg-color;
|
4
3
|
color: black;
|
@@ -34,4 +33,16 @@ footer {
|
|
34
33
|
p {
|
35
34
|
margin: 0;
|
36
35
|
}
|
36
|
+
}
|
37
|
+
|
38
|
+
.is-minimal-menu {
|
39
|
+
main {
|
40
|
+
width: $content-width-desktop-minimal-menu;
|
41
|
+
left: $minimal-menu-size;
|
42
|
+
@include mobile {
|
43
|
+
top: $minimal-menu-size;
|
44
|
+
left: 0;
|
45
|
+
width: 100%;
|
46
|
+
}
|
47
|
+
}
|
37
48
|
}
|
data/_sass/styles/_menu.scss
CHANGED
@@ -33,9 +33,6 @@
|
|
33
33
|
padding: 3px 10px 3px 10px;
|
34
34
|
}
|
35
35
|
}
|
36
|
-
h1 {
|
37
|
-
font-size: 2.5em;
|
38
|
-
}
|
39
36
|
ul {
|
40
37
|
@include mobile {
|
41
38
|
display: flex;
|
@@ -57,7 +54,6 @@
|
|
57
54
|
letter-spacing: 1px;
|
58
55
|
line-height: 28px;
|
59
56
|
&:hover {
|
60
|
-
text-decoration: underline;
|
61
57
|
font-weight: 900;
|
62
58
|
color: $p_lighter;
|
63
59
|
|
@@ -78,6 +74,11 @@
|
|
78
74
|
}
|
79
75
|
}
|
80
76
|
|
77
|
+
h1 {
|
78
|
+
font-size: 2em;
|
79
|
+
margin: 0.5em;
|
80
|
+
}
|
81
|
+
|
81
82
|
h2 {
|
82
83
|
color: darken($color: $s_text, $amount: 25);
|
83
84
|
font-weight: 400;
|
@@ -87,18 +88,26 @@
|
|
87
88
|
|
88
89
|
|
89
90
|
&-contact {
|
90
|
-
@include mobile{
|
91
|
-
a {
|
92
|
-
margin-top: 8px;
|
93
|
-
height: calc(#{$menu-size} - 10px);
|
94
|
-
width: calc(#{$menu-size} - 10px);
|
95
|
-
font-size: 30px;
|
96
|
-
}
|
97
|
-
}
|
98
91
|
display:flex;
|
99
92
|
justify-content:center;
|
100
93
|
margin-bottom: 20px;
|
101
94
|
flex-wrap: wrap;
|
95
|
+
@include mobile{
|
96
|
+
font-size: 16px;
|
97
|
+
max-height: $menu-size;
|
98
|
+
margin-bottom: 0;
|
99
|
+
display: inline-grid;
|
100
|
+
grid-template-rows: 50% 50%;
|
101
|
+
a:nth-child(odd) {
|
102
|
+
grid-row-start: 1;
|
103
|
+
}
|
104
|
+
a:nth-child(even) {
|
105
|
+
grid-row-start: 2;
|
106
|
+
}
|
107
|
+
a:nth-child(odd):last-child {
|
108
|
+
margin-top: 13px;
|
109
|
+
}
|
110
|
+
}
|
102
111
|
a {
|
103
112
|
color: $p_lighter;
|
104
113
|
cursor:pointer;
|
@@ -112,14 +121,25 @@
|
|
112
121
|
}
|
113
122
|
}
|
114
123
|
}
|
124
|
+
}
|
115
125
|
|
116
|
-
|
126
|
+
.is-minimal-menu {
|
127
|
+
.menu {
|
128
|
+
width: $minimal-menu-size;
|
129
|
+
@include mobile {
|
130
|
+
height: $minimal-menu-size;
|
131
|
+
width: 100%;
|
132
|
+
}
|
117
133
|
ul {
|
118
134
|
li {
|
119
135
|
a {
|
120
136
|
i {
|
121
137
|
margin: 0;
|
122
138
|
}
|
139
|
+
@include mobile {
|
140
|
+
height: calc(#{$minimal-menu-size} - 10px);
|
141
|
+
width: $minimal-menu-size;
|
142
|
+
}
|
123
143
|
}
|
124
144
|
}
|
125
145
|
}
|
@@ -0,0 +1,27 @@
|
|
1
|
+
.post {
|
2
|
+
a {
|
3
|
+
text-decoration-line: none;
|
4
|
+
color: $secondary;
|
5
|
+
&:hover {
|
6
|
+
text-decoration: underline;
|
7
|
+
font-weight: 500;
|
8
|
+
}
|
9
|
+
}
|
10
|
+
code {
|
11
|
+
&.language-plaintext {
|
12
|
+
border-radius: 3px;
|
13
|
+
padding: 1px 3px;
|
14
|
+
background-color:rgb(228, 230, 232);
|
15
|
+
}
|
16
|
+
|
17
|
+
}
|
18
|
+
figure {
|
19
|
+
margin: 0;
|
20
|
+
img {
|
21
|
+
width: 100%;
|
22
|
+
background-repeat: no-repeat;
|
23
|
+
background-size: cover;
|
24
|
+
}
|
25
|
+
}
|
26
|
+
|
27
|
+
}
|
@@ -1,6 +1,11 @@
|
|
1
|
-
$content-width-desktop: calc(100% - #{$menu-size});
|
2
1
|
$tablet-width: 768px;
|
3
2
|
$desktop-width: 1024px;
|
3
|
+
$menu-size: 200px;
|
4
|
+
$minimal-menu-size: 50px;
|
5
|
+
$gap: 30px;
|
6
|
+
|
7
|
+
$content-width-desktop: calc(100% - #{$menu-size});
|
8
|
+
$content-width-desktop-minimal-menu: calc(100% - #{$minimal-menu-size});
|
4
9
|
@mixin tablet {
|
5
10
|
@media only screen and (min-width: #{$tablet-width}) and (max-width: #{$desktop-width - 1px}) {
|
6
11
|
@content;
|
data/assets/styles/styles.scss
CHANGED
data/pages/about.html
CHANGED
@@ -7,11 +7,10 @@ category: about
|
|
7
7
|
---
|
8
8
|
<div class="profile">
|
9
9
|
<div class="avatar">
|
10
|
-
<a href="
|
10
|
+
<a href="about.html" alt="avatar">
|
11
11
|
<img src="{{ site.data.metaData.avatar_url }}" alt="avatar" onerror="this.style.display='none'">
|
12
12
|
</a>
|
13
13
|
</div>
|
14
|
-
<h1>{{ site.data.menu.menu_title }}</h1>
|
15
14
|
<h2>{{ site.data.menu.menu_headline }}</h2>
|
16
15
|
<p>{{ site.data.menu.menu_intro }}</p>
|
17
16
|
</div>
|
data/pages/category-1.html
CHANGED
@@ -3,14 +3,6 @@ title: Category 1
|
|
3
3
|
layout: category-aggregator
|
4
4
|
permalink: category-1.html
|
5
5
|
category: category-1
|
6
|
+
summary: Summary of a category. It is just a special placeholder wrapped in a particular class, so it looks more interesting. You can always make your own layout for a category, or make a category.html look the way you want.
|
6
7
|
---
|
7
8
|
|
8
|
-
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse efficitur turpis nec tortor sagittis, in tincidunt lectus iaculis. Sed tempor ligula ac nulla dictum, quis luctus tortor pretium. Suspendisse vitae nibh id sapien tempus posuere eu id ante. Fusce nec neque nisl. Suspendisse velit elit, euismod et lacus a, commodo mollis ligula. Duis non nibh gravida, interdum tellus sed, aliquam libero. Ut et tempor velit. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas.
|
9
|
-
|
10
|
-
Maecenas egestas eu nulla sed facilisis. Phasellus suscipit varius nibh, nec pharetra velit dignissim vel. Proin eget sapien nec massa ornare ornare. Vestibulum mattis placerat sapien, vel cursus est pretium nec. Sed at est eget enim semper scelerisque. Proin massa massa, luctus vel ante nec, dignissim molestie leo. Nulla auctor et ligula nec mollis. Fusce lectus lorem, hendrerit et metus suscipit, molestie commodo eros.
|
11
|
-
|
12
|
-
Aliquam tempor porttitor mi. Aliquam et sapien faucibus, mattis purus sed, malesuada urna. Ut eget enim urna. Duis tempus est vel tincidunt luctus. Nunc commodo ante nec orci scelerisque, eu lobortis massa fermentum. Nunc sagittis eros at sapien volutpat aliquet. Donec posuere efficitur laoreet. Ut ornare tellus ut ipsum hendrerit, vitae varius ante pharetra. Suspendisse fringilla leo erat, dignissim auctor ex ultrices a. Sed ultrices blandit eros. Pellentesque volutpat ultrices sem, vel semper enim fermentum eu. Nulla eget eros ipsum. Sed hendrerit et arcu vitae pulvinar. Vivamus facilisis, eros eu gravida rhoncus, enim felis suscipit leo, vitae lacinia magna nisl hendrerit est. Cras eget blandit ante. Aenean tincidunt blandit lacus, vitae porta ipsum viverra et.
|
13
|
-
|
14
|
-
Proin urna lorem, pulvinar quis orci non, accumsan pharetra erat. Aliquam vulputate aliquam tellus, ac sollicitudin nibh fermentum in. Sed malesuada nisl mi, vitae lobortis massa pretium ut. Nunc risus diam, consectetur non congue sed, rutrum eu eros. Integer sed aliquet sapien, a porttitor ex. Nam sed auctor augue, vitae cursus arcu. Donec vehicula viverra scelerisque.
|
15
|
-
|
16
|
-
Duis quis mattis eros, gravida convallis dui. Nullam venenatis nisi mauris, eu consequat purus fermentum non. Suspendisse libero ipsum, tristique non efficitur ultrices, fringilla vulputate purus. Nullam laoreet lacus non sapien euismod, in viverra augue feugiat. Integer congue varius risus at cursus. Aenean tincidunt arcu vitae massa eleifend porta. Nullam facilisis eros rhoncus metus tincidunt tempus. Maecenas viverra urna mi, id rhoncus lectus aliquet maximus. Pellentesque vulputate turpis ut nulla lobortis, at ullamcorper sem sodales. Phasellus fringilla neque ut libero condimentum fermentum. Sed lobortis, felis mollis porta lacinia, nibh neque maximus ante, non eleifend dolor nunc dictum velit. Sed lacinia ut quam et dapibus.
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: minimal-categorized
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Patryk Bieszke
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-11-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -37,6 +37,7 @@ files:
|
|
37
37
|
- _config.yml
|
38
38
|
- _data/menu.yml
|
39
39
|
- _data/metaData.yml
|
40
|
+
- _includes/common-head.html
|
40
41
|
- _includes/footer.html
|
41
42
|
- _includes/home.js
|
42
43
|
- _includes/menu.html
|
@@ -51,6 +52,7 @@ files:
|
|
51
52
|
- _sass/styles/_index.scss
|
52
53
|
- _sass/styles/_layout.scss
|
53
54
|
- _sass/styles/_menu.scss
|
55
|
+
- _sass/styles/_post.scss
|
54
56
|
- _sass/styles/_profile.scss
|
55
57
|
- _sass/variables/_colors.scss
|
56
58
|
- _sass/variables/_index.scss
|