jekyll-theme-simplex 0.9.8.7 → 0.9.8.12

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4b5fa2da500d4ab76f0810433b658088bbaeb57c43b196920b70f60006258469
4
- data.tar.gz: '084d97281dc03c6d68678ef51d3835251b3adffd03173ac3df4c1c100c0ad4c2'
3
+ metadata.gz: e0c610fff068a6f418b35bf0d0bb156842b7391f61a2b9b8f200f7fe02b0d976
4
+ data.tar.gz: 87b9cb8e57ad128473a03ed33776c00c9e522920477521fe16e5ab6114cc5c81
5
5
  SHA512:
6
- metadata.gz: cfbb8fa2fa9e953e2347ead059fb5033ac0c824cbf5084e8932662cb523d0c7314e00e7933850df454a42d63079f8994dce1f6a4c776956a577a18e95a4f2b01
7
- data.tar.gz: 2ef3e7092faa94c86304afd7f67651463b93161b704f4ed368769cc9acd0d8f5a93c5dc0b0f83cc6d8429359a94037b092cff1c706b4c1ef8768a46586158b16
6
+ metadata.gz: 66d0cce5163ecbceb4c59aaf3177739ba5864c600b5b75849328d7398165b5156af2cef9a4009d1ff2b600eeccc6ed0299e3d385c68db2897f9fa8058b39c916
7
+ data.tar.gz: 2756dd25e5f3e67717c6f33a3d4eebf42317c94648a25c8c22be6b84ed0742f221dc158a078e8b339289f28590d386f6a28e0d56ad5343d7e337ccd3946102cb
data/README.md CHANGED
@@ -124,6 +124,7 @@ nextPart: _posts/2021-01-30-example.md #Next part.
124
124
  prevPart: _posts/2021-01-30-example.md #Previous part.
125
125
  og_image: assets/example.png #Open Graph preview image.
126
126
  og_description: "Example description." #Open Graph description.
127
+ fb_app_id: example
127
128
  ---
128
129
  Your markdown content here.
129
130
  ```
data/_includes/head.html CHANGED
@@ -23,15 +23,20 @@
23
23
  {% if page.og_description != nil %}
24
24
  <meta property="og:description" content="{{ page.og_description }}" />
25
25
  {% endif %}
26
- <meta property="og:url" content="{{ site.url }}{{ page.url }}" />
26
+ <meta property="og:url" content="{{ site.url }}/{{ page.url }}" />
27
27
  {% if page.og_type != nil %}
28
28
  <meta property="og:type" content="{{ page.og_type }}" />
29
29
  {% else %}
30
30
  <meta property="og:type" content="article" />
31
31
  {% endif %}
32
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 }}" />
33
+ <meta property="og:image" content="{{ site.url }}/{{ page.og_image }}" />
34
+ <meta property="og:image:secure_url" content="{{ site.url }}/{{ page.og_image }}" />
35
+ {% endif %}
36
+ {% if page.fb_app_id != nil %}
37
+ <meta property="fb:app_id" content="{{ page.fb_app_id }}" />
38
+ {% else if site.fb_app_id != nil %}
39
+ <meta property="fb:app_id" content="{{ site.fb_app_id }}" />
35
40
  {% endif %}
36
41
 
37
42
 
data/_sass/_page.scss CHANGED
@@ -7,7 +7,7 @@
7
7
 
8
8
  color: var(--c-pageText);
9
9
  justify-self: center;
10
- padding: 0 1rem;
10
+ margin: 0 2rem;
11
11
  max-width: 1000px;
12
12
  @include flexbox{
13
13
  flex-direction: column;
data/_sass/_post.scss CHANGED
@@ -6,7 +6,7 @@
6
6
  .post{
7
7
 
8
8
  justify-self: center;
9
- padding: 0 1rem;
9
+ margin: 0 2rem;
10
10
  max-width: 1000px;
11
11
  @include flexbox{
12
12
  flex-direction: column;
@@ -17,6 +17,7 @@
17
17
  &__title{
18
18
 
19
19
  &__text{
20
+ text-align: center;
20
21
  color: var(--c-postTitle);
21
22
  margin-bottom: 0;
22
23
  }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-theme-simplex
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.8.7
4
+ version: 0.9.8.12
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ondrej Golasowski