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