zaunkoenig 0.0.6 → 0.0.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ece5972d446c35b9dd3323db50be18360b7f18fe742566ad87ca96a402527679
4
- data.tar.gz: 077eb40ba39705742208ed9c83ccd66abd2a9bfbc193901a55a0f8a53a3f6f09
3
+ metadata.gz: 2728a1c96877740069b38908046800a8ed59d533debdc0b9be0eacc6cb273eda
4
+ data.tar.gz: 60cc413e6eea2823858073db0f3bc45e7b7bd48f88515b52c189f0e39350dfff
5
5
  SHA512:
6
- metadata.gz: fff4892caeebe6282356a69d6691808fad5c1e5d4085c1138b55e0457b6c5c3d355c25df8727f239addd09320bd2fd232a6f85d6e22a4a17c1a355382478477d
7
- data.tar.gz: 292a756089456bddb8b6844bb1b2a57c583609908eabc9dbb018338210c0f3569c58b5d0d4d2aa90a6b4a0d7b6d1435273b210f9746b0bc264ba67b60ee301d2
6
+ metadata.gz: adb38755e5cc2f0d84f32668fd76e7cdeeadb9d9ae4d525a28bfd1ca3d4f3fa52cd81831826a7b1e13cc960e94d09a61f66e45d530889519f5d74213d2e9e5ef
7
+ data.tar.gz: 3d1505dd20dd9b528950b3a93b0b6ca613b1fc59002072e5960f581b12dfffae5c9e0685cec8847aa8c924d8340e1c89ad87ae3738616d30c6a36596404ea1d1
data/README.md CHANGED
@@ -29,13 +29,64 @@ Or install it yourself as:
29
29
 
30
30
  $ gem install zaunkoenig
31
31
 
32
- ## Usage
33
32
 
34
- TODO: Write usage instructions here. Describe your available layouts, includes, sass and/or assets.
33
+ Zaunkönig is a lightweight and elegant theme for Jekyll.
34
+
35
+ ![](/assets/zaunkoenig.jpg)
36
+
37
+ ## Features
38
+
39
+ ### Customn Logo
40
+
41
+ You can overwrite footer and header logo.
42
+
43
+ Create `includes/footer_logo.html` or `includes/header_logo.html` to roll your own.
44
+
45
+ ### Change fonts an colours
46
+
47
+ You can change the look and feel of the theme by overriding the variables in `variables.scss`.
48
+
49
+ You can change fonts and colors.
50
+
51
+ ```scss
52
+ $color_primary: #FF4B3E;
53
+ $color_primary_hover: #972D07;
54
+ $color_font: #222;
55
+ $color_font_dark: #000;
56
+ $color_font_inverse: #cccccc;
57
+ $color_font_inverse_light: #ffffff;
58
+ $color_background: #ffffff;
59
+ $color_background_inverse: #972D07;
60
+ $color_border: #efefef;
61
+ $font_text: Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Georgia, serif;
62
+ $font_decoration: "Century Gothic", CenturyGothic, Futura, sans-serif;
63
+ ```
64
+
65
+ ### Add navigation items
66
+
67
+ You can customize the navigation items in header and footer by adding your own navigation.yml to `data/navigation.yml`.
68
+
69
+ ```yml
70
+ main:
71
+ items:
72
+ - title: Start
73
+ url: /
74
+
75
+ - title: Blog
76
+ url: /blog/
77
+
78
+ footer:
79
+ items:
80
+ - title: Zaunkönig
81
+ url: /
82
+
83
+ - title: Birdsnest
84
+ url: /
85
+ ```
86
+
87
+ ### Syntax highlighting
35
88
 
36
- ## Contributing
37
89
 
38
- Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/hello. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
39
90
 
40
91
  ## Development
41
92
 
@@ -1 +1,5 @@
1
1
  <link rel="stylesheet" href="{{ "/assets/css/style.css" | relative_url }}">
2
+
3
+ {%- if page.syntax_highlighting -%}
4
+ <link rel="stylesheet" href="{{ "/assets/css/syntax-highlighting.css" | relative_url }}">
5
+ {%- endif -%}
@@ -1,7 +1,10 @@
1
+ @import "zaunkoenig/variables";
2
+ @import "zaunkoenig/variables_customn";
3
+
1
4
  @import "zaunkoenig/normalize";
2
5
  @import "zaunkoenig/skeleton";
3
6
 
4
7
  @import "zaunkoenig/base";
5
8
  @import "zaunkoenig/header";
6
9
  @import "zaunkoenig/image";
7
- @import "zaunkoenig/customn_styles";
10
+ @import "zaunkoenig/customn-styles";
@@ -1,16 +1,3 @@
1
- $color_primary: #F50202;
2
- $color_primary_hover: #F50202;
3
- $color_font: #444444;
4
- $color_font_dark: #222222;
5
- $color_font_inverse: #cccccc;
6
- $color_font_inverse_light: #ffffff;
7
- $color_background: #ffffff;
8
- $color_background_inverse: #000000;
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
-
14
1
  @mixin hyphens(){
15
2
  word-wrap: break-word;
16
3
  overflow-wrap: break-word;
@@ -60,16 +47,13 @@ h1, h2, h3 {
60
47
  .container {
61
48
  max-width: 960px;
62
49
 
63
- &.start {
64
- margin-top: 2em;
65
- }
50
+ &.start {
51
+ margin-top: 2em;
52
+ }
66
53
 
67
- img, picture {
68
- max-width: 100%;
69
- }
54
+ img, picture {
55
+ max-width: 100%;
70
56
  }
71
- svg.logo-icon {
72
- fill:$color_primary;
73
57
  }
74
58
 
75
59
  a {
@@ -0,0 +1,11 @@
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;
@@ -0,0 +1,62 @@
1
+ .highlight .il { color: #009999 } /* Literal.Number.Integer.Long */
2
+ .highlight .hll { background-color: #ffffcc }
3
+ .highlight .c { color: #999988; font-style: italic } /* Comment */
4
+ .highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */
5
+ .highlight .k { color: #000000; font-weight: bold } /* Keyword */
6
+ .highlight .o { color: #000000; font-weight: bold } /* Operator */
7
+ .highlight .cm { color: #999988; font-style: italic } /* Comment.Multiline */
8
+ .highlight .cp { color: #999999; font-weight: bold; font-style: italic } /* Comment.Preproc */
9
+ .highlight .c1 { color: #999988; font-style: italic } /* Comment.Single */
10
+ .highlight .cs { color: #999999; font-weight: bold; font-style: italic } /* Comment.Special */
11
+ .highlight .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */
12
+ .highlight .ge { color: #000000; font-style: italic } /* Generic.Emph */
13
+ .highlight .gr { color: #aa0000 } /* Generic.Error */
14
+ .highlight .gh { color: #999999 } /* Generic.Heading */
15
+ .highlight .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */
16
+ .highlight .go { color: #888888 } /* Generic.Output */
17
+ .highlight .gp { color: #555555 } /* Generic.Prompt */
18
+ .highlight .gs { font-weight: bold } /* Generic.Strong */
19
+ .highlight .gu { color: #aaaaaa } /* Generic.Subheading */
20
+ .highlight .gt { color: #aa0000 } /* Generic.Traceback */
21
+ .highlight .kc { color: #000000; font-weight: bold } /* Keyword.Constant */
22
+ .highlight .kd { color: #000000; font-weight: bold } /* Keyword.Declaration */
23
+ .highlight .kn { color: #000000; font-weight: bold } /* Keyword.Namespace */
24
+ .highlight .kp { color: #000000; font-weight: bold } /* Keyword.Pseudo */
25
+ .highlight .kr { color: #000000; font-weight: bold } /* Keyword.Reserved */
26
+ .highlight .kt { color: #445588; font-weight: bold } /* Keyword.Type */
27
+ .highlight .m { color: #009999 } /* Literal.Number */
28
+ .highlight .s { color: #d01040 } /* Literal.String */
29
+ .highlight .na { color: #008080 } /* Name.Attribute */
30
+ .highlight .nb { color: #0086B3 } /* Name.Builtin */
31
+ .highlight .nc { color: #445588; font-weight: bold } /* Name.Class */
32
+ .highlight .no { color: #008080 } /* Name.Constant */
33
+ .highlight .nd { color: #3c5d5d; font-weight: bold } /* Name.Decorator */
34
+ .highlight .ni { color: #800080 } /* Name.Entity */
35
+ .highlight .ne { color: #990000; font-weight: bold } /* Name.Exception */
36
+ .highlight .nf { color: #990000; font-weight: bold } /* Name.Function */
37
+ .highlight .nl { color: #990000; font-weight: bold } /* Name.Label */
38
+ .highlight .nn { color: #555555 } /* Name.Namespace */
39
+ .highlight .nt { color: #000080 } /* Name.Tag */
40
+ .highlight .nv { color: #008080 } /* Name.Variable */
41
+ .highlight .ow { color: #000000; font-weight: bold } /* Operator.Word */
42
+ .highlight .w { color: #bbbbbb } /* Text.Whitespace */
43
+ .highlight .mf { color: #009999 } /* Literal.Number.Float */
44
+ .highlight .mh { color: #009999 } /* Literal.Number.Hex */
45
+ .highlight .mi { color: #009999 } /* Literal.Number.Integer */
46
+ .highlight .mo { color: #009999 } /* Literal.Number.Oct */
47
+ .highlight .sb { color: #d01040 } /* Literal.String.Backtick */
48
+ .highlight .sc { color: #d01040 } /* Literal.String.Char */
49
+ .highlight .sd { color: #d01040 } /* Literal.String.Doc */
50
+ .highlight .s2 { color: #d01040 } /* Literal.String.Double */
51
+ .highlight .se { color: #d01040 } /* Literal.String.Escape */
52
+ .highlight .sh { color: #d01040 } /* Literal.String.Heredoc */
53
+ .highlight .si { color: #d01040 } /* Literal.String.Interpol */
54
+ .highlight .sx { color: #d01040 } /* Literal.String.Other */
55
+ .highlight .sr { color: #009926 } /* Literal.String.Regex */
56
+ .highlight .s1 { color: #d01040 } /* Literal.String.Single */
57
+ .highlight .ss { color: #990073 } /* Literal.String.Symbol */
58
+ .highlight .bp { color: #999999 } /* Name.Builtin.Pseudo */
59
+ .highlight .vc { color: #008080 } /* Name.Variable.Class */
60
+ .highlight .vg { color: #008080 } /* Name.Variable.Global */
61
+ .highlight .vi { color: #008080 } /* Name.Variable.Instance */
62
+ .highlight .il { color: #009999 } /* Literal.Number.Integer.Long */
Binary file
metadata CHANGED
@@ -1,14 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: zaunkoenig
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.6
4
+ version: 0.0.7
5
5
  platform: ruby
6
6
  authors:
7
+ - Jens Rusitschka
7
8
  - Robert Curth
8
9
  autorequire:
9
10
  bindir: bin
10
11
  cert_chain: []
11
- date: 2020-11-19 00:00:00.000000000 Z
12
+ date: 2020-11-20 00:00:00.000000000 Z
12
13
  dependencies:
13
14
  - !ruby/object:Gem::Dependency
14
15
  name: jekyll
@@ -26,7 +27,7 @@ dependencies:
26
27
  version: '4.1'
27
28
  description:
28
29
  email:
29
- - robert@rocu.de
30
+ - robert.curth@techgenossen.de
30
31
  executables: []
31
32
  extensions: []
32
33
  extra_rdoc_files: []
@@ -48,12 +49,16 @@ files:
48
49
  - _layouts/post.html
49
50
  - _sass/zaunkoenig.scss
50
51
  - _sass/zaunkoenig/base.scss
51
- - _sass/zaunkoenig/customn_styles.scss
52
+ - _sass/zaunkoenig/customn-styles.scss
52
53
  - _sass/zaunkoenig/header.scss
53
54
  - _sass/zaunkoenig/image.scss
54
55
  - _sass/zaunkoenig/normalize.scss
55
56
  - _sass/zaunkoenig/skeleton.scss
57
+ - _sass/zaunkoenig/variables.scss
58
+ - _sass/zaunkoenig/variables_customn.scss
56
59
  - assets/css/style.scss
60
+ - assets/css/syntax-highlighting.css
61
+ - assets/zaunkoenig.jpg
57
62
  homepage: https://zaunkoenig.techgenossen.de
58
63
  licenses:
59
64
  - MIT