jekyll-98 0.3.1 → 0.3.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_config.yml +37 -34
- data/_layouts/post.html +14 -16
- data/_sass/jekyll-98/_base.scss +27 -11
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ecf512975eff7f053645fc31e98b6d449244319bf6b95e69595cd08e913f428b
|
4
|
+
data.tar.gz: 60db5477ed9175324263430ef894976e8d4bbe5a0571ccbfd0919c4392e61da6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 86c777443dcd6851c206947f24a19787aba9f0a16bd4b464b73db39a14dfdb37905e2f197a062e5aca5d5f115eb9b887f1a5ac492d0d8ac92c4627645790cd60
|
7
|
+
data.tar.gz: 13a304766b0b5b3cad7f33bf9164296205cf0d2e25fa43a805e1380789718da42440222f1569c8ebd90f8a35ef22cf817b43929f73638376a428b110d425bb0a
|
data/_config.yml
CHANGED
@@ -2,22 +2,22 @@
|
|
2
2
|
# About your website
|
3
3
|
title: Your awesome title
|
4
4
|
author: # *** NAME AND EMAIL INCLUDED IN RSS FEED BY DEFAULT ***
|
5
|
-
name: &name GitHub User
|
6
|
-
email: &email your-email@domain.com
|
5
|
+
name: &name GitHub User # removing &name breaks contact page
|
6
|
+
email: &email your-email@domain.com # removing &email breaks contact page
|
7
7
|
description: > # > means to ignore newlines until next section
|
8
8
|
Write an awesome description for your new site here. You can edit this
|
9
9
|
line in _config.yml. It will appear in your document head meta (for
|
10
10
|
Google search results) and in your feed.xml site description.
|
11
|
-
It will also appear on the site About page.
|
11
|
+
It will also appear on the site About page.
|
12
12
|
# url: https://jekyll-98.github.io # will try to use github pages url if omitted
|
13
|
+
|
13
14
|
#### SETTINGS - Sitewide preferences
|
14
15
|
remote_theme: queenkjuul/jekyll-98
|
15
|
-
show_excerpts: true
|
16
|
+
show_excerpts: true # mostly works, see README
|
16
17
|
show_categories: true
|
17
|
-
paginate:
|
18
|
-
|
19
|
-
|
20
|
-
# set to false to disable pagination (all posts listed on home page)
|
18
|
+
paginate: 3 # set to a number of posts per page
|
19
|
+
# only 3 works well on small mobile screens
|
20
|
+
# set to false to disable pagination (all posts listed on home page)
|
21
21
|
paginate_path: /page/:num # probably shouldn't touch
|
22
22
|
# google_analytics: # input your google analytics key for tracking
|
23
23
|
|
@@ -25,8 +25,10 @@ paginate_path: /page/:num # probably shouldn't touch
|
|
25
25
|
jekyll-98:
|
26
26
|
date_format: "%b %-d, %Y" # refer to https://shopify.github.io/liquid/filters/date/ if you want to customize this
|
27
27
|
|
28
|
+
add_titles: false # you probably want this, it's only useful for my own website to turn it on
|
29
|
+
|
28
30
|
### SITE ICON
|
29
|
-
# select site icon which will be used for homepage links
|
31
|
+
# select site icon which will be used for homepage links
|
30
32
|
# on the desktop and in the start menu
|
31
33
|
# see assets/icons for choices, omit extension
|
32
34
|
icon: computer
|
@@ -45,36 +47,36 @@ jekyll-98:
|
|
45
47
|
# icon will default to "document"
|
46
48
|
# see assets/icons for icon choices
|
47
49
|
site_links:
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
50
|
+
- title: Example
|
51
|
+
url: http://example.com
|
52
|
+
target: _blank # optional
|
53
|
+
icon: html # optional
|
54
|
+
alt: 'This is an example' # alt text is shown in start menu - long strings won't wrap and might break menu
|
53
55
|
|
54
56
|
### CONTACT PAGE
|
55
57
|
# social links from the social_links section are automatically added to contact page (if enabled)
|
56
58
|
# only defined fields are displayed
|
57
|
-
contact:
|
58
|
-
name: *name
|
59
|
+
contact: # comment to omit page altogether
|
60
|
+
name: *name # reuses values from above
|
59
61
|
email: *email
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
62
|
+
phone: phone number if you're spicy
|
63
|
+
address:
|
64
|
+
- 1234 Street Avenue
|
65
|
+
- Assigned living quarters number X
|
66
|
+
- City, Unit bigger than city, country, postal related code
|
67
|
+
- You can actually add as many lines as your little heart desires
|
68
|
+
other:
|
69
|
+
- custom info can go here
|
70
|
+
- each line gets rendered
|
71
|
+
- layout not optimized for long lists
|
70
72
|
|
71
73
|
### SOCIAL MEDIA / QUICK LAUNCH
|
72
74
|
# generate social links in footer
|
73
75
|
# only 5 will safely fit on small phones
|
74
76
|
social_links:
|
75
|
-
|
76
|
-
|
77
|
-
|
77
|
+
github: queenkjuul
|
78
|
+
youtube: queenkjuul69
|
79
|
+
twitch: queenkjuul
|
78
80
|
# twitter: jekyllrb
|
79
81
|
# devto: jekyll
|
80
82
|
# dribbble: jekyll
|
@@ -108,19 +110,20 @@ jekyll-98:
|
|
108
110
|
# add personal details to about page if you like
|
109
111
|
# lines are rendered as bulleted list
|
110
112
|
about:
|
111
|
-
|
113
|
+
- Live long and prosper, loves \\//_
|
112
114
|
|
113
115
|
#### PLUGINS - Add what you need, but don't remove defaults!
|
114
116
|
plugins:
|
115
|
-
- jekyll-paginate
|
117
|
+
- jekyll-paginate # theme default
|
116
118
|
- jekyll-category-pages # theme-default
|
117
|
-
- jekyll-feed
|
119
|
+
- jekyll-feed # theme-default
|
118
120
|
|
119
121
|
#### DEFAULTS - Only for theme website, you can ignore/remove
|
120
122
|
defaults:
|
121
|
-
-
|
123
|
+
-
|
124
|
+
scope:
|
122
125
|
path: "_posts"
|
123
126
|
values:
|
124
127
|
layout: "post"
|
125
128
|
categories:
|
126
|
-
- posts
|
129
|
+
- posts
|
data/_layouts/post.html
CHANGED
@@ -1,28 +1,26 @@
|
|
1
1
|
---
|
2
2
|
layout: default
|
3
3
|
---
|
4
|
+
|
4
5
|
{% capture window_content %}
|
5
6
|
<div class="post-content window-body">
|
7
|
+
{% if site.jekyll-98.add_titles %}
|
6
8
|
<h1>{{page.title}}</h1>
|
7
|
-
{{content}}
|
9
|
+
{% endif %} {{content}}
|
8
10
|
</div>
|
9
|
-
{% endcapture %}
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
{%- assign date_format = site.jekyll-98.date_format | default: "%b %-d, %Y" -%}
|
15
|
-
{{ page.date | date: date_format }}
|
16
|
-
</div>
|
17
|
-
{% for category in page.categories %}
|
18
|
-
<div class="status-bar-field">
|
19
|
-
{{category}}
|
20
|
-
</div>
|
21
|
-
{% endfor %}
|
11
|
+
{% endcapture %} {% capture status_bar_content %}
|
12
|
+
<div class="status-bar">
|
13
|
+
<div class="status-bar-field status-bar-date">
|
14
|
+
{%- assign date_format = site.jekyll-98.date_format | default: "%b %-d, %Y"
|
15
|
+
-%} {{ page.date | date: date_format }}
|
22
16
|
</div>
|
17
|
+
{% for category in page.categories %}
|
18
|
+
<div class="status-bar-field">{{category}}</div>
|
19
|
+
{% endfor %}
|
20
|
+
</div>
|
23
21
|
{% endcapture %}
|
24
22
|
|
25
23
|
<div class="post-page">
|
26
|
-
{% include desktop_icons.html hide=true %}
|
27
|
-
|
24
|
+
{% include desktop_icons.html hide=true %} {% include window.html
|
25
|
+
title=page.title content=window_content statusbar=status_bar_content %}
|
28
26
|
</div>
|
data/_sass/jekyll-98/_base.scss
CHANGED
@@ -1,36 +1,48 @@
|
|
1
1
|
/**
|
2
2
|
* Reset some basic elements
|
3
3
|
*/
|
4
|
-
body,
|
5
|
-
|
6
|
-
|
4
|
+
body,
|
5
|
+
h1,
|
6
|
+
h2,
|
7
|
+
h3,
|
8
|
+
h4,
|
9
|
+
h5,
|
10
|
+
h6,
|
11
|
+
p,
|
12
|
+
blockquote,
|
13
|
+
pre,
|
14
|
+
hr,
|
15
|
+
dl,
|
16
|
+
dd,
|
17
|
+
ol,
|
18
|
+
ul,
|
19
|
+
figure {
|
7
20
|
margin: 0;
|
8
21
|
padding: 0;
|
9
22
|
font-size: 1rem;
|
10
|
-
}
|
23
|
+
}
|
11
24
|
|
12
25
|
.window {
|
13
|
-
|
14
26
|
& h1 {
|
15
27
|
font-size: 2rem;
|
16
28
|
}
|
17
|
-
|
29
|
+
|
18
30
|
& h2 {
|
19
31
|
font-size: 1.6rem;
|
20
32
|
}
|
21
|
-
|
33
|
+
|
22
34
|
& h3 {
|
23
35
|
font-size: 1.4rem;
|
24
36
|
}
|
25
|
-
|
37
|
+
|
26
38
|
& h4 {
|
27
39
|
font-size: 1.2rem;
|
28
40
|
}
|
29
|
-
|
41
|
+
|
30
42
|
& h5 {
|
31
43
|
font-size: 1.1rem;
|
32
44
|
}
|
33
|
-
|
45
|
+
|
34
46
|
& h6 {
|
35
47
|
font-size: 1rem;
|
36
48
|
}
|
@@ -47,6 +59,10 @@ ul {
|
|
47
59
|
margin-top: 8px;
|
48
60
|
}
|
49
61
|
|
62
|
+
ol {
|
63
|
+
margin-left: 16px;
|
64
|
+
}
|
65
|
+
|
50
66
|
li {
|
51
67
|
margin-bottom: 8px;
|
52
|
-
}
|
68
|
+
}
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-98
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- queenkjuul
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-11-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -221,7 +221,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
221
221
|
- !ruby/object:Gem::Version
|
222
222
|
version: '0'
|
223
223
|
requirements: []
|
224
|
-
rubygems_version: 3.
|
224
|
+
rubygems_version: 3.4.20
|
225
225
|
signing_key:
|
226
226
|
specification_version: 4
|
227
227
|
summary: Windows 98 theme based on 98.css for Queen K Juul's website
|