jekyll-theme-simplex 0.9.8.2 → 0.9.8.7
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/README.md +6 -2
- data/_includes/head.html +26 -0
- data/_includes/header.html +1 -1
- data/_sass/_header.scss +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4b5fa2da500d4ab76f0810433b658088bbaeb57c43b196920b70f60006258469
|
|
4
|
+
data.tar.gz: '084d97281dc03c6d68678ef51d3835251b3adffd03173ac3df4c1c100c0ad4c2'
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cfbb8fa2fa9e953e2347ead059fb5033ac0c824cbf5084e8932662cb523d0c7314e00e7933850df454a42d63079f8994dce1f6a4c776956a577a18e95a4f2b01
|
|
7
|
+
data.tar.gz: 2ef3e7092faa94c86304afd7f67651463b93161b704f4ed368769cc9acd0d8f5a93c5dc0b0f83cc6d8429359a94037b092cff1c706b4c1ef8768a46586158b16
|
data/README.md
CHANGED
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
⚠ WORK IN PROGRESS - DO NOT USE IN PRODUCTION ⚠
|
|
2
|
-
|
|
3
1
|
[](https://golas.blog/)
|
|
4
2
|
|
|
5
3
|
# <img src="assets/img/icons/simplex_logo.svg" alt="Simplex" height="50"/>
|
|
@@ -23,6 +21,8 @@ A *simple* yet neat blogging theme. Developed for the [golas blog](https://golas
|
|
|
23
21
|
### Lity Lightbox
|
|
24
22
|
Supports images, videos, iFrames and more. See below for syntax.
|
|
25
23
|
|
|
24
|
+
### Open Graph tags
|
|
25
|
+
|
|
26
26
|
## ℹ Installation
|
|
27
27
|
|
|
28
28
|
Add this line to your Jekyll site's `Gemfile`:
|
|
@@ -120,6 +120,10 @@ layout: post #Do not change.
|
|
|
120
120
|
category: [programming, testing] #One, more categories or no at all.
|
|
121
121
|
title: "Lorem ipsum" #Article title.
|
|
122
122
|
author: andy #Author's nick.
|
|
123
|
+
nextPart: _posts/2021-01-30-example.md #Next part.
|
|
124
|
+
prevPart: _posts/2021-01-30-example.md #Previous part.
|
|
125
|
+
og_image: assets/example.png #Open Graph preview image.
|
|
126
|
+
og_description: "Example description." #Open Graph description.
|
|
123
127
|
---
|
|
124
128
|
Your markdown content here.
|
|
125
129
|
```
|
data/_includes/head.html
CHANGED
|
@@ -9,6 +9,32 @@
|
|
|
9
9
|
<meta charset="UTF-8">
|
|
10
10
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
11
11
|
|
|
12
|
+
<meta property="og:site_name" content="{{ site.title }}" />
|
|
13
|
+
<meta
|
|
14
|
+
property="og:title"
|
|
15
|
+
content="
|
|
16
|
+
{% if page.title != nil %}
|
|
17
|
+
{{page.title}}
|
|
18
|
+
{% else %}
|
|
19
|
+
{{site.title}}
|
|
20
|
+
{% endif %}
|
|
21
|
+
"
|
|
22
|
+
/>
|
|
23
|
+
{% if page.og_description != nil %}
|
|
24
|
+
<meta property="og:description" content="{{ page.og_description }}" />
|
|
25
|
+
{% endif %}
|
|
26
|
+
<meta property="og:url" content="{{ site.url }}{{ page.url }}" />
|
|
27
|
+
{% if page.og_type != nil %}
|
|
28
|
+
<meta property="og:type" content="{{ page.og_type }}" />
|
|
29
|
+
{% else %}
|
|
30
|
+
<meta property="og:type" content="article" />
|
|
31
|
+
{% endif %}
|
|
32
|
+
{% if page.og_image != nil %}
|
|
33
|
+
<meta property="og:image" content="{{ page.og_image }}" />
|
|
34
|
+
<meta property="og:image:secure_url" content="{{ page.og_image }}" />
|
|
35
|
+
{% endif %}
|
|
36
|
+
|
|
37
|
+
|
|
12
38
|
<title>
|
|
13
39
|
{% if page.title != nil %}
|
|
14
40
|
{{page.title}}
|
data/_includes/header.html
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
<a href="{{ site.url }}/" class="logo__link">
|
|
4
4
|
{% if site.logo_img != nil %}
|
|
5
5
|
<h1 style="display: none;">{{ site.title }}</h1>
|
|
6
|
-
<img class="logo__link__img" src={{site.logo_img}}/>
|
|
6
|
+
<img class="logo__link__img" src="{{site.logo_img}}" />
|
|
7
7
|
{% else %}
|
|
8
8
|
<h1>{{ site.title }}</h1>
|
|
9
9
|
{% endif %}
|
data/_sass/_header.scss
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jekyll-theme-simplex
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.9.8.
|
|
4
|
+
version: 0.9.8.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ondrej Golasowski
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-02-
|
|
11
|
+
date: 2021-02-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|