catgirl 0.1.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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 7b3e4b26dfe490fa4b1f5b2e5106a95476230976945a854551cdd9bb5252fe8f
4
+ data.tar.gz: 75489a3da903e0f31734e7e112521b21cadbef7d5fcd08526c2b27ffa7fc0420
5
+ SHA512:
6
+ metadata.gz: 9da7b2272bc32d771df94d646b8b65fe02094486cb7301f62064dd8881de08e5c006a44ac1d5b125c6806a811cf0c06df683177bef2d8c46ec0a83ce87fc1985
7
+ data.tar.gz: 2acec2ba66eb37a54ddf82913b325aee172c7dc70d770977655c8e7ee6db3423561f973a1c9369e904366906ab133ca3d9264fa4cdc186905bef1a9b0e5b28de
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2023 j1nxie
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,67 @@
1
+ # catgirl
2
+
3
+ a simple Jekyll theme, made for my personal usage.
4
+
5
+
6
+ ## installation
7
+
8
+ add this line to your Jekyll site's `Gemfile`:
9
+
10
+ ```ruby gem "catgirl" ```
11
+
12
+ and add this line to your Jekyll site's `_config.yml`:
13
+
14
+ ```yaml theme: catgirl ```
15
+
16
+ and then execute:
17
+
18
+ $ bundle
19
+
20
+ Or install it yourself as:
21
+
22
+ $ gem install catgirl
23
+
24
+ ## usage
25
+
26
+ - Sass files:
27
+ - `catgirl.scss`: contains the main css code
28
+ - `colors.scss`: contains color definitions
29
+ - `fonts.scss`: contains font stack definitions
30
+
31
+ - subpages:
32
+ - `archives`: chronological list of all posts
33
+ - `categories`: all categories available
34
+ - `projects`: a subpage for showcasing projects
35
+ - `socials`: a subpage for linking to other social media
36
+ - `tags`: all tags available
37
+
38
+ - posts go into `_posts` and they will be automatically published to
39
+ `/posts/<title>`.
40
+
41
+ ## contributing
42
+
43
+ bug reports and pull requests are welcome on GitHub at
44
+ https://github.com/j1nxie/catgirl. this project is intended to be a safe,
45
+ welcoming space for collaboration, and contributors are expected to adhere to
46
+ the [Contributor Covenant](https://www.contributor-covenant.org/) code of
47
+ conduct.
48
+
49
+ ## development
50
+
51
+ to set up your environment to develop this theme, run `bundle install`.
52
+
53
+ your theme is setup just like a normal Jekyll site! To test your theme, run
54
+ `bundle exec jekyll serve` and open your browser at `http://localhost:4000`.
55
+ this starts a Jekyll server using your theme. add pages, documents, data, etc.
56
+ like normal to test your theme's contents. as you make modifications to your
57
+ theme and to your content, your site will regenerate and you should see the
58
+ changes in the browser after a refresh, just like normal.
59
+
60
+ when your theme is released, only the files in `_layouts`, `_includes`, `_sass`
61
+ and `assets` tracked with Git will be bundled. to add a custom directory to
62
+ your theme-gem, please edit the regexp in `catgirl.gemspec` accordingly.
63
+
64
+ ## license
65
+
66
+ the theme is available as open source under the terms of the [MIT
67
+ License](https://opensource.org/licenses/MIT).
data/_config.yml ADDED
@@ -0,0 +1,53 @@
1
+ title: catgirl owo
2
+ description: a weeb theme for your jekyll site OwO
3
+
4
+ # build settings
5
+
6
+ theme: catgirl
7
+
8
+ plugins:
9
+ - jekyll-feed
10
+
11
+ kramdown:
12
+ smart_quotes: ["apos", "apos", "quot", "quot"]
13
+ syntax_highlighter: rouge
14
+ syntax_highlighter_opts:
15
+ css_class: highlight
16
+ span:
17
+ line_numbers: false
18
+ block:
19
+ line_numbers: true
20
+ start_line: 1
21
+
22
+ collections:
23
+ subpages:
24
+ output: true
25
+
26
+ defaults:
27
+ - scope:
28
+ path: ""
29
+ type: posts
30
+ values:
31
+ layout: post
32
+ permalink: /posts/:title
33
+ - scope:
34
+ path: ""
35
+ type: subpages
36
+ values:
37
+ layout: page
38
+ permalink: /:title
39
+
40
+ compress_html:
41
+ clippings: all
42
+ comments: all
43
+ endings: all
44
+ profiles: false
45
+ blanklines: false
46
+ ignore:
47
+ envs: [development]
48
+
49
+ exclude:
50
+ - "*.gem"
51
+ - "*.gemspec"
52
+ - README.md
53
+ - LICENSE.txt
@@ -0,0 +1,12 @@
1
+ {% capture favicon_path %}{{ "assets/img/favicons" | relative_url }}{% endcapture %}
2
+
3
+ <link rel="apple-touch-icon" sizes="180x180" href="{{ favicon_path }}/apple-touch-icon.png">
4
+ <link rel="icon" type="image/png" sizes="32x32" href="{{ favicon_path }}/favicon-32x32.png">
5
+ <link rel="icon" type="image/png" sizes="16x16" href="{{ favicon_path }}/favicon-16x16.png">
6
+ <link rel="manifest" href="{{ favicon_path }}/site.webmanifest">
7
+ <link rel="shortcut icon" href="{{ favicon_path }}/favicon.ico">
8
+ <meta name="apple-mobile-web-app-title" content="{{ site.title }}">
9
+ <meta name="application-name" content="{{ site.title }}">
10
+ <meta name="msapplication-TileColor" content="#aec6cf">
11
+ <meta name="msapplication-config" content="{{ favicon_path }}/browserconfig.xml">
12
+ <meta name="theme-color" content="#000">
@@ -0,0 +1,25 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ <div id="archives">
6
+ <p>
7
+ <h1>archives</h1>
8
+ {% for post in site.posts %}
9
+ {% capture curr_year %}{{ post.date | date: "%Y" }}{% endcapture %}
10
+
11
+ {% if curr_year != last_year %}
12
+ {% unless forloop.first %}</ul>{% endunless %}
13
+ <div class="year">{{ curr_year }}</div>
14
+ <ul>
15
+ {% assign last_year = curr_year %}
16
+ {% endif %}
17
+
18
+ {% assign ts = post.date | date: "%s" %}
19
+ <li>
20
+ <a href="{{ post.url | relative_url }}">{{ post.title }}</a>
21
+ <span class="date">({{ post.date | date: "%B %d" }})</span>
22
+ </li>
23
+ {% endfor %}
24
+ </p>
25
+ </div>
@@ -0,0 +1,3 @@
1
+ ---
2
+ layout: default
3
+ ---
@@ -0,0 +1,54 @@
1
+ <!DOCTYPE html>
2
+ <html lang="{{ site.lang | default: "en-US" }}">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
6
+ <meta name="viewport" content="width=device-width, initial-scale=1">
7
+ <link rel="stylesheet" href="/assets/css/styles.css">
8
+ <title>
9
+ {%- unless page.layout == "home" -%}
10
+ {{ page.title | append: " | " }}
11
+ {%- endunless -%}
12
+ {{ site.title }}
13
+ </title>
14
+ {% include favicons.html %}
15
+ </head>
16
+
17
+ <body>
18
+ <div id="main-wrapper">
19
+ <div id="wrapper">
20
+ <div id="sidebar">
21
+ <header>
22
+ <p>
23
+ <a href="/">home</a> |
24
+ <a href="/archives">archives</a> |
25
+ <a href="/categories">categories</a> |
26
+ <a href="/tags">tags</a>
27
+ </br>
28
+ <a href="/projects">projects</a> |
29
+ <a href="/socials">socials</a>
30
+ </p>
31
+
32
+ <p>
33
+ <big>lumi's trashcan</big>
34
+ </p>
35
+ </header>
36
+
37
+ <footer>
38
+ <p>
39
+ art by <a href="https://twitter.com/felutiahime/">@felutiahime</a>
40
+ </br>
41
+ © 2022-2023 j1nxie
42
+ </p>
43
+ </footer>
44
+ </div>
45
+
46
+ <section id="main">
47
+ <div class="content">
48
+ {{ content }}
49
+ </div>
50
+ </section>
51
+ </div>
52
+ </div>
53
+ </body>
54
+ </html>
@@ -0,0 +1,4 @@
1
+ ---
2
+ layout: default
3
+ # home page layout
4
+ ---
@@ -0,0 +1,11 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ <div class="title">
6
+ <h1>{{ page.title }}</h1>
7
+ <p>{{ page.date | date: "%B %d, %Y" }}</p>
8
+ <hr>
9
+ </div>
10
+
11
+ {{ content }}
@@ -0,0 +1,3 @@
1
+ ---
2
+ layout: default
3
+ ---
@@ -0,0 +1,3 @@
1
+ ---
2
+ layout: default
3
+ ---
@@ -0,0 +1,3 @@
1
+ ---
2
+ layout: default
3
+ ---
@@ -0,0 +1,100 @@
1
+ @import "fonts";
2
+ @import "colors";
3
+
4
+ $sidebar-size: 280px;
5
+
6
+ html {
7
+ background: $dark-bg;
8
+ height: 100%;
9
+ }
10
+
11
+ body {
12
+ color: $dark-text;
13
+ inset: 0;
14
+ overflow: auto;
15
+ padding: 10px;
16
+ position: absolute;
17
+ }
18
+
19
+ #main {
20
+ display: flex;
21
+ flex: 0 0 50px;
22
+ flex-basis: auto;
23
+ font-size: 16px;
24
+ line-height: 2em;
25
+ width: 800px;
26
+ }
27
+
28
+ .content {
29
+ flex-basis: auto;
30
+ flex-wrap: wrap;
31
+ width: auto;
32
+ }
33
+
34
+ .title {
35
+ font-size: 20px;
36
+ }
37
+
38
+ #sidebar {
39
+ background: linear-gradient(rgb(0 0 0 / 85%), rgb(0 0 0 / 85%)), url("/assets/img/suisei.png");
40
+ background-position: bottom;
41
+ background-repeat: no-repeat;
42
+ background-size: contain;
43
+ display: flex;
44
+ flex-direction: column;
45
+ height: 700px;
46
+ justify-content: space-between;
47
+ width: $sidebar-size;
48
+ }
49
+
50
+ header {
51
+ -webkit-font-smoothing: subpixel-antialiased;
52
+ line-height: 1.25em;
53
+ text-align: center;
54
+ width: $sidebar-size;
55
+ }
56
+
57
+ footer {
58
+ bottom: 50px;
59
+ -webkit-font-smoothing: subpixel-antialiased;
60
+ line-height: 1.25em;
61
+ width: $sidebar-size;
62
+ }
63
+
64
+ #main-wrapper {
65
+ padding-bottom: 10px;
66
+ position: relative;
67
+ }
68
+
69
+ #wrapper {
70
+ column-gap: 30px;
71
+ display: flex;
72
+ height: 100%;
73
+ justify-content: center;
74
+ margin: 0 auto;
75
+ position: relative;
76
+ width: 860px;
77
+ }
78
+
79
+ a:link,
80
+ a:visited {
81
+ color: $dark-text;
82
+ }
83
+
84
+ @media all and (max-width: 960px) {
85
+ #wrapper {
86
+ flex-direction: column;
87
+ width: auto;
88
+ }
89
+
90
+ #content {
91
+ width: auto;
92
+ }
93
+
94
+ section {
95
+ border: 1px solid #e5e5e5;
96
+ border-width: 1px 0;
97
+ margin: 0 0 20px;
98
+ padding: 20px 0;
99
+ }
100
+ }
data/_sass/colors.scss ADDED
@@ -0,0 +1,4 @@
1
+ $dark-bg: #000;
2
+ $dark-text: #fff;
3
+ $light-bg: #fff;
4
+ $light-text: #000;
data/_sass/fonts.scss ADDED
@@ -0,0 +1,8 @@
1
+ @import "https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;700&display=swap";
2
+
3
+ $font-stack: "MS Mincho", "Hiragino Mincho ProN W3", "HiraMinProN-W3", Georgia, "Noto Serif JP", serif;
4
+
5
+ body {
6
+ font-family: $font-stack;
7
+ font-weight: normal;
8
+ }
@@ -0,0 +1,3 @@
1
+ ---
2
+ ---
3
+ @import "catgirl";
Binary file
@@ -0,0 +1,134 @@
1
+ <?xml version="1.0" standalone="no"?>
2
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
3
+ "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
4
+ <svg version="1.0" xmlns="http://www.w3.org/2000/svg"
5
+ width="208.000000pt" height="208.000000pt" viewBox="0 0 208.000000 208.000000"
6
+ preserveAspectRatio="xMidYMid meet">
7
+ <metadata>
8
+ Created by potrace 1.14, written by Peter Selinger 2001-2017
9
+ </metadata>
10
+ <g transform="translate(0.000000,208.000000) scale(0.100000,-0.100000)"
11
+ fill="#000000" stroke="none">
12
+ <path d="M60 1948 c-15 -158 -28 -572 -17 -576 15 -7 6 -20 -18 -26 -21 -5
13
+ -25 -12 -25 -46 0 -22 5 -40 10 -40 6 0 10 5 10 10 0 22 19 8 29 -22 9 -27 9
14
+ -33 -4 -41 -11 -6 -13 -13 -7 -20 10 -13 27 -92 36 -167 7 -62 21 -134 51
15
+ -274 14 -66 24 -123 23 -128 -2 -5 -36 21 -76 58 l-72 66 0 -371 0 -371 216 0
16
+ 215 0 -19 28 c-29 41 -87 158 -120 242 -53 134 -114 333 -109 357 2 12 1 20
17
+ -3 18 -14 -9 -33 121 -21 142 12 20 14 12 12 -42 -1 -28 0 -28 9 -7 5 12 12
18
+ 22 15 22 4 0 3 -5 -1 -11 -4 -7 -1 -10 7 -7 9 3 13 18 12 44 l-2 39 9 -34 c4
19
+ -19 5 -44 0 -55 -5 -14 0 -36 16 -68 13 -26 24 -56 24 -67 0 -27 53 -240 80
20
+ -321 12 -36 42 -113 67 -172 l45 -108 714 0 714 0 -12 25 c-9 20 -8 31 2 50
21
+ 18 33 30 32 30 -2 0 -43 11 -73 26 -73 16 0 17 10 5 42 -4 13 -11 40 -15 60
22
+ -9 47 10 52 19 6 4 -18 12 -50 17 -70 l11 -38 59 0 58 0 0 265 c0 146 -2 265
23
+ -4 265 -2 0 -18 -37 -36 -82 -42 -109 -126 -265 -190 -355 -59 -85 -75 -97
24
+ -26 -21 51 82 110 221 150 358 20 69 52 158 71 198 49 101 44 107 -16 18 -27
25
+ -41 -55 -78 -60 -82 -6 -3 5 18 25 47 19 30 46 81 60 114 23 56 24 74 25 243
26
+ 1 116 -2 182 -9 182 -5 0 -10 10 -11 23 0 32 -35 -82 -60 -198 -11 -55 -25
27
+ -108 -30 -118 -5 -10 -7 -22 -4 -26 3 -5 -2 -11 -10 -15 -18 -7 -18 -6 -1 52
28
+ 19 63 54 200 60 237 4 25 2 22 -14 -14 -11 -24 -23 -62 -26 -85 -4 -22 -10
29
+ -45 -14 -51 -5 -5 -10 -26 -13 -45 -3 -19 -14 -62 -26 -96 -11 -33 -23 -78
30
+ -25 -100 -3 -21 -10 -54 -15 -72 -5 -18 -10 -33 -9 -35 1 -7 -23 -87 -27 -87
31
+ -8 0 7 167 21 233 37 176 160 548 197 595 6 7 12 61 14 120 3 100 2 105 -11
32
+ 71 -7 -19 -23 -54 -35 -77 -20 -40 -22 -41 -52 -30 -18 6 -62 8 -106 5 -64 -5
33
+ -73 -4 -62 9 6 8 9 14 5 14 -13 0 23 56 58 89 27 26 36 31 36 18 0 -9 5 -17
34
+ 10 -17 6 0 10 -12 11 -27 0 -20 10 -3 34 57 36 90 45 96 20 14 -20 -66 -18
35
+ -77 6 -31 19 35 45 53 33 22 -12 -30 6 -14 20 18 14 30 14 31 16 7 3 -47 19
36
+ 10 19 70 l1 55 -31 -62 c-17 -35 -35 -63 -39 -63 -10 0 7 58 22 77 5 7 7 16 4
37
+ 21 -2 4 6 51 19 103 17 66 24 120 24 179 l-1 85 -28 -135 c-15 -74 -33 -155
38
+ -40 -180 -20 -67 -25 -21 -6 58 8 37 20 99 26 137 6 39 13 82 16 98 3 15 1 27
39
+ -4 27 -6 0 -13 -27 -17 -59 -7 -65 -50 -269 -57 -277 -8 -8 -83 24 -81 34 2 6
40
+ 5 30 8 54 l5 43 -16 -48 c-9 -27 -18 -46 -21 -43 -4 3 -13 1 -20 -6 -12 -10
41
+ -14 3 -8 88 4 54 10 125 14 157 6 41 4 57 -4 57 -11 0 -35 -193 -35 -276 0
42
+ -26 -5 -33 -26 -38 -15 -4 -27 -6 -29 -4 -4 5 43 232 54 261 16 41 14 57 -8
43
+ 57 -16 0 -21 -16 -35 -112 -32 -210 -34 -216 -68 -232 l-30 -15 6 47 c7 64 24
44
+ 217 30 272 6 60 -10 30 -18 -35 -23 -174 -62 -364 -86 -425 -10 -25 -23 -66
45
+ -30 -91 -14 -53 -7 -51 -192 -51 -110 1 -118 -1 -118 -19 0 -10 -4 -19 -9 -19
46
+ -22 0 -55 300 -48 433 5 94 -6 136 -16 60 -8 -65 -7 -456 2 -500 10 -52 4 -60
47
+ -21 -28 -26 33 -56 124 -73 219 -25 139 -32 91 -9 -69 l4 -30 -9 30 c-5 17
48
+ -12 47 -16 69 -3 21 -9 35 -12 32 -12 -12 36 -215 79 -339 12 -32 22 -56 24
49
+ -54 4 3 -7 67 -22 127 l-5 25 20 -27 c14 -17 28 -24 40 -21 17 4 18 13 13 96
50
+ -2 51 -2 90 1 87 3 -3 15 -43 27 -90 28 -108 34 -117 40 -55 l5 50 95 1 c52 1
51
+ 109 4 127 8 30 7 33 5 41 -26 10 -39 -7 -82 -47 -115 -34 -29 -16 -29 65 2 75
52
+ 28 98 31 69 9 -18 -13 -20 -25 -17 -96 1 -45 7 -87 13 -94 9 -11 4 -14 -27
53
+ -14 -46 0 -85 -19 -44 -21 55 -3 96 -1 115 6 99 33 176 118 214 236 10 32 14
54
+ 35 41 31 35 -5 37 -16 10 -57 -11 -16 -20 -39 -20 -51 0 -11 -13 -45 -30 -75
55
+ -16 -30 -39 -85 -51 -124 -11 -38 -34 -115 -51 -170 -40 -134 -70 -186 -149
56
+ -259 -93 -86 -202 -142 -554 -287 -93 -39 -187 -77 -208 -86 -26 -11 -51 -13
57
+ -83 -8 -56 8 -279 118 -391 192 -72 47 -84 59 -93 94 -20 72 -8 75 43 11 50
58
+ -64 92 -96 142 -107 29 -7 29 -6 -10 21 -50 35 -62 49 -129 149 -62 92 -91
59
+ 169 -106 275 -5 41 -17 120 -26 175 -9 55 -19 139 -21 186 l-4 86 57 11 c94
60
+ 19 90 22 97 -63 7 -91 10 -98 44 -82 23 10 28 8 49 -18 21 -27 30 -30 81 -31
61
+ 32 -1 63 3 70 8 7 6 14 4 19 -3 11 -18 -33 -49 -72 -50 -19 -1 -44 -1 -57 -2
62
+ -36 -2 -51 11 -35 31 11 14 10 15 -5 9 -10 -4 -23 -7 -29 -7 -6 0 -8 -10 -4
63
+ -24 3 -14 2 -28 -4 -31 -5 -3 -10 -13 -10 -22 0 -15 2 -15 18 -1 10 10 37 16
64
+ 67 17 99 2 107 5 147 47 41 44 48 64 22 64 -8 0 -12 5 -9 10 4 6 15 8 24 5 23
65
+ -7 36 9 52 63 13 46 14 46 82 26 27 -8 20 13 -13 36 -16 12 -30 30 -30 40 0
66
+ 10 -9 22 -20 25 -11 3 -20 12 -20 19 0 12 -99 36 -149 36 -11 0 -21 4 -21 9 0
67
+ 4 51 6 114 4 68 -2 117 0 120 6 10 15 -30 24 -134 30 l-94 6 -8 30 c-4 17 -13
68
+ 57 -20 90 -10 48 -13 54 -16 30 -1 -17 1 -56 6 -88 9 -56 1 -79 -12 -34 -28
69
+ 97 -55 220 -58 257 l-3 44 44 4 c59 5 192 -15 261 -39 62 -22 70 -23 70 -9 0
70
+ 13 -90 58 -154 77 -30 9 -88 16 -140 16 l-89 -1 7 114 c3 65 2 114 -3 114 -12
71
+ 0 -19 -33 -31 -141 -9 -91 -17 -109 -51 -109 -14 0 -15 15 -11 125 4 111 3
72
+ 125 -12 125 -14 0 -16 -16 -17 -112 -1 -62 -1 -120 0 -129 1 -9 -5 -22 -14
73
+ -29 -18 -15 -20 -30 -2 -30 9 0 16 -33 24 -107 7 -60 21 -135 31 -168 24 -73
74
+ 23 -73 -91 -74 l-77 -1 6 83 c3 45 10 118 15 162 5 44 9 89 10 100 0 11 9 81
75
+ 19 155 11 74 20 138 20 143 0 4 -40 7 -88 7 l-88 0 -14 -132z m316 -190 c-4
76
+ -24 -7 -88 -7 -143 -2 -128 -17 -88 -26 66 -5 99 -5 107 13 112 10 2 21 5 23
77
+ 6 2 0 0 -18 -3 -41z m74 -157 c17 -63 28 -116 26 -119 -3 -2 -22 -5 -43 -6
78
+ l-38 -1 -3 105 c-2 58 0 125 4 150 7 44 7 45 15 15 5 -16 22 -81 39 -144z
79
+ m1353 -4 l-6 -137 -54 0 c-47 0 -54 2 -49 18 3 9 15 60 26 112 11 52 22 105
80
+ 25 117 3 15 14 23 33 25 15 2 28 3 29 3 1 -1 0 -63 -4 -138z m34 81 c-2 -13
81
+ -4 -3 -4 22 0 25 2 35 4 23 2 -13 2 -33 0 -45z m92 41 c26 -9 31 -15 26 -33
82
+ -15 -52 -30 -73 -75 -108 l-48 -37 13 57 c7 31 16 74 19 95 7 40 15 43 65 26z
83
+ m-209 -23 c0 -43 -43 -215 -60 -238 -11 -15 -17 -34 -14 -42 3 -9 1 -16 -6
84
+ -16 -6 0 -8 5 -5 10 3 6 2 10 -4 10 -6 0 -8 8 -5 18 5 13 4 14 -4 3 -6 -8 -8
85
+ -20 -5 -27 5 -13 -43 -51 -53 -41 -3 3 -1 14 4 24 5 10 20 61 33 113 l24 95 5
86
+ -70 5 -70 13 110 c9 79 18 114 29 123 22 16 43 15 43 -2z m264 -30 c-3 -15 -8
87
+ -25 -11 -23 -2 3 -1 17 3 31 3 15 8 25 11 23 2 -3 1 -17 -3 -31z m-1907 -58
88
+ c-3 -8 -6 -5 -6 6 -1 11 2 17 5 13 3 -3 4 -12 1 -19z m0 -125 c-3 -10 -5 -4
89
+ -5 12 0 17 2 24 5 18 2 -7 2 -21 0 -30z m413 -42 c0 -3 -24 -4 -52 -2 -40 3
90
+ -47 6 -28 11 28 7 80 1 80 -9z m1255 -17 c-68 -19 -81 -18 -65 1 8 10 29 15
91
+ 64 14 l51 -1 -50 -14z m255 -24 c0 -5 -2 -10 -4 -10 -3 0 -8 5 -11 10 -3 6 -1
92
+ 10 4 10 6 0 11 -4 11 -10z m-1823 -234 l5 -49 -26 19 c-14 11 -26 30 -28 44
93
+ -5 61 -3 98 5 93 5 -3 6 -11 3 -19 -3 -8 -1 -14 5 -14 7 0 9 10 5 24 -3 12 -2
94
+ 26 2 30 7 8 20 -46 29 -128z m1601 6 c2 -7 -4 -15 -13 -18 -20 -8 -27 -1 -19
95
+ 20 7 18 25 17 32 -2z m-90 -25 c15 2 34 -1 42 -7 13 -9 12 -12 -4 -25 -20 -15
96
+ -86 -21 -86 -7 0 18 14 55 17 46 2 -6 16 -9 31 -7z m-1480 -272 c-3 -3 -9 2
97
+ -12 12 -6 14 -5 15 5 6 7 -7 10 -15 7 -18z m1859 -27 c-3 -8 -6 -5 -6 6 -1 11
98
+ 2 17 5 13 3 -3 4 -12 1 -19z m-117 -67 c0 -29 -15 -33 -18 -5 -1 13 3 24 8 24
99
+ 6 0 10 -9 10 -19z m81 -38 c-12 -20 -14 -14 -5 12 4 9 9 14 11 11 3 -2 0 -13
100
+ -6 -23z m-94 -35 c-3 -8 -6 -5 -6 6 -1 11 2 17 5 13 3 -3 4 -12 1 -19z m76
101
+ -13 c-3 -9 -8 -14 -10 -11 -3 3 -2 9 2 15 9 16 15 13 8 -4z m-1733 -35 c6 -11
102
+ 8 -20 6 -20 -3 0 -10 9 -16 20 -6 11 -8 20 -6 20 3 0 10 -9 16 -20z m1356
103
+ -122 c3 -12 21 -45 38 -72 17 -28 31 -62 32 -76 1 -25 13 -29 46 -15 13 5 19
104
+ -2 27 -32 16 -55 14 -59 -15 -32 l-25 24 9 -25 c6 -14 19 -45 30 -70 20 -46
105
+ 38 -150 26 -150 -33 0 -182 263 -219 388 -14 45 -14 48 8 64 29 23 34 22 43
106
+ -4z m248 -17 c3 -4 -4 -17 -16 -27 -13 -12 -18 -13 -12 -4 5 8 9 18 10 23 3
107
+ 15 4 17 8 17 3 0 7 -4 10 -9z m-313 -67 c22 -68 123 -259 167 -318 20 -27 41
108
+ -55 47 -62 5 -7 6 -16 3 -20 -4 -3 -26 13 -50 36 -24 23 -79 74 -123 113 -134
109
+ 121 -215 203 -215 218 0 14 127 89 145 85 6 -1 17 -25 26 -52z m194 -24 c5 -9
110
+ -21 -40 -33 -40 -4 0 -8 13 -9 29 -2 24 1 28 18 24 10 -3 22 -9 24 -13z m136
111
+ 8 c0 -7 2 -21 4 -30 2 -10 -1 -18 -6 -18 -5 0 -7 -12 -4 -27 4 -23 4 -25 -4
112
+ -8 -13 27 -13 95 -1 95 6 0 10 -6 11 -12z m16 -110 c-3 -8 -6 -5 -6 6 -1 11 2
113
+ 17 5 13 3 -3 4 -12 1 -19z m-47 -105 c0 -27 -20 -73 -32 -73 -4 0 -8 12 -8 28
114
+ 0 15 -2 59 -5 97 l-5 70 25 -50 c13 -27 25 -60 25 -72z"/>
115
+ <path d="M941 1977 c-33 -156 -41 -217 -48 -384 -3 -84 -10 -150 -15 -147 -4
116
+ 3 -17 2 -29 -1 -18 -6 -16 -9 18 -26 20 -10 39 -19 41 -19 3 0 2 18 -2 40 -3
117
+ 23 -2 82 4 133 28 237 42 338 59 402 l17 70 7 -98 c4 -53 12 -119 17 -145 6
118
+ -26 15 -73 21 -105 16 -86 23 -62 9 30 -7 43 -18 139 -24 213 -10 125 -12 135
119
+ -32 138 -19 3 -23 -7 -43 -101z"/>
120
+ <path d="M1060 1958 c0 -68 5 -130 10 -138 7 -10 10 30 10 123 0 85 -4 137
121
+ -10 137 -6 0 -10 -47 -10 -122z"/>
122
+ <path d="M1893 2040 c0 -25 2 -35 4 -22 2 12 2 32 0 45 -2 12 -4 2 -4 -23z"/>
123
+ <path d="M1926 2053 c-2 -10 -7 -43 -10 -73 -8 -69 8 -37 18 38 7 51 2 70 -8
124
+ 35z"/>
125
+ <path d="M1877 1913 c-10 -19 -17 -63 -8 -63 4 0 11 14 15 32 6 31 3 47 -7 31z"/>
126
+ <path d="M1873 1453 c9 -2 23 -2 30 0 6 3 -1 5 -18 5 -16 0 -22 -2 -12 -5z"/>
127
+ <path d="M2062 1290 c-12 -44 -12 -73 0 -86 8 -8 21 76 16 107 -3 19 -6 15
128
+ -16 -21z"/>
129
+ <path d="M1245 813 c8 -46 25 -68 25 -32 0 36 -11 69 -22 69 -6 0 -8 -15 -3
130
+ -37z"/>
131
+ <path d="M733 594 c-41 -17 28 -123 94 -145 45 -15 145 -13 210 5 49 12 166
132
+ 93 177 121 7 19 -25 20 -126 4 -63 -10 -227 -2 -323 16 -11 2 -26 1 -32 -1z"/>
133
+ </g>
134
+ </svg>
Binary file
metadata ADDED
@@ -0,0 +1,95 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: catgirl
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - j1nxie
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2023-01-12 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: jekyll
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '4.3'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '4.3'
27
+ - !ruby/object:Gem::Dependency
28
+ name: jekyll-feed
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '0.17'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '0.17'
41
+ description:
42
+ email:
43
+ - rylieeeeexd@gmail.com
44
+ executables: []
45
+ extensions: []
46
+ extra_rdoc_files: []
47
+ files:
48
+ - LICENSE.txt
49
+ - README.md
50
+ - _config.yml
51
+ - _includes/favicons.html
52
+ - _layouts/archives.html
53
+ - _layouts/categories.html
54
+ - _layouts/default.html
55
+ - _layouts/home.html
56
+ - _layouts/post.html
57
+ - _layouts/projects.html
58
+ - _layouts/socials.html
59
+ - _layouts/tags.html
60
+ - _sass/catgirl.scss
61
+ - _sass/colors.scss
62
+ - _sass/fonts.scss
63
+ - assets/css/styles.scss
64
+ - assets/img/favicons/android-chrome-192x192.png
65
+ - assets/img/favicons/apple-touch-icon.png
66
+ - assets/img/favicons/favicon-16x16.png
67
+ - assets/img/favicons/favicon-32x32.png
68
+ - assets/img/favicons/favicon.ico
69
+ - assets/img/favicons/mstile-150x150.png
70
+ - assets/img/favicons/safari-pinned-tab.svg
71
+ - assets/img/suisei.png
72
+ homepage: https://github.com/j1nxie/catgirl
73
+ licenses:
74
+ - MIT
75
+ metadata: {}
76
+ post_install_message:
77
+ rdoc_options: []
78
+ require_paths:
79
+ - lib
80
+ required_ruby_version: !ruby/object:Gem::Requirement
81
+ requirements:
82
+ - - ">="
83
+ - !ruby/object:Gem::Version
84
+ version: '0'
85
+ required_rubygems_version: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ requirements: []
91
+ rubygems_version: 3.3.26
92
+ signing_key:
93
+ specification_version: 4
94
+ summary: a weeb theme for your jekyll site OwO
95
+ test_files: []