zaunkoenig 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/README.md +62 -4
- data/_sass/zaunkoenig/{variables_customn.scss → customn-variables.scss} +0 -0
- data/_sass/zaunkoenig/initialize.scss +21 -0
- data/_sass/zaunkoenig/variables.scss +0 -11
- data/assets/css/style.scss +1 -1
- metadata +3 -3
- data/_sass/zaunkoenig.scss +0 -10
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: decd9df9b508d1cc926256e9926df7609c2510fd4098436f05284c7724c8ca81
|
4
|
+
data.tar.gz: 47ff96fdd8a1f503599777246e2a8a3f9eaaa1d9d1f6d6569182341124b72659
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9da95020ff57f7ac3ed23835a4976d2f13d9923e06e4af7cf5352c1cd60544be37844fef44f154b0bf3f8244126df7e412c7f03b1eea4719c10652d7876e4b45
|
7
|
+
data.tar.gz: a1ff1956321734508d9339caff602214650c5d68c5212ae1a4bb21631932919220578ecf037e978167610178de025a8359eafc18f771162c4cb7766e55881afc
|
data/README.md
CHANGED
@@ -1,11 +1,69 @@
|
|
1
|
-
#
|
1
|
+
# Zaunkönig
|
2
2
|
|
3
|
-
|
3
|
+
Zaunkönig is a lightweight and elegant theme for Jekyll.
|
4
|
+
|
5
|
+

|
6
|
+
|
7
|
+
*Picture taken by [l.schmiegel](https://commons.wikimedia.org/wiki/File:Zaunk%C3%B6nig_IMG_0149.JPG)*
|
4
8
|
|
5
|
-
|
9
|
+
## Features
|
10
|
+
|
11
|
+
### Customn Logo
|
6
12
|
|
7
|
-
|
13
|
+
You can overwrite footer and header logo.
|
8
14
|
|
15
|
+
Create `includes/footer_logo.html` or `includes/header_logo.html` to roll your own.
|
16
|
+
|
17
|
+
### Change fonts an colours
|
18
|
+
|
19
|
+
You can change the look and feel of the theme by overriding the variables in `variables.scss`.
|
20
|
+
|
21
|
+
You can change fonts and colors.
|
22
|
+
|
23
|
+
```scss
|
24
|
+
$color_primary: #FF4B3E;
|
25
|
+
$color_primary_hover: #972D07;
|
26
|
+
$color_font: #222;
|
27
|
+
$color_font_dark: #000;
|
28
|
+
$color_font_inverse: #cccccc;
|
29
|
+
$color_font_inverse_light: #ffffff;
|
30
|
+
$color_background: #ffffff;
|
31
|
+
$color_background_inverse: #972D07;
|
32
|
+
$color_border: #efefef;
|
33
|
+
$font_text: Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Georgia, serif;
|
34
|
+
$font_decoration: "Century Gothic", CenturyGothic, Futura, sans-serif;
|
35
|
+
```
|
36
|
+
|
37
|
+
### Add navigation items
|
38
|
+
|
39
|
+
You can customize the navigation items in header and footer by adding your own navigation.yml to `data/navigation.yml`.
|
40
|
+
|
41
|
+
```yml
|
42
|
+
main:
|
43
|
+
items:
|
44
|
+
- title: Start
|
45
|
+
url: /
|
46
|
+
|
47
|
+
- title: Blog
|
48
|
+
url: /blog/
|
49
|
+
|
50
|
+
footer:
|
51
|
+
items:
|
52
|
+
- title: Zaunkönig
|
53
|
+
url: /
|
54
|
+
|
55
|
+
- title: Birdsnest
|
56
|
+
url: /
|
57
|
+
```
|
58
|
+
|
59
|
+
### Syntax highlighting
|
60
|
+
|
61
|
+
You can enable syntax-highlighting by adding the following code to your front-matter.
|
62
|
+
|
63
|
+
```yaml
|
64
|
+
..
|
65
|
+
syntax_highlighting: true
|
66
|
+
```
|
9
67
|
|
10
68
|
## Installation
|
11
69
|
|
File without changes
|
@@ -0,0 +1,21 @@
|
|
1
|
+
$color_primary: #FF4B3E;
|
2
|
+
$color_primary_hover: #972D07;
|
3
|
+
$color_font: #222;
|
4
|
+
$color_font_dark: #000;
|
5
|
+
$color_font_inverse: #cccccc;
|
6
|
+
$color_font_inverse_light: #ffffff;
|
7
|
+
$color_background: #ffffff;
|
8
|
+
$color_background_inverse: #972D07;
|
9
|
+
$color_border: #efefef;
|
10
|
+
$font_text: Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Georgia, serif;
|
11
|
+
$font_decoration: "Century Gothic", CenturyGothic, Futura, sans-serif;
|
12
|
+
|
13
|
+
@import "zaunkoenig/customn-variables";
|
14
|
+
|
15
|
+
@import "zaunkoenig/normalize";
|
16
|
+
@import "zaunkoenig/skeleton";
|
17
|
+
@import "zaunkoenig/base";
|
18
|
+
@import "zaunkoenig/header";
|
19
|
+
@import "zaunkoenig/image";
|
20
|
+
|
21
|
+
@import "zaunkoenig/customn-styles";
|
@@ -1,11 +0,0 @@
|
|
1
|
-
$color_primary: #FF4B3E;
|
2
|
-
$color_primary_hover: #972D07;
|
3
|
-
$color_font: #222;
|
4
|
-
$color_font_dark: #000;
|
5
|
-
$color_font_inverse: #cccccc;
|
6
|
-
$color_font_inverse_light: #ffffff;
|
7
|
-
$color_background: #ffffff;
|
8
|
-
$color_background_inverse: #972D07;
|
9
|
-
$color_border: #efefef;
|
10
|
-
$font_text: Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Georgia, serif;
|
11
|
-
$font_decoration: "Century Gothic", CenturyGothic, Futura, sans-serif;
|
data/assets/css/style.scss
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: zaunkoenig
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jens Rusitschka
|
@@ -47,15 +47,15 @@ files:
|
|
47
47
|
- _layouts/home.html
|
48
48
|
- _layouts/page.html
|
49
49
|
- _layouts/post.html
|
50
|
-
- _sass/zaunkoenig.scss
|
51
50
|
- _sass/zaunkoenig/base.scss
|
52
51
|
- _sass/zaunkoenig/customn-styles.scss
|
52
|
+
- _sass/zaunkoenig/customn-variables.scss
|
53
53
|
- _sass/zaunkoenig/header.scss
|
54
54
|
- _sass/zaunkoenig/image.scss
|
55
|
+
- _sass/zaunkoenig/initialize.scss
|
55
56
|
- _sass/zaunkoenig/normalize.scss
|
56
57
|
- _sass/zaunkoenig/skeleton.scss
|
57
58
|
- _sass/zaunkoenig/variables.scss
|
58
|
-
- _sass/zaunkoenig/variables_customn.scss
|
59
59
|
- assets/css/style.scss
|
60
60
|
- assets/css/syntax-highlighting.css
|
61
61
|
- assets/zaunkoenig.jpg
|
data/_sass/zaunkoenig.scss
DELETED
@@ -1,10 +0,0 @@
|
|
1
|
-
@import "zaunkoenig/variables";
|
2
|
-
@import "zaunkoenig/variables_customn";
|
3
|
-
|
4
|
-
@import "zaunkoenig/normalize";
|
5
|
-
@import "zaunkoenig/skeleton";
|
6
|
-
|
7
|
-
@import "zaunkoenig/base";
|
8
|
-
@import "zaunkoenig/header";
|
9
|
-
@import "zaunkoenig/image";
|
10
|
-
@import "zaunkoenig/customn-styles";
|