jekyll-98 0.3.2 → 0.3.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_config.yml +26 -27
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a5a4437a44a6ddb935c2805470c2b76c663c4a9ff00a68296b2af57818d1e663
|
4
|
+
data.tar.gz: e01f11003484f84ebf2d24f1040e684f9995787f37471c1a2d8a64bede4a3549
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ae53786b76ef84d0571c721e0d8d5ce8b98779cb48f0edfddb0913f0661620e2bec00f94227c267dd2c3e4dbcd6c5ca46cd80e629aa39c0e425e0d07e726a7e0
|
7
|
+
data.tar.gz: e48aa8fa4fab70b949972744846a13ca5ffbba2f59e28054a3e6853fcadf95212d002ce4dc1a6b55bce76eb01471122218f39f541c734a9eef7ed5a8018cf8d6
|
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
|
-
|
14
13
|
#### SETTINGS - Sitewide preferences
|
15
14
|
remote_theme: queenkjuul/jekyll-98
|
16
|
-
show_excerpts: true
|
15
|
+
show_excerpts: true # mostly works, see README
|
17
16
|
show_categories: true
|
18
|
-
paginate:
|
19
|
-
|
20
|
-
|
17
|
+
paginate:
|
18
|
+
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
|
|
@@ -28,7 +28,7 @@ jekyll-98:
|
|
28
28
|
add_titles: false # you probably want this, it's only useful for my own website to turn it on
|
29
29
|
|
30
30
|
### SITE ICON
|
31
|
-
# select site icon which will be used for homepage links
|
31
|
+
# select site icon which will be used for homepage links
|
32
32
|
# on the desktop and in the start menu
|
33
33
|
# see assets/icons for choices, omit extension
|
34
34
|
icon: computer
|
@@ -47,23 +47,23 @@ jekyll-98:
|
|
47
47
|
# icon will default to "document"
|
48
48
|
# see assets/icons for icon choices
|
49
49
|
site_links:
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
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
|
55
55
|
|
56
56
|
### CONTACT PAGE
|
57
57
|
# social links from the social_links section are automatically added to contact page (if enabled)
|
58
58
|
# only defined fields are displayed
|
59
|
-
contact:
|
60
|
-
name: *name
|
59
|
+
contact: # comment to omit page altogether
|
60
|
+
name: *name # reuses values from above
|
61
61
|
email: *email
|
62
|
-
phone: phone number if you're spicy
|
63
|
-
address:
|
62
|
+
phone: phone number if you're spicy
|
63
|
+
address:
|
64
64
|
- 1234 Street Avenue
|
65
65
|
- Assigned living quarters number X
|
66
|
-
- City, Unit bigger than city, country, postal related code
|
66
|
+
- City, Unit bigger than city, country, postal related code
|
67
67
|
- You can actually add as many lines as your little heart desires
|
68
68
|
other:
|
69
69
|
- custom info can go here
|
@@ -74,9 +74,9 @@ jekyll-98:
|
|
74
74
|
# generate social links in footer
|
75
75
|
# only 5 will safely fit on small phones
|
76
76
|
social_links:
|
77
|
-
github: queenkjuul
|
78
|
-
youtube: queenkjuul69
|
79
|
-
twitch: queenkjuul
|
77
|
+
# github: queenkjuul
|
78
|
+
# youtube: queenkjuul69
|
79
|
+
# twitch: queenkjuul
|
80
80
|
# twitter: jekyllrb
|
81
81
|
# devto: jekyll
|
82
82
|
# dribbble: jekyll
|
@@ -114,16 +114,15 @@ jekyll-98:
|
|
114
114
|
|
115
115
|
#### PLUGINS - Add what you need, but don't remove defaults!
|
116
116
|
plugins:
|
117
|
-
- jekyll-paginate
|
117
|
+
- jekyll-paginate # theme default
|
118
118
|
- jekyll-category-pages # theme-default
|
119
|
-
- jekyll-feed
|
119
|
+
- jekyll-feed # theme-default
|
120
120
|
|
121
121
|
#### DEFAULTS - Only for theme website, you can ignore/remove
|
122
122
|
defaults:
|
123
|
-
-
|
124
|
-
scope:
|
123
|
+
- scope:
|
125
124
|
path: "_posts"
|
126
125
|
values:
|
127
126
|
layout: "post"
|
128
127
|
categories:
|
129
|
-
- posts
|
128
|
+
- posts
|