yefeme 0.4.0 → 0.4.1
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 +14 -1
- data/_includes/head.html +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cc151bc3b9b3487595a6ee20618a9b16e8732785
|
|
4
|
+
data.tar.gz: dfc82507769229ab83d53534dbb19003552554ce
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 01df58e19872821cf4d97080878fee2be108ba65c6b53893f7e91d23fcc3aff9c35cf02bcb93029f16cd394d39fb0383be0d43dbe0af623b864811ae17853a5c
|
|
7
|
+
data.tar.gz: f3a9f7d119604d6b3f141673a6d2c1e785f0b77d73a2b5cd1aaf32a912608930ae341e93cf51e48152c8dd1c8774152fa6a4ff58fb76951114cb9c7fdf9767d9
|
data/README.md
CHANGED
|
@@ -26,7 +26,20 @@ Or install it yourself as:
|
|
|
26
26
|
|
|
27
27
|
## Usage
|
|
28
28
|
|
|
29
|
-
|
|
29
|
+
### Configuration variables
|
|
30
|
+
|
|
31
|
+
Yefeme will respect the following variables, if set in your site's `_config.yml`:
|
|
32
|
+
|
|
33
|
+
``` yaml
|
|
34
|
+
author: [Your name]
|
|
35
|
+
title: [The title of your site]
|
|
36
|
+
description: [A short description of your site's purpose]
|
|
37
|
+
url: [URL of your site]
|
|
38
|
+
lang: [Language of your site]
|
|
39
|
+
email: [Your email]
|
|
40
|
+
twitter: [Your Twitter handle]
|
|
41
|
+
github: [Your GitHub handle]
|
|
42
|
+
```
|
|
30
43
|
|
|
31
44
|
## Contributing
|
|
32
45
|
|
data/_includes/head.html
CHANGED
|
@@ -20,8 +20,8 @@
|
|
|
20
20
|
<meta property="article:published_time" content="{{ page.date | date_to_xmlschema }}">
|
|
21
21
|
{% endif %}
|
|
22
22
|
|
|
23
|
-
{% if site.
|
|
24
|
-
<meta name="twitter:site" content="@{{ site.
|
|
23
|
+
{% if site.twitter %}
|
|
24
|
+
<meta name="twitter:site" content="@{{ site.twitter }}">
|
|
25
25
|
{% endif %}
|
|
26
26
|
|
|
27
27
|
<link rel="icon" type="image/png" href="/favicon-32x32.png" sizes="32x32">
|