jekyll-theme-nettoyer 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 +4 -4
- data/_layouts/default.html +1 -1
- data/_layouts/error.html +1 -1
- data/_layouts/log.html +1 -1
- data/_layouts/page.html +1 -1
- data/_layouts/post.html +21 -0
- data/_sass/components/_post-header.scss +4 -0
- data/_sass/components/_post-meta.scss +18 -0
- data/_sass/core/_base.scss +2 -0
- data/_sass/{components → layout}/_error-template.scss +1 -1
- data/_sass/layout/_highlight.scss +12 -0
- data/_sass/{components → layout}/_log-template.scss +1 -1
- data/_sass/{components/_main-content.scss → layout/_main-template.scss} +1 -3
- data/_sass/nettoyer.scss +8 -3
- data/_sass/vendor/_syntax.scss +72 -0
- metadata +9 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e3605e979d24acc98e6077916b0d358b27668a14
|
4
|
+
data.tar.gz: 575ee494e6a0bb4eb9e71f3309c5995a0a26afcb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5826fcf6329501e014deff80b63fa7c8aeea1d816b4eb1c67381e2b6ef0d77050d09870d746a0f4a45b7478e23c02810929109e98416894614673d185e4f9428
|
7
|
+
data.tar.gz: 42018c27f18099cf0d8f2ed8a1f63ef94557a86b5889c83a903be0f9294da2eb95d5fac37616a3d756039e3ae7c02ed3550447adfbac32f697a4465b10a89dec
|
data/_layouts/default.html
CHANGED
data/_layouts/error.html
CHANGED
data/_layouts/log.html
CHANGED
data/_layouts/page.html
CHANGED
data/_layouts/post.html
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
---
|
2
|
+
layout: default
|
3
|
+
---
|
4
|
+
|
5
|
+
<article class="post-wrapper">
|
6
|
+
<header class="post-header">
|
7
|
+
<h2 class="title">{{ page.title }}</h2>
|
8
|
+
|
9
|
+
<ul class="post-meta">
|
10
|
+
<li class="info -date">{{ page.date | date_to_string }}</li>
|
11
|
+
|
12
|
+
{% for category in page.categories %}
|
13
|
+
<li class="info -category">
|
14
|
+
<a class="link" href="{{ site.url }}/category/{{ category }}">{{ category }}</a>
|
15
|
+
</li>
|
16
|
+
{% endfor %}
|
17
|
+
</ul>
|
18
|
+
</header>
|
19
|
+
|
20
|
+
<body class="article">{{ content }}</body>
|
21
|
+
</article>
|
@@ -0,0 +1,18 @@
|
|
1
|
+
.post-meta {
|
2
|
+
margin-bottom: 35px;
|
3
|
+
font-family: $f_primary;
|
4
|
+
|
5
|
+
> .info {
|
6
|
+
display: inline-block;
|
7
|
+
color: $c_gray;
|
8
|
+
font-size: 14px;
|
9
|
+
list-style-type: none;
|
10
|
+
}
|
11
|
+
|
12
|
+
.-category > .link {
|
13
|
+
padding: 2px 5px;
|
14
|
+
color: $c_darkgray;
|
15
|
+
border-radius: 2px;
|
16
|
+
background-color: $c_smoke-gray;
|
17
|
+
}
|
18
|
+
}
|
data/_sass/core/_base.scss
CHANGED
data/_sass/nettoyer.scss
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
@import 'vendor/syntax';
|
2
|
+
|
1
3
|
@import 'core/color-palette';
|
2
4
|
@import 'core/typography';
|
3
5
|
@import 'core/generic';
|
@@ -6,8 +8,11 @@
|
|
6
8
|
|
7
9
|
@import 'components/main-header';
|
8
10
|
@import 'components/main-nav';
|
9
|
-
@import 'components/main-content';
|
10
11
|
@import 'components/main-footer';
|
12
|
+
@import 'components/post-header';
|
13
|
+
@import 'components/post-meta';
|
11
14
|
|
12
|
-
@import '
|
13
|
-
@import '
|
15
|
+
@import 'layout/main-template';
|
16
|
+
@import 'layout/error-template';
|
17
|
+
@import 'layout/log-template';
|
18
|
+
@import 'layout/highlight';
|
@@ -0,0 +1,72 @@
|
|
1
|
+
/*
|
2
|
+
me: Base16 Tomorrow Dark
|
3
|
+
Author: Chris Kempson (http://chriskempson.com)
|
4
|
+
|
5
|
+
Pygments template by Jan T. Sott (https://github.com/idleberg)
|
6
|
+
Created with Base16 Builder by Chris Kempson (https://github.com/chriskempson/base16-builder)
|
7
|
+
*/
|
8
|
+
.highlight { background: #1d1f21; color: #ffffff }
|
9
|
+
.highlight .hll { background-color: #373b41 }
|
10
|
+
.highlight .c { color: #969896 } /* Comment */
|
11
|
+
.highlight .err { color: #cc6666 } /* Error */
|
12
|
+
.highlight .k { color: #b294bb } /* Keyword */
|
13
|
+
.highlight .l { color: #de935f } /* Literal */
|
14
|
+
.highlight .n { color: #ffffff } /* Name */
|
15
|
+
.highlight .o { color: #8abeb7 } /* Operator */
|
16
|
+
.highlight .p { color: #ffffff } /* Punctuation */
|
17
|
+
.highlight .cm { color: #969896 } /* Comment.Multiline */
|
18
|
+
.highlight .cp { color: #969896 } /* Comment.Preproc */
|
19
|
+
.highlight .c1 { color: #969896 } /* Comment.Single */
|
20
|
+
.highlight .cs { color: #969896 } /* Comment.Special */
|
21
|
+
.highlight .gd { color: #cc6666 } /* Generic.Deleted */
|
22
|
+
.highlight .ge { font-style: italic } /* Generic.Emph */
|
23
|
+
.highlight .gh { color: #ffffff; font-weight: bold } /* Generic.Heading */
|
24
|
+
.highlight .gi { color: #b5bd68 } /* Generic.Inserted */
|
25
|
+
.highlight .gp { color: #969896; font-weight: bold } /* Generic.Prompt */
|
26
|
+
.highlight .gs { font-weight: bold } /* Generic.Strong */
|
27
|
+
.highlight .gu { color: #8abeb7; font-weight: bold } /* Generic.Subheading */
|
28
|
+
.highlight .kc { color: #b294bb } /* Keyword.Constant */
|
29
|
+
.highlight .kd { color: #b294bb } /* Keyword.Declaration */
|
30
|
+
.highlight .kn { color: #8abeb7 } /* Keyword.Namespace */
|
31
|
+
.highlight .kp { color: #b294bb } /* Keyword.Pseudo */
|
32
|
+
.highlight .kr { color: #b294bb } /* Keyword.Reserved */
|
33
|
+
.highlight .kt { color: #f0c674 } /* Keyword.Type */
|
34
|
+
.highlight .ld { color: #b5bd68 } /* Literal.Date */
|
35
|
+
.highlight .m { color: #de935f } /* Literal.Number */
|
36
|
+
.highlight .s { color: #b5bd68 } /* Literal.String */
|
37
|
+
.highlight .na { color: #81a2be } /* Name.Attribute */
|
38
|
+
.highlight .nb { color: #ffffff } /* Name.Builtin */
|
39
|
+
.highlight .nc { color: #f0c674 } /* Name.Class */
|
40
|
+
.highlight .no { color: #cc6666 } /* Name.Constant */
|
41
|
+
.highlight .nd { color: #8abeb7 } /* Name.Decorator */
|
42
|
+
.highlight .ni { color: #ffffff } /* Name.Entity */
|
43
|
+
.highlight .ne { color: #cc6666 } /* Name.Exception */
|
44
|
+
.highlight .nf { color: #81a2be } /* Name.Function */
|
45
|
+
.highlight .nl { color: #ffffff } /* Name.Label */
|
46
|
+
.highlight .nn { color: #f0c674 } /* Name.Namespace */
|
47
|
+
.highlight .nx { color: #81a2be } /* Name.Other */
|
48
|
+
.highlight .py { color: #ffffff } /* Name.Property */
|
49
|
+
.highlight .nt { color: #8abeb7 } /* Name.Tag */
|
50
|
+
.highlight .nv { color: #cc6666 } /* Name.Variable */
|
51
|
+
.highlight .ow { color: #8abeb7 } /* Operator.Word */
|
52
|
+
.highlight .w { color: #ffffff } /* Text.Whitespace */
|
53
|
+
.highlight .mf { color: #de935f } /* Literal.Number.Float */
|
54
|
+
.highlight .mh { color: #de935f } /* Literal.Number.Hex */
|
55
|
+
.highlight .mi { color: #de935f } /* Literal.Number.Integer */
|
56
|
+
.highlight .mo { color: #de935f } /* Literal.Number.Oct */
|
57
|
+
.highlight .sb { color: #b5bd68 } /* Literal.String.Backtick */
|
58
|
+
.highlight .sc { color: #ffffff } /* Literal.String.Char */
|
59
|
+
.highlight .sd { color: #969896 } /* Literal.String.Doc */
|
60
|
+
.highlight .s2 { color: #b5bd68 } /* Literal.String.Double */
|
61
|
+
.highlight .se { color: #de935f } /* Literal.String.Escape */
|
62
|
+
.highlight .sh { color: #b5bd68 } /* Literal.String.Heredoc */
|
63
|
+
.highlight .si { color: #de935f } /* Literal.String.Interpol */
|
64
|
+
.highlight .sx { color: #b5bd68 } /* Literal.String.Other */
|
65
|
+
.highlight .sr { color: #b5bd68 } /* Literal.String.Regex */
|
66
|
+
.highlight .s1 { color: #b5bd68 } /* Literal.String.Single */
|
67
|
+
.highlight .ss { color: #b5bd68 } /* Literal.String.Symbol */
|
68
|
+
.highlight .bp { color: #ffffff } /* Name.Builtin.Pseudo */
|
69
|
+
.highlight .vc { color: #cc6666 } /* Name.Variable.Class */
|
70
|
+
.highlight .vg { color: #cc6666 } /* Name.Variable.Global */
|
71
|
+
.highlight .vi { color: #cc6666 } /* Name.Variable.Instance */
|
72
|
+
.highlight .il { color: #de935f } /* Literal.Number.Integer.Long */
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-theme-nettoyer
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Luan Vicente
|
@@ -69,18 +69,23 @@ files:
|
|
69
69
|
- _layouts/error.html
|
70
70
|
- _layouts/log.html
|
71
71
|
- _layouts/page.html
|
72
|
-
-
|
73
|
-
- _sass/components/_log-template.scss
|
74
|
-
- _sass/components/_main-content.scss
|
72
|
+
- _layouts/post.html
|
75
73
|
- _sass/components/_main-footer.scss
|
76
74
|
- _sass/components/_main-header.scss
|
77
75
|
- _sass/components/_main-nav.scss
|
76
|
+
- _sass/components/_post-header.scss
|
77
|
+
- _sass/components/_post-meta.scss
|
78
78
|
- _sass/core/_base.scss
|
79
79
|
- _sass/core/_color-palette.scss
|
80
80
|
- _sass/core/_generic.scss
|
81
81
|
- _sass/core/_objects.scss
|
82
82
|
- _sass/core/_typography.scss
|
83
|
+
- _sass/layout/_error-template.scss
|
84
|
+
- _sass/layout/_highlight.scss
|
85
|
+
- _sass/layout/_log-template.scss
|
86
|
+
- _sass/layout/_main-template.scss
|
83
87
|
- _sass/nettoyer.scss
|
88
|
+
- _sass/vendor/_syntax.scss
|
84
89
|
- assets/css/style.scss
|
85
90
|
- assets/favicon.ico
|
86
91
|
homepage: https://github.com/idlua/jekyll-theme-nettoyer
|