catgirl 0.1.0 → 0.1.1

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: 7b3e4b26dfe490fa4b1f5b2e5106a95476230976945a854551cdd9bb5252fe8f
4
- data.tar.gz: 75489a3da903e0f31734e7e112521b21cadbef7d5fcd08526c2b27ffa7fc0420
3
+ metadata.gz: 3ee5b681b157ff4209e5e7f4d619a530f22d8a2028e5730da5835df955448edc
4
+ data.tar.gz: 5a78a67b9bcbdb6673f356d19b01f931a8a59880a3b4693b53299a6478768725
5
5
  SHA512:
6
- metadata.gz: 9da7b2272bc32d771df94d646b8b65fe02094486cb7301f62064dd8881de08e5c006a44ac1d5b125c6806a811cf0c06df683177bef2d8c46ec0a83ce87fc1985
7
- data.tar.gz: 2acec2ba66eb37a54ddf82913b325aee172c7dc70d770977655c8e7ee6db3423561f973a1c9369e904366906ab133ca3d9264fa4cdc186905bef1a9b0e5b28de
6
+ metadata.gz: 625d5962a7b1e3ade3d121da80adb2fb295b031858a2ae47302b111786e76d9d35c36e608cf711945cd5346778ce5295b244458b5f8d74b1c24e1ada7c6f7979
7
+ data.tar.gz: 671003f93023916851ca89bca8787fe66b5834fba47b9089d4e2180fdba380c5f9a5f494cb585a0d73ac9bbbee2f9f1f082ec5f7127df6ad9c1d908ce2dee77b
data/README.md CHANGED
@@ -7,19 +7,23 @@ a simple Jekyll theme, made for my personal usage.
7
7
 
8
8
  add this line to your Jekyll site's `Gemfile`:
9
9
 
10
- ```ruby gem "catgirl" ```
10
+ ```ruby
11
+ gem "catgirl"
12
+ ```
11
13
 
12
14
  and add this line to your Jekyll site's `_config.yml`:
13
15
 
14
- ```yaml theme: catgirl ```
16
+ ```yaml
17
+ theme: catgirl
18
+ ```
15
19
 
16
20
  and then execute:
17
21
 
18
- $ bundle
22
+ $ bundle
19
23
 
20
- Or install it yourself as:
24
+ or install it yourself as:
21
25
 
22
- $ gem install catgirl
26
+ $ gem install catgirl
23
27
 
24
28
  ## usage
25
29
 
@@ -50,7 +54,7 @@ conduct.
50
54
 
51
55
  to set up your environment to develop this theme, run `bundle install`.
52
56
 
53
- your theme is setup just like a normal Jekyll site! To test your theme, run
57
+ your theme is setup just like a normal Jekyll site! to test your theme, run
54
58
  `bundle exec jekyll serve` and open your browser at `http://localhost:4000`.
55
59
  this starts a Jekyll server using your theme. add pages, documents, data, etc.
56
60
  like normal to test your theme's contents. as you make modifications to your
@@ -0,0 +1,13 @@
1
+ <head>
2
+ <meta charset="UTF-8">
3
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
4
+ <meta name="viewport" content="width=device-width, initial-scale=1">
5
+ <link rel="stylesheet" href="/assets/css/styles.css">
6
+ <title>
7
+ {%- unless page.layout == "home" -%}
8
+ {{ page.title | append: " | " }}
9
+ {%- endunless -%}
10
+ {{ site.title }}
11
+ </title>
12
+ {% include favicons.html %}
13
+ </head>
@@ -1,19 +1,6 @@
1
1
  <!DOCTYPE html>
2
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
-
3
+ {% include head.html %}
17
4
  <body>
18
5
  <div id="main-wrapper">
19
6
  <div id="wrapper">
data/_layouts/home.html CHANGED
@@ -2,3 +2,18 @@
2
2
  layout: default
3
3
  # home page layout
4
4
  ---
5
+
6
+ <div id="home-wrapper">
7
+ <h1 class="home-text">j1nxie | Rylie | Lumine</h1>
8
+ <hr style="width: 80%">
9
+ <p class="home-text">
10
+ random developer on the internet | hoshiyomi | i like anime girls
11
+ </p>
12
+ <p class="home-text">
13
+ check out my projects <a href="/projects">here</a>!
14
+ </p>
15
+ <p id="quote-text">
16
+ "I want to do what I can for the people who need me. That way, I might
17
+ remain in the memories of that person, right?"
18
+ </p>
19
+ </div>
data/_sass/catgirl.scss CHANGED
@@ -1,5 +1,6 @@
1
1
  @import "fonts";
2
2
  @import "colors";
3
+ @import "home";
3
4
 
4
5
  $sidebar-size: 280px;
5
6
 
data/_sass/home.scss ADDED
@@ -0,0 +1,19 @@
1
+ #home-wrapper {
2
+ display: flex;
3
+ flex-direction: column;
4
+ font-size: 20px;
5
+ height: 100%;
6
+ justify-content: center;
7
+ line-height: 1.25em;
8
+ width: 800px;
9
+ }
10
+
11
+ .home-text {
12
+ text-align: center;
13
+ }
14
+
15
+ #quote-text {
16
+ align-self: center;
17
+ margin-top: auto;
18
+ text-align: center;
19
+ }
Binary file
Binary file
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.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - j1nxie
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-01-12 00:00:00.000000000 Z
11
+ date: 2023-01-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -49,6 +49,7 @@ files:
49
49
  - README.md
50
50
  - _config.yml
51
51
  - _includes/favicons.html
52
+ - _includes/head.html
52
53
  - _layouts/archives.html
53
54
  - _layouts/categories.html
54
55
  - _layouts/default.html
@@ -60,6 +61,7 @@ files:
60
61
  - _sass/catgirl.scss
61
62
  - _sass/colors.scss
62
63
  - _sass/fonts.scss
64
+ - _sass/home.scss
63
65
  - assets/css/styles.scss
64
66
  - assets/img/favicons/android-chrome-192x192.png
65
67
  - assets/img/favicons/apple-touch-icon.png