catgirl 0.6.0 → 0.7.0
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/_config.yml +1 -0
- data/_includes/head.html +21 -5
- data/_includes/meta.html +11 -0
- data/_layouts/archives.html +13 -10
- data/_layouts/categories.html +3 -1
- data/_layouts/category.html +14 -12
- data/_layouts/default.html +42 -40
- data/_layouts/home.html +1 -1
- data/_layouts/post.html +1 -2
- data/_layouts/project.html +1 -2
- data/_layouts/tag.html +14 -12
- data/_layouts/tags.html +3 -1
- data/_sass/catgirl.scss +4 -0
- data/_sass/homepage.scss +3 -3
- data/_sass/syntax.scss +176 -93
- 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: 936d552d2a2cc7282b273414293d2f07be05288e80f8fd494cdf3075a9e9d407
|
4
|
+
data.tar.gz: 80e526955ba89c69da75a495dee7646819253644df43fe801e71c58f9b5374d8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 335e0cea02ee0f419f888d9d21430d8ae592672f09f4f670e051b955b788515815c7a9e7be785a0a0c71be74360b851d34059f686c11cde2edb56fb130a48915
|
7
|
+
data.tar.gz: de3f4b2f29fbcc765e47cb33cc0206684a4e295187ea9cd846337b7e523f4c5193128b5eeb805786f703c2dc64dfa54ec4e5c47c55df7c5e0fcbb87a574753c0
|
data/_config.yml
CHANGED
data/_includes/head.html
CHANGED
@@ -3,16 +3,32 @@
|
|
3
3
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
4
4
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
5
5
|
{%- if page.layout == "home" -%}
|
6
|
-
|
6
|
+
<link rel="stylesheet" href="/assets/css/home.css">
|
7
7
|
{%- else -%}
|
8
|
-
|
8
|
+
<link rel="stylesheet" href="/assets/css/styles.css">
|
9
9
|
{%- endif -%}
|
10
10
|
<script src="https://unpkg.com/twemoji@latest/dist/twemoji.min.js" crossorigin="anonymous"></script>
|
11
|
+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.16.9/dist/katex.min.css"
|
12
|
+
integrity="sha384-MlJdn/WNKDGXveldHDdyRP1R4CTHr3FeuDNfhsLPYrq2t0UBkUdK2jyTnXPEK1NQ" crossorigin="anonymous">
|
13
|
+
<script defer src="https://cdn.jsdelivr.net/npm/katex@0.16.9/dist/katex.min.js"
|
14
|
+
integrity="sha384-g7c+Jr9ZivxKLnZTDUhnkOnsh30B4H0rpLUpJ4jAIKs4fnJI+sEnkvrMWph2EDg4"
|
15
|
+
crossorigin="anonymous"></script>
|
16
|
+
<script defer src="https://cdn.jsdelivr.net/npm/katex@0.16.9/dist/contrib/auto-render.min.js"
|
17
|
+
integrity="sha384-mll67QQFJfxn0IYznZYonOWZ644AWYC+Pt2cHqMaRhXVrursRwvLnLaebdGIlYNa"
|
18
|
+
crossorigin="anonymous"></script>
|
19
|
+
<script>
|
20
|
+
document.addEventListener("DOMContentLoaded", function () {
|
21
|
+
renderMathInElement(document.body, {
|
22
|
+
output: "mathml"
|
23
|
+
});
|
24
|
+
});
|
25
|
+
</script>
|
11
26
|
<title>
|
12
27
|
{%- unless page.layout == "home" -%}
|
13
|
-
|
28
|
+
{{ page.title | append: " | " }}
|
14
29
|
{%- endunless -%}
|
15
|
-
|
30
|
+
{{ site.title }}
|
16
31
|
</title>
|
32
|
+
{% include meta.html %}
|
17
33
|
{% include favicons.html %}
|
18
|
-
</head>
|
34
|
+
</head>
|
data/_includes/meta.html
ADDED
@@ -0,0 +1,11 @@
|
|
1
|
+
<meta name="title" content="lumi's trashcan" />
|
2
|
+
<meta name="description" content="" />
|
3
|
+
<meta property="og:type" content="website" />
|
4
|
+
<meta property="og:url" content="" />
|
5
|
+
<meta property="og:description" content="" />
|
6
|
+
<meta property="og:image" content="" />
|
7
|
+
<meta property="twitter:card" content="summary_large_image" />
|
8
|
+
<meta property="twitter:url" content="" />
|
9
|
+
<meta property="twitter:title" content="" />
|
10
|
+
<meta property="twitter:description" content="" />
|
11
|
+
<meta property="twitter:image" content="" />
|
data/_layouts/archives.html
CHANGED
@@ -3,7 +3,9 @@ layout: default
|
|
3
3
|
---
|
4
4
|
|
5
5
|
<div id="archives">
|
6
|
-
<
|
6
|
+
<div class="title">
|
7
|
+
<h1>archives</h1>
|
8
|
+
</div>
|
7
9
|
{% for post in site.posts %}
|
8
10
|
{% capture curr_year %}{{ post.date | date: "%Y" }}{% endcapture %}
|
9
11
|
|
@@ -11,13 +13,14 @@ layout: default
|
|
11
13
|
{% unless forloop.first %}</ul>{% endunless %}
|
12
14
|
<div class="year">{{ curr_year }}</div>
|
13
15
|
<ul>
|
14
|
-
|
15
|
-
|
16
|
+
{% assign last_year = curr_year %}
|
17
|
+
{% endif %}
|
16
18
|
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
</
|
19
|
+
{% assign ts = post.date | date: "%s" %}
|
20
|
+
<li>
|
21
|
+
<a href="{{ post.url | relative_url }}">{{ post.title }}</a>
|
22
|
+
<span class="date">({{ post.date | date: "%B %d" }})</span>
|
23
|
+
</li>
|
24
|
+
{% endfor %}
|
25
|
+
</ul>
|
26
|
+
</div>
|
data/_layouts/categories.html
CHANGED
data/_layouts/category.html
CHANGED
@@ -3,18 +3,20 @@ layout: default
|
|
3
3
|
---
|
4
4
|
|
5
5
|
<div id="page-category">
|
6
|
-
<
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
6
|
+
<div class="title">
|
7
|
+
<h1>
|
8
|
+
{{ page.title }}
|
9
|
+
• <span class="posts-count">
|
10
|
+
{% assign posts_count = page.posts | size %}
|
11
|
+
{{ posts_count }}
|
12
|
+
{% if posts_count > 1 %}
|
13
|
+
posts
|
14
|
+
{% else %}
|
15
|
+
post
|
16
|
+
{% endif %}
|
17
|
+
</span>
|
18
|
+
</h1>
|
19
|
+
</div>
|
18
20
|
|
19
21
|
<ul class="posts-list">
|
20
22
|
{% for post in page.posts %}
|
data/_layouts/default.html
CHANGED
@@ -1,46 +1,48 @@
|
|
1
1
|
<!DOCTYPE html>
|
2
|
-
<html lang="{{ site.lang | default: "en-US" }}">
|
3
|
-
|
4
|
-
<body>
|
5
|
-
<div id="main-wrapper">
|
6
|
-
<div id="wrapper">
|
7
|
-
<div id="sidebar">
|
8
|
-
<header>
|
9
|
-
<p>
|
10
|
-
<a href="/">home</a> |
|
11
|
-
<a href="/archives">archives</a> |
|
12
|
-
<a href="/categories">categories</a> |
|
13
|
-
<a href="/tags">tags</a>
|
14
|
-
</br>
|
15
|
-
<a href="/projects">projects</a> |
|
16
|
-
<a href="https://linktr.ee/ryliexd">socials</a>
|
17
|
-
</p>
|
2
|
+
<html lang="{{ site.lang | default: " en-US" }}">
|
3
|
+
{% include head.html %}
|
18
4
|
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
5
|
+
<body>
|
6
|
+
<div id="main-wrapper">
|
7
|
+
<div id="wrapper">
|
8
|
+
<div id="sidebar">
|
9
|
+
<header>
|
10
|
+
<p>
|
11
|
+
<a href="/">home</a> |
|
12
|
+
<a href="/about">about</a> |
|
13
|
+
<a href="/archives">archives</a>
|
14
|
+
<br>
|
15
|
+
<a href="/categories">categories</a> |
|
16
|
+
<a href="/tags">tags</a> |
|
17
|
+
<a href="/projects">projects</a>
|
18
|
+
</p>
|
23
19
|
|
24
|
-
<
|
25
|
-
<
|
26
|
-
|
27
|
-
|
28
|
-
© 2022-2023 j1nxie
|
29
|
-
</p>
|
30
|
-
</footer>
|
31
|
-
</div>
|
20
|
+
<p>
|
21
|
+
<big>lumi's trashcan</big>
|
22
|
+
</p>
|
23
|
+
</header>
|
32
24
|
|
33
|
-
<
|
34
|
-
<
|
35
|
-
|
36
|
-
|
37
|
-
|
25
|
+
<footer>
|
26
|
+
<p>
|
27
|
+
art by <a href="https://twitter.com/felutiahime/">@felutiahime</a>
|
28
|
+
</br>
|
29
|
+
© 2022-2023 j1nxie
|
30
|
+
</p>
|
31
|
+
</footer>
|
38
32
|
</div>
|
33
|
+
|
34
|
+
<section id="main">
|
35
|
+
<div class="content">
|
36
|
+
{{ content }}
|
37
|
+
</div>
|
38
|
+
</section>
|
39
39
|
</div>
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
</
|
46
|
-
</
|
40
|
+
</div>
|
41
|
+
<script>
|
42
|
+
twemoji.parse(
|
43
|
+
document.body,
|
44
|
+
{ base: "https://cdn.jsdelivr.net/gh/twitter/twemoji@14.0.2/assets/" });
|
45
|
+
</script>
|
46
|
+
</body>
|
47
|
+
|
48
|
+
</html>
|
data/_layouts/home.html
CHANGED
data/_layouts/post.html
CHANGED
data/_layouts/project.html
CHANGED
data/_layouts/tag.html
CHANGED
@@ -3,19 +3,21 @@ layout: default
|
|
3
3
|
---
|
4
4
|
|
5
5
|
<div class="page-tag">
|
6
|
-
<
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
6
|
+
<div class="title">
|
7
|
+
<h1>
|
8
|
+
{{ page.title }}
|
9
|
+
• <span class="posts-count">
|
10
|
+
{% assign posts_count = page.posts | size %}
|
11
|
+
{{ posts_count }}
|
12
|
+
{% if posts_count > 1 %}
|
12
13
|
posts
|
13
|
-
|
14
|
+
{% else %}
|
14
15
|
post
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
16
|
+
{% endif %}
|
17
|
+
</span>
|
18
|
+
</h1>
|
19
|
+
</div>
|
20
|
+
|
19
21
|
<ul class="posts-list">
|
20
22
|
{% for post in page.posts %}
|
21
23
|
<li>
|
@@ -24,4 +26,4 @@ layout: default
|
|
24
26
|
</li>
|
25
27
|
{% endfor %}
|
26
28
|
</ul>
|
27
|
-
</div>
|
29
|
+
</div>
|
data/_layouts/tags.html
CHANGED
data/_sass/catgirl.scss
CHANGED
data/_sass/homepage.scss
CHANGED
data/_sass/syntax.scss
CHANGED
@@ -6,233 +6,316 @@ code {
|
|
6
6
|
font-family: $code-fonts;
|
7
7
|
color: #9da0aa;
|
8
8
|
}
|
9
|
+
|
9
10
|
.highlight code {
|
10
11
|
color: #fff;
|
11
12
|
}
|
13
|
+
|
12
14
|
.highlight pre {
|
13
15
|
font-family: $code-fonts;
|
14
16
|
font-size: 14px;
|
15
17
|
}
|
18
|
+
|
16
19
|
.highlight pre .lineno {
|
17
20
|
font-family: $code-fonts;
|
18
21
|
color: #465457;
|
19
22
|
}
|
23
|
+
|
20
24
|
.highlight table td pre {
|
21
25
|
tab-size: 4;
|
22
26
|
}
|
27
|
+
|
23
28
|
.highlight table td {
|
24
29
|
padding: 5px;
|
25
30
|
}
|
31
|
+
|
26
32
|
.highlight {
|
27
|
-
|
33
|
+
|
34
|
+
table,
|
35
|
+
td,
|
36
|
+
pre {
|
28
37
|
border: 0;
|
29
38
|
border-collapse: separate;
|
30
39
|
}
|
31
40
|
}
|
32
|
-
|
33
|
-
.highlight
|
34
|
-
|
35
|
-
|
41
|
+
|
42
|
+
.highlight table pre {
|
43
|
+
margin: 0;
|
44
|
+
}
|
45
|
+
|
46
|
+
.highlight .c,
|
47
|
+
.highlight .ch,
|
48
|
+
.highlight .cd,
|
49
|
+
.highlight .cpf {
|
50
|
+
color: #5e5d83;
|
51
|
+
font-style: italic;
|
36
52
|
}
|
53
|
+
|
37
54
|
.highlight .cm {
|
38
|
-
|
39
|
-
|
55
|
+
color: #5e5d83;
|
56
|
+
font-style: italic;
|
40
57
|
}
|
58
|
+
|
41
59
|
.highlight .c1 {
|
42
|
-
|
43
|
-
|
60
|
+
color: #5e5d83;
|
61
|
+
font-style: italic;
|
44
62
|
}
|
63
|
+
|
45
64
|
.highlight .cp {
|
46
|
-
|
47
|
-
|
65
|
+
color: #465457;
|
66
|
+
font-weight: bold;
|
48
67
|
}
|
68
|
+
|
49
69
|
.highlight .cs {
|
50
|
-
|
51
|
-
|
52
|
-
|
70
|
+
color: #465457;
|
71
|
+
font-weight: bold;
|
72
|
+
font-style: italic;
|
53
73
|
}
|
74
|
+
|
54
75
|
.highlight .err {
|
55
|
-
|
56
|
-
|
76
|
+
color: #f8f8f2;
|
77
|
+
background-color: #403d3d;
|
57
78
|
}
|
79
|
+
|
58
80
|
.highlight .gi {
|
59
|
-
|
81
|
+
color: #a6e22e;
|
60
82
|
}
|
83
|
+
|
61
84
|
.highlight .gd {
|
62
|
-
|
85
|
+
color: #f92672;
|
63
86
|
}
|
87
|
+
|
64
88
|
.highlight .ge {
|
65
|
-
|
66
|
-
|
89
|
+
color: #1b1d1e;
|
90
|
+
font-style: italic;
|
67
91
|
}
|
92
|
+
|
68
93
|
.highlight .gr {
|
69
|
-
|
94
|
+
color: #f92672;
|
70
95
|
}
|
96
|
+
|
71
97
|
.highlight .gt {
|
72
|
-
|
98
|
+
color: #f92672;
|
73
99
|
}
|
100
|
+
|
74
101
|
.highlight .gh {
|
75
|
-
|
102
|
+
color: #403d3d;
|
76
103
|
}
|
104
|
+
|
77
105
|
.highlight .go {
|
78
|
-
|
106
|
+
color: #403d3d;
|
79
107
|
}
|
108
|
+
|
80
109
|
.highlight .gp {
|
81
|
-
|
110
|
+
color: #66d9ef;
|
82
111
|
}
|
112
|
+
|
83
113
|
.highlight .gs {
|
84
|
-
|
114
|
+
font-weight: bold;
|
85
115
|
}
|
116
|
+
|
86
117
|
.highlight .gu {
|
87
|
-
|
118
|
+
color: #465457;
|
88
119
|
}
|
89
|
-
|
90
|
-
|
91
|
-
|
120
|
+
|
121
|
+
.highlight .k,
|
122
|
+
.highlight .kv {
|
123
|
+
color: #66d9ef;
|
124
|
+
font-weight: bold;
|
92
125
|
}
|
126
|
+
|
93
127
|
.highlight .kc {
|
94
|
-
|
95
|
-
|
128
|
+
color: #66d9ef;
|
129
|
+
font-weight: bold;
|
96
130
|
}
|
131
|
+
|
97
132
|
.highlight .kd {
|
98
|
-
|
99
|
-
|
133
|
+
color: #66d9ef;
|
134
|
+
font-weight: bold;
|
100
135
|
}
|
136
|
+
|
101
137
|
.highlight .kp {
|
102
|
-
|
103
|
-
|
138
|
+
color: #66d9ef;
|
139
|
+
font-weight: bold;
|
104
140
|
}
|
141
|
+
|
105
142
|
.highlight .kr {
|
106
|
-
|
107
|
-
|
143
|
+
color: #66d9ef;
|
144
|
+
font-weight: bold;
|
108
145
|
}
|
146
|
+
|
109
147
|
.highlight .kt {
|
110
|
-
|
111
|
-
|
148
|
+
color: #66d9ef;
|
149
|
+
font-weight: bold;
|
112
150
|
}
|
151
|
+
|
113
152
|
.highlight .kn {
|
114
|
-
|
115
|
-
|
153
|
+
color: #f92672;
|
154
|
+
font-weight: bold;
|
116
155
|
}
|
156
|
+
|
117
157
|
.highlight .ow {
|
118
|
-
|
119
|
-
|
158
|
+
color: #f92672;
|
159
|
+
font-weight: bold;
|
120
160
|
}
|
161
|
+
|
121
162
|
.highlight .o {
|
122
|
-
|
123
|
-
|
163
|
+
color: #f92672;
|
164
|
+
font-weight: bold;
|
124
165
|
}
|
166
|
+
|
125
167
|
.highlight .mf {
|
126
|
-
|
168
|
+
color: #af87ff;
|
127
169
|
}
|
170
|
+
|
128
171
|
.highlight .mh {
|
129
|
-
|
172
|
+
color: #af87ff;
|
130
173
|
}
|
174
|
+
|
131
175
|
.highlight .il {
|
132
|
-
|
176
|
+
color: #af87ff;
|
133
177
|
}
|
178
|
+
|
134
179
|
.highlight .mi {
|
135
|
-
|
180
|
+
color: #af87ff;
|
136
181
|
}
|
182
|
+
|
137
183
|
.highlight .mo {
|
138
|
-
|
184
|
+
color: #af87ff;
|
139
185
|
}
|
140
|
-
|
141
|
-
|
186
|
+
|
187
|
+
.highlight .m,
|
188
|
+
.highlight .mb,
|
189
|
+
.highlight .mx {
|
190
|
+
color: #af87ff;
|
142
191
|
}
|
192
|
+
|
143
193
|
.highlight .se {
|
144
|
-
|
194
|
+
color: #af87ff;
|
145
195
|
}
|
196
|
+
|
146
197
|
.highlight .sb {
|
147
|
-
|
198
|
+
color: #d7d787;
|
148
199
|
}
|
200
|
+
|
149
201
|
.highlight .sc {
|
150
|
-
|
202
|
+
color: #d7d787;
|
151
203
|
}
|
204
|
+
|
152
205
|
.highlight .sd {
|
153
|
-
|
206
|
+
color: #d7d787;
|
154
207
|
}
|
208
|
+
|
155
209
|
.highlight .s2 {
|
156
|
-
|
210
|
+
color: #d7d787;
|
157
211
|
}
|
212
|
+
|
158
213
|
.highlight .sh {
|
159
|
-
|
214
|
+
color: #d7d787;
|
160
215
|
}
|
216
|
+
|
161
217
|
.highlight .si {
|
162
|
-
|
218
|
+
color: #d7d787;
|
163
219
|
}
|
220
|
+
|
164
221
|
.highlight .sx {
|
165
|
-
|
222
|
+
color: #d7d787;
|
166
223
|
}
|
224
|
+
|
167
225
|
.highlight .sr {
|
168
|
-
|
226
|
+
color: #d7d787;
|
169
227
|
}
|
228
|
+
|
170
229
|
.highlight .s1 {
|
171
|
-
|
230
|
+
color: #d7d787;
|
172
231
|
}
|
232
|
+
|
173
233
|
.highlight .ss {
|
174
|
-
|
234
|
+
color: #d7d787;
|
175
235
|
}
|
176
|
-
|
177
|
-
|
236
|
+
|
237
|
+
.highlight .s,
|
238
|
+
.highlight .sa,
|
239
|
+
.highlight .dl {
|
240
|
+
color: #d7d787;
|
178
241
|
}
|
242
|
+
|
179
243
|
.highlight .na {
|
180
|
-
|
244
|
+
color: #a6e22e;
|
181
245
|
}
|
246
|
+
|
182
247
|
.highlight .nc {
|
183
|
-
|
184
|
-
|
248
|
+
color: #a6e22e;
|
249
|
+
font-weight: bold;
|
185
250
|
}
|
251
|
+
|
186
252
|
.highlight .nd {
|
187
|
-
|
188
|
-
|
253
|
+
color: #a6e22e;
|
254
|
+
font-weight: bold;
|
189
255
|
}
|
256
|
+
|
190
257
|
.highlight .ne {
|
191
|
-
|
192
|
-
|
258
|
+
color: #a6e22e;
|
259
|
+
font-weight: bold;
|
193
260
|
}
|
194
|
-
|
195
|
-
|
196
|
-
|
261
|
+
|
262
|
+
.highlight .nf,
|
263
|
+
.highlight .fm {
|
264
|
+
color: #a6e22e;
|
265
|
+
font-weight: bold;
|
197
266
|
}
|
267
|
+
|
198
268
|
.highlight .no {
|
199
|
-
|
269
|
+
color: #66d9ef;
|
200
270
|
}
|
271
|
+
|
201
272
|
.highlight .bp {
|
202
|
-
|
273
|
+
color: #f8f8f2;
|
203
274
|
}
|
275
|
+
|
204
276
|
.highlight .nb {
|
205
|
-
|
277
|
+
color: #f8f8f2;
|
206
278
|
}
|
279
|
+
|
207
280
|
.highlight .ni {
|
208
|
-
|
281
|
+
color: #f8f8f2;
|
209
282
|
}
|
283
|
+
|
210
284
|
.highlight .nn {
|
211
|
-
|
285
|
+
color: #f8f8f2;
|
212
286
|
}
|
287
|
+
|
213
288
|
.highlight .vc {
|
214
|
-
|
289
|
+
color: #f8f8f2;
|
215
290
|
}
|
291
|
+
|
216
292
|
.highlight .vg {
|
217
|
-
|
293
|
+
color: #f8f8f2;
|
218
294
|
}
|
295
|
+
|
219
296
|
.highlight .vi {
|
220
|
-
|
297
|
+
color: #f8f8f2;
|
221
298
|
}
|
222
|
-
|
223
|
-
|
299
|
+
|
300
|
+
.highlight .nv,
|
301
|
+
.highlight .vm {
|
302
|
+
color: #f8f8f2;
|
224
303
|
}
|
304
|
+
|
225
305
|
.highlight .w {
|
226
|
-
|
306
|
+
color: #f8f8f2;
|
227
307
|
}
|
308
|
+
|
228
309
|
.highlight .nl {
|
229
|
-
|
230
|
-
|
310
|
+
color: #f8f8f2;
|
311
|
+
font-weight: bold;
|
231
312
|
}
|
313
|
+
|
232
314
|
.highlight .nt {
|
233
|
-
|
315
|
+
color: #f92672;
|
234
316
|
}
|
317
|
+
|
235
318
|
.highlight {
|
236
|
-
|
237
|
-
|
238
|
-
}
|
319
|
+
color: #f8f8f2;
|
320
|
+
background-color: #1b1d1e;
|
321
|
+
}
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: catgirl
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.7.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- j1nxie
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-02-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -64,6 +64,7 @@ files:
|
|
64
64
|
- _config.yml
|
65
65
|
- _includes/favicons.html
|
66
66
|
- _includes/head.html
|
67
|
+
- _includes/meta.html
|
67
68
|
- _layouts/archives.html
|
68
69
|
- _layouts/categories.html
|
69
70
|
- _layouts/category.html
|