whiteblog-theme 0.0.2 → 0.0.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/LICENSE.txt +21 -21
- data/README.md +70 -70
- data/_includes/comments-providers/disqus.html +15 -0
- data/_includes/footer.html +9 -9
- data/_includes/head.html +20 -20
- data/_includes/header.html +37 -67
- data/_layouts/allposts.html +34 -34
- data/_layouts/categories.html +24 -0
- data/_layouts/default.html +26 -26
- data/_layouts/home.html +35 -35
- data/_layouts/page.html +13 -13
- data/_layouts/post.html +51 -47
- data/_sass/whiteblog-theme/_layout.scss +202 -150
- data/_sass/whiteblog-theme/_syntax-highlighting.scss +64 -64
- data/_sass/whiteblog-theme.scss +5 -6
- metadata +9 -8
- data/_sass/whiteblog-theme/_category-colors.scss +0 -26
data/_layouts/post.html
CHANGED
@@ -1,47 +1,51 @@
|
|
1
|
-
---
|
2
|
-
layout: default
|
3
|
-
---
|
4
|
-
<article class="post">
|
5
|
-
|
6
|
-
<
|
7
|
-
<
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
{%
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
<
|
35
|
-
|
36
|
-
|
37
|
-
{%
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
</div>
|
46
|
-
|
47
|
-
|
1
|
+
---
|
2
|
+
layout: default
|
3
|
+
---
|
4
|
+
<article class="post container">
|
5
|
+
|
6
|
+
<div class="container" id="posts-navigation">
|
7
|
+
<div class="row">
|
8
|
+
<div class="previous col text-left">
|
9
|
+
{% if page.previous.url %}
|
10
|
+
<a href="{{page.previous.url}}">« {{page.previous.title}}</a>
|
11
|
+
{% endif %}
|
12
|
+
</div>
|
13
|
+
<div class="next col">
|
14
|
+
{% if page.next.url %}
|
15
|
+
<a class="next" href="{{page.next.url}}">{{page.next.title}} »</a>
|
16
|
+
{% endif %}
|
17
|
+
</div>
|
18
|
+
</div>
|
19
|
+
</div>
|
20
|
+
|
21
|
+
<header>
|
22
|
+
<h1 class="underline">{{ page.title | escape }}</h1>
|
23
|
+
<p class="text-secondary">
|
24
|
+
<i class="fa fa-calendar-alt"></i><span style="display:inline-block; width: 3px;"></span>
|
25
|
+
<time datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished">
|
26
|
+
{% assign date_format = site.theme.date_format | default: "%b %-d, %Y" %}
|
27
|
+
{{ page.date | date: date_format }}
|
28
|
+
</time><span style="display:inline-block; width: 6px;"></span>
|
29
|
+
{% if post %}
|
30
|
+
{% assign categories = post.categories %}
|
31
|
+
{% else %}
|
32
|
+
{% assign categories = page.categories %}
|
33
|
+
{% endif %}
|
34
|
+
<h5 id="category-badge">
|
35
|
+
{% for category in categories %}
|
36
|
+
<a href="{{site.baseurl}}/categories/#{{category|slugize}}" class="badge badge badge-bounce-in" >{{category}}</a>
|
37
|
+
{% unless forloop.last %} {% endunless %}
|
38
|
+
{% endfor %}
|
39
|
+
</h5>
|
40
|
+
</p>
|
41
|
+
</header>
|
42
|
+
|
43
|
+
<div class="text-justify" id="content">
|
44
|
+
{{ content }}
|
45
|
+
</div>
|
46
|
+
|
47
|
+
{% if site.comments.provider and page.comments %}
|
48
|
+
{% include comments.html %}
|
49
|
+
{% endif %}
|
50
|
+
|
51
|
+
</article>
|
@@ -1,151 +1,203 @@
|
|
1
|
-
@import url('https://fonts.googleapis.com/
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
.
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
}
|
44
|
-
|
45
|
-
|
46
|
-
transform
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
}
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
margin
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
}
|
112
|
-
|
113
|
-
.
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
bottom:
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
1
|
+
@import url('https://fonts.googleapis.com/css2?family=Nunito&Fira+Sans&family=Montserrat&display=swap');
|
2
|
+
|
3
|
+
//Color palette variables:
|
4
|
+
$background: #F5F5F5;
|
5
|
+
$navbar: #364F6B;
|
6
|
+
$highlight: #3FC1C9;
|
7
|
+
|
8
|
+
body {
|
9
|
+
background-color: $background;
|
10
|
+
font-family: "Montserrat";
|
11
|
+
overflow-y: scroll;
|
12
|
+
position: relative;
|
13
|
+
min-height: 100vh;
|
14
|
+
}
|
15
|
+
|
16
|
+
main {
|
17
|
+
padding-bottom: 2.5rem;
|
18
|
+
}
|
19
|
+
|
20
|
+
.container {
|
21
|
+
padding: 0em;
|
22
|
+
}
|
23
|
+
|
24
|
+
.navbar {
|
25
|
+
background-color: $navbar !important;
|
26
|
+
padding: 10px 16px !important;
|
27
|
+
a {
|
28
|
+
font-weight: 600;
|
29
|
+
}
|
30
|
+
}
|
31
|
+
|
32
|
+
.navbar-toggler {
|
33
|
+
border: none;
|
34
|
+
background: transparent !important;
|
35
|
+
|
36
|
+
&:hover {
|
37
|
+
background: transparent !important;
|
38
|
+
}
|
39
|
+
|
40
|
+
.icon-bar {
|
41
|
+
width: 22px;
|
42
|
+
transition: all 0.2s;
|
43
|
+
}
|
44
|
+
|
45
|
+
.top-bar {
|
46
|
+
transform: rotate(45deg);
|
47
|
+
transform-origin: 10% 10%;
|
48
|
+
}
|
49
|
+
|
50
|
+
.middle-bar {
|
51
|
+
opacity: 0;
|
52
|
+
}
|
53
|
+
|
54
|
+
.bottom-bar {
|
55
|
+
transform: rotate(-45deg);
|
56
|
+
transform-origin: 10% 90%;
|
57
|
+
}
|
58
|
+
|
59
|
+
&.collapsed {
|
60
|
+
.top-bar {
|
61
|
+
transform: rotate(0);
|
62
|
+
}
|
63
|
+
.middle-bar {
|
64
|
+
opacity: 1;
|
65
|
+
}
|
66
|
+
.bottom-bar {
|
67
|
+
transform: rotate(0);
|
68
|
+
}
|
69
|
+
}
|
70
|
+
}
|
71
|
+
|
72
|
+
#nav-header {
|
73
|
+
border-bottom: 1px solid #e9ecef !important;
|
74
|
+
}
|
75
|
+
|
76
|
+
#nav-container {
|
77
|
+
height: 3.5rem;
|
78
|
+
}
|
79
|
+
|
80
|
+
.title-post-resume a {
|
81
|
+
color: #2F343D !important;
|
82
|
+
}
|
83
|
+
|
84
|
+
div#content.text-justify {
|
85
|
+
margin-top: 35px !important;
|
86
|
+
}
|
87
|
+
|
88
|
+
.post {
|
89
|
+
padding-top: 3rem!important;
|
90
|
+
height: 100%;
|
91
|
+
padding-bottom: 5em;
|
92
|
+
}
|
93
|
+
|
94
|
+
.posts-list {
|
95
|
+
padding-top: 1.5rem!important;
|
96
|
+
}
|
97
|
+
|
98
|
+
#content .py-2 {
|
99
|
+
padding-top: 1.5rem!important;
|
100
|
+
}
|
101
|
+
|
102
|
+
blockquote {
|
103
|
+
background: #f9f9f9;
|
104
|
+
border-left: 10px solid #5B6B84;
|
105
|
+
margin: 1.5em 0px;
|
106
|
+
padding: 0.5em 10px;
|
107
|
+
quotes: "\201C""\201D""\2018""\2019";
|
108
|
+
p {
|
109
|
+
display: inline;
|
110
|
+
}
|
111
|
+
}
|
112
|
+
|
113
|
+
.highlight pre {
|
114
|
+
border: 1px solid;
|
115
|
+
border-radius: .25rem;
|
116
|
+
padding: 0.75rem;
|
117
|
+
margin-bottom: 1rem;
|
118
|
+
white-space: pre-wrap;
|
119
|
+
}
|
120
|
+
|
121
|
+
.underline {
|
122
|
+
font-family: "Nunito";
|
123
|
+
display: table;
|
124
|
+
background: linear-gradient(180deg,rgba(255,255,255,0) 65%, $highlight 8px);
|
125
|
+
}
|
126
|
+
|
127
|
+
.post .text-secondary {
|
128
|
+
margin-bottom: 8px !important;
|
129
|
+
}
|
130
|
+
|
131
|
+
.row .previous, .row .next {
|
132
|
+
font-size: 20px;
|
133
|
+
text-align: right;
|
134
|
+
a {
|
135
|
+
color: #6f777d !important;
|
136
|
+
}
|
137
|
+
}
|
138
|
+
|
139
|
+
#post {
|
140
|
+
flex-grow: 1;
|
141
|
+
position: relative;
|
142
|
+
}
|
143
|
+
|
144
|
+
#posts-navigation {
|
145
|
+
padding-bottom: 1.5rem;
|
146
|
+
bottom: 0;
|
147
|
+
}
|
148
|
+
|
149
|
+
#site-footer {
|
150
|
+
color: #6f777d !important;
|
151
|
+
position: absolute;
|
152
|
+
bottom: 0;
|
153
|
+
width: 100%;
|
154
|
+
height: 4rem;
|
155
|
+
}
|
156
|
+
|
157
|
+
a.badge {
|
158
|
+
color: #fff;
|
159
|
+
background-color: #FC5185;
|
160
|
+
}
|
161
|
+
|
162
|
+
/* Categories: Effect */
|
163
|
+
|
164
|
+
#category-badge a:hover, #category-badge a:focus, #category-badge a:active {
|
165
|
+
color: #fff;
|
166
|
+
-webkit-transform: scale(1.2);
|
167
|
+
transform: scale(1.2);
|
168
|
+
-webkit-transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
|
169
|
+
transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
|
170
|
+
}
|
171
|
+
|
172
|
+
.badge-bounce-in {
|
173
|
+
display: inline-block;
|
174
|
+
vertical-align: middle;
|
175
|
+
-webkit-transform: perspective(1px) translateZ(0);
|
176
|
+
transform: perspective(2px) translateZ(0);
|
177
|
+
box-shadow: 0 0 1px rgba(0, 0, 0, 0);
|
178
|
+
-webkit-transition-duration: 0.5s;
|
179
|
+
transition-duration: 0.5s;
|
180
|
+
}
|
181
|
+
|
182
|
+
#content ul.posts-list h1 {
|
183
|
+
a::before {
|
184
|
+
transform: scaleX(0);
|
185
|
+
transform-origin: bottom right;
|
186
|
+
}
|
187
|
+
|
188
|
+
a:hover::before {
|
189
|
+
transform: scaleX(1);
|
190
|
+
transform-origin: bottom left;
|
191
|
+
}
|
192
|
+
|
193
|
+
a::before {
|
194
|
+
content: " ";
|
195
|
+
display: block;
|
196
|
+
position: absolute;
|
197
|
+
top: 0; right: 0; bottom: 0; left: 0;
|
198
|
+
inset: 0 0 0 0;
|
199
|
+
background: rgba(117, 11, 11, 0);
|
200
|
+
z-index: -1;
|
201
|
+
transition: transform .3s ease;
|
202
|
+
}
|
151
203
|
}
|
@@ -1,65 +1,65 @@
|
|
1
|
-
.highlight {
|
2
|
-
pre { background-color: #272822; }
|
3
|
-
.hll { background-color: #272822; }
|
4
|
-
.c { color: #75715e } /* Comment */
|
5
|
-
.err { color: #960050; background-color: #1e0010 } /* Error */
|
6
|
-
.k { color: #66d9ef } /* Keyword */
|
7
|
-
.l { color: #ae81ff } /* Literal */
|
8
|
-
.n { color: #f8f8f2 } /* Name */
|
9
|
-
.o { color: #f92672 } /* Operator */
|
10
|
-
.p { color: #f8f8f2 } /* Punctuation */
|
11
|
-
.cm { color: #75715e } /* Comment.Multiline */
|
12
|
-
.cp { color: #75715e } /* Comment.Preproc */
|
13
|
-
.c1 { color: #75715e } /* Comment.Single */
|
14
|
-
.cs { color: #75715e } /* Comment.Special */
|
15
|
-
.ge { font-style: italic } /* Generic.Emph */
|
16
|
-
.gs { font-weight: bold } /* Generic.Strong */
|
17
|
-
.kc { color: #66d9ef } /* Keyword.Constant */
|
18
|
-
.kd { color: #66d9ef } /* Keyword.Declaration */
|
19
|
-
.kn { color: #f92672 } /* Keyword.Namespace */
|
20
|
-
.kp { color: #66d9ef } /* Keyword.Pseudo */
|
21
|
-
.kr { color: #66d9ef } /* Keyword.Reserved */
|
22
|
-
.kt { color: #66d9ef } /* Keyword.Type */
|
23
|
-
.ld { color: #e6db74 } /* Literal.Date */
|
24
|
-
.m { color: #ae81ff } /* Literal.Number */
|
25
|
-
.s { color: #e6db74 } /* Literal.String */
|
26
|
-
.na { color: #a6e22e } /* Name.Attribute */
|
27
|
-
.nb { color: #f8f8f2 } /* Name.Builtin */
|
28
|
-
.nc { color: #a6e22e } /* Name.Class */
|
29
|
-
.no { color: #66d9ef } /* Name.Constant */
|
30
|
-
.nd { color: #a6e22e } /* Name.Decorator */
|
31
|
-
.ni { color: #f8f8f2 } /* Name.Entity */
|
32
|
-
.ne { color: #a6e22e } /* Name.Exception */
|
33
|
-
.nf { color: #a6e22e } /* Name.Function */
|
34
|
-
.nl { color: #f8f8f2 } /* Name.Label */
|
35
|
-
.nn { color: #f8f8f2 } /* Name.Namespace */
|
36
|
-
.nx { color: #a6e22e } /* Name.Other */
|
37
|
-
.py { color: #f8f8f2 } /* Name.Property */
|
38
|
-
.nt { color: #f92672 } /* Name.Tag */
|
39
|
-
.nv { color: #f8f8f2 } /* Name.Variable */
|
40
|
-
.ow { color: #f92672 } /* Operator.Word */
|
41
|
-
.w { color: #f8f8f2 } /* Text.Whitespace */
|
42
|
-
.mf { color: #ae81ff } /* Literal.Number.Float */
|
43
|
-
.mh { color: #ae81ff } /* Literal.Number.Hex */
|
44
|
-
.mi { color: #ae81ff } /* Literal.Number.Integer */
|
45
|
-
.mo { color: #ae81ff } /* Literal.Number.Oct */
|
46
|
-
.sb { color: #e6db74 } /* Literal.String.Backtick */
|
47
|
-
.sc { color: #e6db74 } /* Literal.String.Char */
|
48
|
-
.sd { color: #e6db74 } /* Literal.String.Doc */
|
49
|
-
.s2 { color: #e6db74 } /* Literal.String.Double */
|
50
|
-
.se { color: #ae81ff } /* Literal.String.Escape */
|
51
|
-
.sh { color: #e6db74 } /* Literal.String.Heredoc */
|
52
|
-
.si { color: #e6db74 } /* Literal.String.Interpol */
|
53
|
-
.sx { color: #e6db74 } /* Literal.String.Other */
|
54
|
-
.sr { color: #e6db74 } /* Literal.String.Regex */
|
55
|
-
.s1 { color: #e6db74 } /* Literal.String.Single */
|
56
|
-
.ss { color: #e6db74 } /* Literal.String.Symbol */
|
57
|
-
.bp { color: #f8f8f2 } /* Name.Builtin.Pseudo */
|
58
|
-
.vc { color: #f8f8f2 } /* Name.Variable.Class */
|
59
|
-
.vg { color: #f8f8f2 } /* Name.Variable.Global */
|
60
|
-
.vi { color: #f8f8f2 } /* Name.Variable.Instance */
|
61
|
-
.il { color: #ae81ff } /* Literal.Number.Integer.Long */
|
62
|
-
.gu { color: #75715e; } /* Generic.Subheading & Diff Unified/Comment? */
|
63
|
-
.gd { color: #f92672; } /* Generic.Deleted & Diff Deleted */
|
64
|
-
.gi { color: #a6e22e; } /* Generic.Inserted & Diff Inserted */
|
1
|
+
.highlight {
|
2
|
+
pre { background-color: #272822; }
|
3
|
+
.hll { background-color: #272822; }
|
4
|
+
.c { color: #75715e } /* Comment */
|
5
|
+
.err { color: #960050; background-color: #1e0010 } /* Error */
|
6
|
+
.k { color: #66d9ef } /* Keyword */
|
7
|
+
.l { color: #ae81ff } /* Literal */
|
8
|
+
.n { color: #f8f8f2 } /* Name */
|
9
|
+
.o { color: #f92672 } /* Operator */
|
10
|
+
.p { color: #f8f8f2 } /* Punctuation */
|
11
|
+
.cm { color: #75715e } /* Comment.Multiline */
|
12
|
+
.cp { color: #75715e } /* Comment.Preproc */
|
13
|
+
.c1 { color: #75715e } /* Comment.Single */
|
14
|
+
.cs { color: #75715e } /* Comment.Special */
|
15
|
+
.ge { font-style: italic } /* Generic.Emph */
|
16
|
+
.gs { font-weight: bold } /* Generic.Strong */
|
17
|
+
.kc { color: #66d9ef } /* Keyword.Constant */
|
18
|
+
.kd { color: #66d9ef } /* Keyword.Declaration */
|
19
|
+
.kn { color: #f92672 } /* Keyword.Namespace */
|
20
|
+
.kp { color: #66d9ef } /* Keyword.Pseudo */
|
21
|
+
.kr { color: #66d9ef } /* Keyword.Reserved */
|
22
|
+
.kt { color: #66d9ef } /* Keyword.Type */
|
23
|
+
.ld { color: #e6db74 } /* Literal.Date */
|
24
|
+
.m { color: #ae81ff } /* Literal.Number */
|
25
|
+
.s { color: #e6db74 } /* Literal.String */
|
26
|
+
.na { color: #a6e22e } /* Name.Attribute */
|
27
|
+
.nb { color: #f8f8f2 } /* Name.Builtin */
|
28
|
+
.nc { color: #a6e22e } /* Name.Class */
|
29
|
+
.no { color: #66d9ef } /* Name.Constant */
|
30
|
+
.nd { color: #a6e22e } /* Name.Decorator */
|
31
|
+
.ni { color: #f8f8f2 } /* Name.Entity */
|
32
|
+
.ne { color: #a6e22e } /* Name.Exception */
|
33
|
+
.nf { color: #a6e22e } /* Name.Function */
|
34
|
+
.nl { color: #f8f8f2 } /* Name.Label */
|
35
|
+
.nn { color: #f8f8f2 } /* Name.Namespace */
|
36
|
+
.nx { color: #a6e22e } /* Name.Other */
|
37
|
+
.py { color: #f8f8f2 } /* Name.Property */
|
38
|
+
.nt { color: #f92672 } /* Name.Tag */
|
39
|
+
.nv { color: #f8f8f2 } /* Name.Variable */
|
40
|
+
.ow { color: #f92672 } /* Operator.Word */
|
41
|
+
.w { color: #f8f8f2 } /* Text.Whitespace */
|
42
|
+
.mf { color: #ae81ff } /* Literal.Number.Float */
|
43
|
+
.mh { color: #ae81ff } /* Literal.Number.Hex */
|
44
|
+
.mi { color: #ae81ff } /* Literal.Number.Integer */
|
45
|
+
.mo { color: #ae81ff } /* Literal.Number.Oct */
|
46
|
+
.sb { color: #e6db74 } /* Literal.String.Backtick */
|
47
|
+
.sc { color: #e6db74 } /* Literal.String.Char */
|
48
|
+
.sd { color: #e6db74 } /* Literal.String.Doc */
|
49
|
+
.s2 { color: #e6db74 } /* Literal.String.Double */
|
50
|
+
.se { color: #ae81ff } /* Literal.String.Escape */
|
51
|
+
.sh { color: #e6db74 } /* Literal.String.Heredoc */
|
52
|
+
.si { color: #e6db74 } /* Literal.String.Interpol */
|
53
|
+
.sx { color: #e6db74 } /* Literal.String.Other */
|
54
|
+
.sr { color: #e6db74 } /* Literal.String.Regex */
|
55
|
+
.s1 { color: #e6db74 } /* Literal.String.Single */
|
56
|
+
.ss { color: #e6db74 } /* Literal.String.Symbol */
|
57
|
+
.bp { color: #f8f8f2 } /* Name.Builtin.Pseudo */
|
58
|
+
.vc { color: #f8f8f2 } /* Name.Variable.Class */
|
59
|
+
.vg { color: #f8f8f2 } /* Name.Variable.Global */
|
60
|
+
.vi { color: #f8f8f2 } /* Name.Variable.Instance */
|
61
|
+
.il { color: #ae81ff } /* Literal.Number.Integer.Long */
|
62
|
+
.gu { color: #75715e; } /* Generic.Subheading & Diff Unified/Comment? */
|
63
|
+
.gd { color: #f92672; } /* Generic.Deleted & Diff Deleted */
|
64
|
+
.gi { color: #a6e22e; } /* Generic.Inserted & Diff Inserted */
|
65
65
|
}
|
data/_sass/whiteblog-theme.scss
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: whiteblog-theme
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Victor Silva
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-01-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -66,7 +66,7 @@ dependencies:
|
|
66
66
|
- - "~>"
|
67
67
|
- !ruby/object:Gem::Version
|
68
68
|
version: '0.16'
|
69
|
-
description:
|
69
|
+
description:
|
70
70
|
email:
|
71
71
|
- vmsilvamolina@gmail.com
|
72
72
|
executables: []
|
@@ -75,16 +75,17 @@ extra_rdoc_files: []
|
|
75
75
|
files:
|
76
76
|
- LICENSE.txt
|
77
77
|
- README.md
|
78
|
+
- _includes/comments-providers/disqus.html
|
78
79
|
- _includes/footer.html
|
79
80
|
- _includes/head.html
|
80
81
|
- _includes/header.html
|
81
82
|
- _layouts/allposts.html
|
83
|
+
- _layouts/categories.html
|
82
84
|
- _layouts/default.html
|
83
85
|
- _layouts/home.html
|
84
86
|
- _layouts/page.html
|
85
87
|
- _layouts/post.html
|
86
88
|
- _sass/whiteblog-theme.scss
|
87
|
-
- _sass/whiteblog-theme/_category-colors.scss
|
88
89
|
- _sass/whiteblog-theme/_layout.scss
|
89
90
|
- _sass/whiteblog-theme/_syntax-highlighting.scss
|
90
91
|
homepage: https://github.com/vmsilvamolina/whiteblog-theme
|
@@ -92,7 +93,7 @@ licenses:
|
|
92
93
|
- MIT
|
93
94
|
metadata:
|
94
95
|
plugin_type: theme
|
95
|
-
post_install_message:
|
96
|
+
post_install_message:
|
96
97
|
rdoc_options: []
|
97
98
|
require_paths:
|
98
99
|
- lib
|
@@ -107,8 +108,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
107
108
|
- !ruby/object:Gem::Version
|
108
109
|
version: '0'
|
109
110
|
requirements: []
|
110
|
-
rubygems_version: 3.
|
111
|
-
signing_key:
|
111
|
+
rubygems_version: 3.5.3
|
112
|
+
signing_key:
|
112
113
|
specification_version: 4
|
113
114
|
summary: Minimal, wide and white blogging theme for Jekyll
|
114
115
|
test_files: []
|