minimal-categorized 0.0.7 → 0.0.8
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 +4 -4
- data/_config.yml +12 -6
- data/_includes/common-head.html +2 -2
- 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: d216b8f7de9865f08d2683dd6ead7e1f3d6736bb8032d255d92396882d69e703
|
4
|
+
data.tar.gz: 97eb9bffc01ca73620b1ccb90ce90283e0abaff26ab8ef9f749a0143252173a9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1578a72c8b42618fea626df346960990c20007a8af60797596e6954b7258041429779a2488eb226e404ed9d4df1fa15b65b1916f2c4e4c212bafbb00aac935a1
|
7
|
+
data.tar.gz: 5af2a7516234584fc0fef1b1b1d13c14267d60b0c8d0aa7bf0f97c2ee1e14c7aff7e76d6ea402dbaddc857f257e158f4c4a4a01a1f9c25763b2d7d820f31e437
|
data/_config.yml
CHANGED
@@ -13,15 +13,21 @@
|
|
13
13
|
# you will see them accessed via {{ site.title }}, {{ site.email }}, and so on.
|
14
14
|
# You can create any custom variable you would like, and they will be accessible
|
15
15
|
# in the templates via {{ site.myvariable }}.
|
16
|
-
title:
|
16
|
+
title: minimal-categorized
|
17
|
+
tagline: A site showing the usage of Jekyll custom theme
|
17
18
|
email: email@example.com
|
18
19
|
description: >- # this means to ignore newlines until "baseurl:"
|
19
|
-
|
20
|
-
|
21
|
-
|
20
|
+
This website was created as a demonstration for Jekyll custom theme
|
21
|
+
named minimal-categorized. Its main feature is to aggregate posts into
|
22
|
+
categories, witch are easily distinguishable
|
22
23
|
baseurl: "/minimal-categorized" # the subpath of your site, e.g. /blog
|
23
|
-
url: "" # the base hostname & protocol for your site, e.g. http://example.com
|
24
|
-
|
24
|
+
url: "https://itsmeaga1n.github.io" # the base hostname & protocol for your site, e.g. http://example.com
|
25
|
+
author: itsmeaga1n
|
26
|
+
twitter:
|
27
|
+
username: itsmeaga1n
|
28
|
+
card: summary
|
29
|
+
plugins:
|
30
|
+
- jekyll-seo-tag
|
25
31
|
|
26
32
|
# Build settings
|
27
33
|
markdown: kramdown
|
data/_includes/common-head.html
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
<meta charset="utf-8">
|
2
2
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
3
|
-
<title>{{ page.title }}</title>
|
4
3
|
<link rel="stylesheet" href="{{ '/assets/styles/styles.css' | relative_url }}">
|
5
|
-
<script src="https://kit.fontawesome.com/79c31398dc.js" crossorigin="anonymous"></script>
|
4
|
+
<script src="https://kit.fontawesome.com/79c31398dc.js" crossorigin="anonymous"></script>
|
5
|
+
{% seo %}
|