zaunkoenig 0.0.7 → 0.0.8

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: 2728a1c96877740069b38908046800a8ed59d533debdc0b9be0eacc6cb273eda
4
- data.tar.gz: 60cc413e6eea2823858073db0f3bc45e7b7bd48f88515b52c189f0e39350dfff
3
+ metadata.gz: decd9df9b508d1cc926256e9926df7609c2510fd4098436f05284c7724c8ca81
4
+ data.tar.gz: 47ff96fdd8a1f503599777246e2a8a3f9eaaa1d9d1f6d6569182341124b72659
5
5
  SHA512:
6
- metadata.gz: adb38755e5cc2f0d84f32668fd76e7cdeeadb9d9ae4d525a28bfd1ca3d4f3fa52cd81831826a7b1e13cc960e94d09a61f66e45d530889519f5d74213d2e9e5ef
7
- data.tar.gz: 3d1505dd20dd9b528950b3a93b0b6ca613b1fc59002072e5960f581b12dfffae5c9e0685cec8847aa8c924d8340e1c89ad87ae3738616d30c6a36596404ea1d1
6
+ metadata.gz: 9da95020ff57f7ac3ed23835a4976d2f13d9923e06e4af7cf5352c1cd60544be37844fef44f154b0bf3f8244126df7e412c7f03b1eea4719c10652d7876e4b45
7
+ data.tar.gz: a1ff1956321734508d9339caff602214650c5d68c5212ae1a4bb21631932919220578ecf037e978167610178de025a8359eafc18f771162c4cb7766e55881afc
data/README.md CHANGED
@@ -1,11 +1,69 @@
1
- # zaunkoenig
1
+ # Zaunkönig
2
2
 
3
- Welcome to your new Jekyll theme! In this directory, you'll find the files you need to be able to package up your theme into a gem. Put your layouts in `_layouts`, your includes in `_includes`, your sass files in `_sass` and any other assets in `assets`.
3
+ Zaunkönig is a lightweight and elegant theme for Jekyll.
4
+
5
+ ![](/assets/zaunkoenig.jpg)
6
+
7
+ *Picture taken by [l.schmiegel](https://commons.wikimedia.org/wiki/File:Zaunk%C3%B6nig_IMG_0149.JPG)*
4
8
 
5
- To experiment with this code, add some sample content and run `bundle exec jekyll serve` – this directory is setup just like a Jekyll site!
9
+ ## Features
10
+
11
+ ### Customn Logo
6
12
 
7
- TODO: Delete this and the text above, and describe your gem
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
 
@@ -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;
@@ -1,4 +1,4 @@
1
1
  ---
2
2
  # front matter
3
3
  ---
4
- @import "zaunkoenig";
4
+ @import "zaunkoenig/initialize";
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.7
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
@@ -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";