jekyll-theme-minimalistic 0.2.21 → 0.3.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_includes/footer.html +1 -1
- data/_includes/head-custom.html +0 -1
- data/_includes/header.html +27 -0
- data/_layouts/default.html +4 -28
- data/_sass/colors.scss +36 -34
- data/_sass/jekyll-theme-minimalistic.scss +11 -1
- data/_sass/rouge-github.scss +49 -174
- data/assets/css/colors-auto.scss +2 -2
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 35e636d23476097f0b30bc9341812c08773ee6f950037258d61fc618492ca9e1
|
4
|
+
data.tar.gz: 2ecf2d2e7176219dd8c012727f26da7590054d687ea908837e44829487b845ba
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4686aecbe73980753d70898136639f8e303aa0b90156af3e4e64ca5150227d10a86bc3bcc41f5c7ac7d9ee0041e095fad11a9759eca8e0b6857a6075ffcbbdd4
|
7
|
+
data.tar.gz: a3a8f627a3264f5f25e92b948a65669ad4f259c41c1b73f5aebd86001d7a627baff7b55acb68a78cc8ab47637eba6c79a20ea624e5cf7e46b222c8fb84f8dc6d
|
data/_includes/footer.html
CHANGED
@@ -3,4 +3,4 @@
|
|
3
3
|
<p>This project is maintained by <a href="{{ site.github.owner_url }}">{{ site.github.owner_name }}</a></p>
|
4
4
|
{% endif %}
|
5
5
|
{% endunless %}
|
6
|
-
<p><small>Powered by <a href="https://jekyllrb.com/">Jekyll</a> &
|
6
|
+
<p><small>Powered by <a href="https://jekyllrb.com/">Jekyll</a> & <a href="https://github.com/vaibhavvikas/jekyll-theme-minimalistic">Minimalistic</a></small></p>
|
data/_includes/head-custom.html
CHANGED
@@ -0,0 +1,27 @@
|
|
1
|
+
{% if site.logo %}
|
2
|
+
<img class="logo" src="{{ site.logo | relative_url }}" alt="Logo">
|
3
|
+
{% endif %}
|
4
|
+
|
5
|
+
{% if site.blank_title %}
|
6
|
+
<h1>{{ site.title | default: site.github.repository_name }}</h1>
|
7
|
+
{% else %}
|
8
|
+
<h1><a href="{{ "/" | absolute_url }}">{{ site.title | default: site.github.repository_name }}</a></h1>
|
9
|
+
{% endif %}
|
10
|
+
|
11
|
+
{% if site.email %}
|
12
|
+
<p class="addr"><i class="fa-solid fa-envelope"></i> <a href="mailto:{{site.email}}">{{ site.email }}</a></p>
|
13
|
+
{% endif %}
|
14
|
+
|
15
|
+
<p>{{ site.description | default: site.github.project_tagline }}</p>
|
16
|
+
|
17
|
+
{% unless site.hide_project_page %}
|
18
|
+
{% if site.github.is_project_page %}
|
19
|
+
<p class="view"><a href="{{ site.github.repository_url }}">View the Project on GitHub<br><small>{{ site.github.repository_nwo }}</small></a></p>
|
20
|
+
{% endif %}
|
21
|
+
|
22
|
+
{% if site.github.is_user_page %}
|
23
|
+
<p class="view"><a href="{{ site.github.owner_url }}">View My GitHub Profile</a></p>
|
24
|
+
{% endif %}
|
25
|
+
{% endunless %}
|
26
|
+
|
27
|
+
{% include sidebar.html %}
|
data/_layouts/default.html
CHANGED
@@ -21,34 +21,7 @@
|
|
21
21
|
<div class="wrapper">
|
22
22
|
<div class="sidebar">
|
23
23
|
<header>
|
24
|
-
{
|
25
|
-
<img class="logo" src="{{site.logo | relative_url}}" alt="Logo">
|
26
|
-
{% endif %}
|
27
|
-
|
28
|
-
{% if site.blank_title %}
|
29
|
-
<h1>{{ site.title | default: site.github.repository_name }}</h1>
|
30
|
-
{% else %}
|
31
|
-
<h1><a href="{{ "/" | absolute_url }}">{{ site.title | default: site.github.repository_name }}</a></h1>
|
32
|
-
{% endif %}
|
33
|
-
|
34
|
-
{% if site.email %}
|
35
|
-
<p class="addr"><i class="fa-solid fa-envelope"></i> <a href="mailto:{{site.email}}">{{ site.email }}</a></p>
|
36
|
-
{% endif %}
|
37
|
-
|
38
|
-
<p>{{ site.description | default: site.github.project_tagline }}</p>
|
39
|
-
|
40
|
-
{% unless site.hide_project_page %}
|
41
|
-
{% if site.github.is_project_page %}
|
42
|
-
<p class="view"><a href="{{ site.github.repository_url }}">View the Project on GitHub<br><small>{{ site.github.repository_nwo }}</small></a></p>
|
43
|
-
{% endif %}
|
44
|
-
|
45
|
-
{% if site.github.is_user_page %}
|
46
|
-
<p class="view"><a href="{{ site.github.owner_url }}">View My GitHub Profile</a></p>
|
47
|
-
{% endif %}
|
48
|
-
{% endunless %}
|
49
|
-
|
50
|
-
{% include sidebar.html %}
|
51
|
-
|
24
|
+
{%- include header.html -%}
|
52
25
|
</header>
|
53
26
|
<div class="sidebar-footer">
|
54
27
|
{%- include footer.html -%}
|
@@ -57,6 +30,9 @@
|
|
57
30
|
<section>
|
58
31
|
{{ content }}
|
59
32
|
</section>
|
33
|
+
<footer>
|
34
|
+
{%- include footer.html -%}
|
35
|
+
</footer>
|
60
36
|
</div>
|
61
37
|
<script src="{{ "/assets/js/scale.fix.js" | relative_url }}"></script>
|
62
38
|
</body>
|
data/_sass/colors.scss
CHANGED
@@ -35,10 +35,10 @@ hvr -> hover
|
|
35
35
|
|
36
36
|
@mixin colors {
|
37
37
|
// buttons
|
38
|
-
--L-a-text-hover-change: 0.8
|
38
|
+
--L-a-text-hover-change: 0.8;
|
39
39
|
--clr-a-text: hsl(200, 100%, var(--L-a-text));
|
40
40
|
--clr-a-text-hvr: hsl(200, 100%, calc(var(--L-a-text) * var(--L-a-text-hover-change)));
|
41
|
-
--clr-buttons-main-bg: hsl(0, 0%, var(--L-buttons-main-bg))
|
41
|
+
--clr-buttons-main-bg: hsl(0, 0%, var(--L-buttons-main-bg));
|
42
42
|
--clr-buttons-main-border: hsl(0, 0%, var(--L-buttons-main-border));
|
43
43
|
--clr-buttons-main-text: hsl(0, 0%, var(--L-buttons-main-text));
|
44
44
|
--clr-buttons-main-text-hover: hsl(0, 6%, var(--L-buttons-main-text-hover));
|
@@ -55,16 +55,17 @@ hvr -> hover
|
|
55
55
|
//kbd these are keyboard shortcuts eg <kbd>CMD+R</kbd>
|
56
56
|
--clr-kbd-bg: hsl(210, 25%, var(--L-kbd-bg));
|
57
57
|
--clr-kbd-border: hsl(212.7, 10.7%, var(--L-kbd-border));
|
58
|
-
--clr-kbd-border-bottom-and-shadow: hsl(210, 8.2%, var(--L-kbd-border-bottom-and-shadow))
|
58
|
+
--clr-kbd-border-bottom-and-shadow: hsl(210, 8.2%, var(--L-kbd-border-bottom-and-shadow));
|
59
59
|
--clr-kbd-text: hsl(210, 11.7%, var(--L-kbd-text));
|
60
60
|
// miscellaneous
|
61
61
|
--clr-bg: hsl(0, 0%, var(--L-bg));//the bg of the page
|
62
|
-
--clr-splitter-blockquote-and-section: hsl(0, 0%, var(--L-splitter-blockquote-and-section))
|
63
|
-
--clr-small-in-a: hsl(0, 0%, var(--L-small-in-a))
|
64
|
-
--clr-table-header-and-dt: hsl(0, 0%, var(--L-table-header-and-dt));
|
62
|
+
--clr-splitter-blockquote-and-section: hsl(0, 0%, var(--L-splitter-blockquote-and-section));
|
63
|
+
--clr-small-in-a: hsl(0, 0%, var(--L-small-in-a));
|
64
|
+
--clr-table-header-and-dt: hsl(0, 0%, var(--L-table-header-and-dt));
|
65
65
|
}
|
66
66
|
|
67
67
|
@mixin light-colors {
|
68
|
+
color-scheme: light;
|
68
69
|
// buttons
|
69
70
|
--L-a-text: 35%;
|
70
71
|
--L-buttons-main-bg: 96%;
|
@@ -89,36 +90,37 @@ hvr -> hover
|
|
89
90
|
--L-kbd-text: 30%;
|
90
91
|
// miscellaneous
|
91
92
|
--L-bg: 100%;
|
92
|
-
--L-splitter-blockquote-and-section: 90
|
93
|
+
--L-splitter-blockquote-and-section: 90%;
|
93
94
|
--L-small-in-a: 47%;
|
94
|
-
--L-table-header-and-dt: 27%;
|
95
|
+
--L-table-header-and-dt: 27%;
|
95
96
|
}
|
96
97
|
|
97
98
|
@mixin dark-colors {
|
98
|
-
|
99
|
-
|
100
|
-
--L-
|
101
|
-
--L-buttons-main-
|
102
|
-
--L-buttons-main-
|
103
|
-
--L-buttons-main-text
|
104
|
-
|
105
|
-
|
106
|
-
--L-
|
107
|
-
--L-
|
108
|
-
--L-
|
109
|
-
|
110
|
-
|
111
|
-
--L-code-
|
112
|
-
--L-code-
|
113
|
-
--L-code-
|
114
|
-
|
115
|
-
|
116
|
-
--L-kbd-
|
117
|
-
--L-kbd-border
|
118
|
-
--L-kbd-
|
119
|
-
|
120
|
-
|
121
|
-
--L-
|
122
|
-
--L-
|
123
|
-
--L-
|
99
|
+
color-scheme: dark;
|
100
|
+
// buttons
|
101
|
+
--L-a-text: 60%;
|
102
|
+
--L-buttons-main-bg: 17%;
|
103
|
+
--L-buttons-main-border: 26%;
|
104
|
+
--L-buttons-main-text: 76%;
|
105
|
+
--L-buttons-main-text-hover: 80%;
|
106
|
+
// headers + text
|
107
|
+
--L-h1-and-bold: 90%;
|
108
|
+
--L-h2: 83%;
|
109
|
+
--L-h-3-6: 76%;
|
110
|
+
--L-text: 70%;
|
111
|
+
// code blocks
|
112
|
+
--L-code-text: 80%;
|
113
|
+
--L-code-bg: 3%;
|
114
|
+
--L-code-border: 5%;
|
115
|
+
--L-code-bold-text: 100%;
|
116
|
+
//kbd these are keyboard shortcuts eg <kbd>CMD+R</kbd>
|
117
|
+
--L-kbd-bg: 30%;
|
118
|
+
--L-kbd-border: 45%;
|
119
|
+
--L-kbd-border-bottom-and-shadow: 55%;
|
120
|
+
--L-kbd-text: 100%;
|
121
|
+
// miscellaneous
|
122
|
+
--L-splitter-blockquote-and-section: 15%;
|
123
|
+
--L-bg: 10%;
|
124
|
+
--L-small-in-a: 60%;
|
125
|
+
--L-table-header-and-dt: 90%;
|
124
126
|
}
|
@@ -1,6 +1,6 @@
|
|
1
1
|
@import "fonts";
|
2
|
-
@import "rouge-github";
|
3
2
|
@import "colors";
|
3
|
+
@import "rouge-github";
|
4
4
|
|
5
5
|
body {
|
6
6
|
background-color: var(--clr-bg);
|
@@ -105,6 +105,8 @@ pre {
|
|
105
105
|
table {
|
106
106
|
width:100%;
|
107
107
|
border-collapse:collapse;
|
108
|
+
display: block;
|
109
|
+
overflow-x: auto;
|
108
110
|
}
|
109
111
|
|
110
112
|
th, td {
|
@@ -181,6 +183,10 @@ section {
|
|
181
183
|
padding-bottom:30px;
|
182
184
|
}
|
183
185
|
|
186
|
+
footer {
|
187
|
+
display: none;
|
188
|
+
}
|
189
|
+
|
184
190
|
small {
|
185
191
|
font-size:11px;
|
186
192
|
}
|
@@ -242,6 +248,10 @@ hr {
|
|
242
248
|
display: none;
|
243
249
|
}
|
244
250
|
|
251
|
+
footer {
|
252
|
+
display: initial;
|
253
|
+
}
|
254
|
+
|
245
255
|
div.wrapper {
|
246
256
|
width:auto;
|
247
257
|
margin:0;
|
data/_sass/rouge-github.scss
CHANGED
@@ -1,206 +1,81 @@
|
|
1
|
+
/*
|
2
|
+
generated by rouge http://rouge.jneen.net/
|
3
|
+
original base16 by Chris Kempson (https://github.com/chriskempson/base16)
|
4
|
+
*/
|
5
|
+
|
1
6
|
.highlight table td { padding: 5px; }
|
2
7
|
.highlight table pre { margin: 0; }
|
3
|
-
.highlight .
|
4
|
-
color: #
|
5
|
-
font-style: italic;
|
6
|
-
}
|
7
|
-
.highlight .cp {
|
8
|
-
color: #999999;
|
9
|
-
font-weight: bold;
|
10
|
-
}
|
11
|
-
.highlight .c1 {
|
12
|
-
color: #999988;
|
13
|
-
font-style: italic;
|
14
|
-
}
|
15
|
-
.highlight .cs {
|
16
|
-
color: #999999;
|
17
|
-
font-weight: bold;
|
18
|
-
font-style: italic;
|
19
|
-
}
|
20
|
-
.highlight .c, .highlight .cd {
|
21
|
-
color: #999988;
|
22
|
-
font-style: italic;
|
8
|
+
.highlight, .highlight .w {
|
9
|
+
color: #d0d0d0;
|
23
10
|
}
|
24
11
|
.highlight .err {
|
25
|
-
color: #
|
26
|
-
background-color: #
|
12
|
+
color: #151515;
|
13
|
+
background-color: #ac4142;
|
27
14
|
}
|
28
|
-
.highlight .
|
29
|
-
color: #
|
30
|
-
background-color: #ffdddd;
|
15
|
+
.highlight .c, .highlight .cd, .highlight .cm, .highlight .c1, .highlight .cs {
|
16
|
+
color: #888;
|
31
17
|
}
|
32
|
-
.highlight .
|
33
|
-
color: #
|
34
|
-
font-style: italic;
|
18
|
+
.highlight .cp {
|
19
|
+
color: #f4bf75;
|
35
20
|
}
|
36
|
-
.highlight .
|
37
|
-
color: #
|
21
|
+
.highlight .nt {
|
22
|
+
color: #f4bf75;
|
38
23
|
}
|
39
|
-
.highlight .
|
40
|
-
color: #
|
24
|
+
.highlight .o, .highlight .ow {
|
25
|
+
color: #d0d0d0;
|
41
26
|
}
|
42
|
-
.highlight .
|
43
|
-
color: #
|
44
|
-
background-color: #ddffdd;
|
27
|
+
.highlight .p, .highlight .pi {
|
28
|
+
color: #d0d0d0;
|
45
29
|
}
|
46
|
-
.highlight .
|
47
|
-
color: #
|
30
|
+
.highlight .gi {
|
31
|
+
color: #90a959;
|
48
32
|
}
|
49
|
-
.highlight .
|
50
|
-
color: #
|
33
|
+
.highlight .gd {
|
34
|
+
color: #ac4142;
|
51
35
|
}
|
52
|
-
.highlight .
|
36
|
+
.highlight .gh {
|
37
|
+
color: #6a9fb5;
|
53
38
|
font-weight: bold;
|
54
39
|
}
|
55
|
-
.highlight .
|
56
|
-
color: #
|
57
|
-
}
|
58
|
-
.highlight .gt {
|
59
|
-
color: #aa0000;
|
40
|
+
.highlight .k, .highlight .kn, .highlight .kp, .highlight .kr, .highlight .kv {
|
41
|
+
color: #aa759f;
|
60
42
|
}
|
61
43
|
.highlight .kc {
|
62
|
-
color: #
|
63
|
-
font-weight: bold;
|
64
|
-
}
|
65
|
-
.highlight .kd {
|
66
|
-
color: #000000;
|
67
|
-
font-weight: bold;
|
68
|
-
}
|
69
|
-
.highlight .kn {
|
70
|
-
color: #000000;
|
71
|
-
font-weight: bold;
|
72
|
-
}
|
73
|
-
.highlight .kp {
|
74
|
-
color: #000000;
|
75
|
-
font-weight: bold;
|
76
|
-
}
|
77
|
-
.highlight .kr {
|
78
|
-
color: #000000;
|
79
|
-
font-weight: bold;
|
44
|
+
color: #d28445;
|
80
45
|
}
|
81
46
|
.highlight .kt {
|
82
|
-
color: #
|
83
|
-
font-weight: bold;
|
84
|
-
}
|
85
|
-
.highlight .k, .highlight .kv {
|
86
|
-
color: #000000;
|
87
|
-
font-weight: bold;
|
88
|
-
}
|
89
|
-
.highlight .mf {
|
90
|
-
color: #009999;
|
91
|
-
}
|
92
|
-
.highlight .mh {
|
93
|
-
color: #009999;
|
94
|
-
}
|
95
|
-
.highlight .il {
|
96
|
-
color: #009999;
|
97
|
-
}
|
98
|
-
.highlight .mi {
|
99
|
-
color: #009999;
|
100
|
-
}
|
101
|
-
.highlight .mo {
|
102
|
-
color: #009999;
|
103
|
-
}
|
104
|
-
.highlight .m, .highlight .mb, .highlight .mx {
|
105
|
-
color: #009999;
|
106
|
-
}
|
107
|
-
.highlight .sb {
|
108
|
-
color: #d14;
|
109
|
-
}
|
110
|
-
.highlight .sc {
|
111
|
-
color: #d14;
|
112
|
-
}
|
113
|
-
.highlight .sd {
|
114
|
-
color: #d14;
|
47
|
+
color: #d28445;
|
115
48
|
}
|
116
|
-
.highlight .
|
117
|
-
color: #
|
118
|
-
}
|
119
|
-
.highlight .se {
|
120
|
-
color: #d14;
|
121
|
-
}
|
122
|
-
.highlight .sh {
|
123
|
-
color: #d14;
|
124
|
-
}
|
125
|
-
.highlight .si {
|
126
|
-
color: #d14;
|
49
|
+
.highlight .kd {
|
50
|
+
color: #d28445;
|
127
51
|
}
|
128
|
-
.highlight .sx {
|
129
|
-
color: #
|
52
|
+
.highlight .s, .highlight .sb, .highlight .sc, .highlight .sd, .highlight .s2, .highlight .sh, .highlight .sx, .highlight .s1 {
|
53
|
+
color: #90a959;
|
130
54
|
}
|
131
55
|
.highlight .sr {
|
132
|
-
color: #
|
133
|
-
}
|
134
|
-
.highlight .s1 {
|
135
|
-
color: #d14;
|
136
|
-
}
|
137
|
-
.highlight .ss {
|
138
|
-
color: #990073;
|
139
|
-
}
|
140
|
-
.highlight .s {
|
141
|
-
color: #d14;
|
56
|
+
color: #75b5aa;
|
142
57
|
}
|
143
|
-
.highlight .
|
144
|
-
color: #
|
58
|
+
.highlight .si {
|
59
|
+
color: #8f5536;
|
145
60
|
}
|
146
|
-
.highlight .
|
147
|
-
color: #
|
61
|
+
.highlight .se {
|
62
|
+
color: #8f5536;
|
148
63
|
}
|
149
|
-
.highlight .
|
150
|
-
color: #
|
64
|
+
.highlight .nn {
|
65
|
+
color: #f4bf75;
|
151
66
|
}
|
152
67
|
.highlight .nc {
|
153
|
-
color: #
|
154
|
-
font-weight: bold;
|
68
|
+
color: #f4bf75;
|
155
69
|
}
|
156
70
|
.highlight .no {
|
157
|
-
color: #
|
71
|
+
color: #f4bf75;
|
158
72
|
}
|
159
|
-
.highlight .
|
160
|
-
color: #
|
161
|
-
font-weight: bold;
|
162
|
-
}
|
163
|
-
.highlight .ni {
|
164
|
-
color: #800080;
|
165
|
-
}
|
166
|
-
.highlight .ne {
|
167
|
-
color: #990000;
|
168
|
-
font-weight: bold;
|
169
|
-
}
|
170
|
-
.highlight .nf {
|
171
|
-
color: #990000;
|
172
|
-
font-weight: bold;
|
173
|
-
}
|
174
|
-
.highlight .nl {
|
175
|
-
color: #990000;
|
176
|
-
font-weight: bold;
|
177
|
-
}
|
178
|
-
.highlight .nn {
|
179
|
-
color: #555555;
|
180
|
-
}
|
181
|
-
.highlight .nt {
|
182
|
-
color: #4d4dc0;
|
183
|
-
}
|
184
|
-
.highlight .vc {
|
185
|
-
color: #008080;
|
186
|
-
}
|
187
|
-
.highlight .vg {
|
188
|
-
color: #008080;
|
189
|
-
}
|
190
|
-
.highlight .vi {
|
191
|
-
color: #008080;
|
192
|
-
}
|
193
|
-
.highlight .nv {
|
194
|
-
color: #008080;
|
195
|
-
}
|
196
|
-
.highlight .ow {
|
197
|
-
color: #000000;
|
198
|
-
font-weight: bold;
|
199
|
-
}
|
200
|
-
.highlight .o {
|
201
|
-
color: #000000;
|
202
|
-
font-weight: bold;
|
73
|
+
.highlight .na {
|
74
|
+
color: #6a9fb5;
|
203
75
|
}
|
204
|
-
.highlight .
|
205
|
-
color: #
|
76
|
+
.highlight .m, .highlight .mf, .highlight .mh, .highlight .mi, .highlight .il, .highlight .mo, .highlight .mb, .highlight .mx {
|
77
|
+
color: #90a959;
|
206
78
|
}
|
79
|
+
.highlight .ss {
|
80
|
+
color: #90a959;
|
81
|
+
}
|
data/assets/css/colors-auto.scss
CHANGED
@@ -4,7 +4,7 @@
|
|
4
4
|
@import "colors";
|
5
5
|
|
6
6
|
// this mode is like colors-auto but if the device does not support
|
7
|
-
// @media prefers-color-scheme it will default to
|
7
|
+
// @media prefers-color-scheme it will default to dark mode
|
8
8
|
:root {
|
9
9
|
@include colors;
|
10
10
|
@include light-colors;
|
@@ -17,7 +17,7 @@
|
|
17
17
|
}
|
18
18
|
|
19
19
|
@media print, (prefers-color-scheme: light) {
|
20
|
-
//we would not like to apply dark mode if content is on printer
|
20
|
+
// we would not like to apply dark mode if content is on printer
|
21
21
|
// as that would use a lot of ink
|
22
22
|
:root {
|
23
23
|
@include light-colors;
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-theme-minimalistic
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2
|
4
|
+
version: 0.3.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Vaibhav Vikas
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2022-07-
|
12
|
+
date: 2022-07-08 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: jekyll
|
@@ -127,6 +127,7 @@ files:
|
|
127
127
|
- _includes/footer.html
|
128
128
|
- _includes/head-custom-google-analytics.html
|
129
129
|
- _includes/head-custom.html
|
130
|
+
- _includes/header.html
|
130
131
|
- _includes/sidebar.html
|
131
132
|
- _layouts/default.html
|
132
133
|
- _layouts/post.html
|