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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7c355f574dbc12287b5c2b0ea64f62482d7ffadf
4
- data.tar.gz: f61df5ea09fc7bd1513ff597b322c93359820cf7
3
+ metadata.gz: e3605e979d24acc98e6077916b0d358b27668a14
4
+ data.tar.gz: 575ee494e6a0bb4eb9e71f3309c5995a0a26afcb
5
5
  SHA512:
6
- metadata.gz: 1db247051b38e638f94c80e17de4abb1ad2d99c61ac214f05b9625b77a04a27183b0859d26f0597ff9f78c4108eb0f6cc61699511872d369b011c00044e74a17
7
- data.tar.gz: cba1519d37eaeba1f1850c972404f538ffae72aa4822f84d1c42cac88f543881352f32510b351cdf46b8d13b519524e4d97efcfb7a20ef3b0f1d6350fb75b6c2
6
+ metadata.gz: 5826fcf6329501e014deff80b63fa7c8aeea1d816b4eb1c67381e2b6ef0d77050d09870d746a0f4a45b7478e23c02810929109e98416894614673d185e4f9428
7
+ data.tar.gz: 42018c27f18099cf0d8f2ed8a1f63ef94557a86b5889c83a903be0f9294da2eb95d5fac37616a3d756039e3ae7c02ed3550447adfbac32f697a4465b10a89dec
@@ -5,7 +5,7 @@
5
5
  <body>
6
6
  {% include _main-header.html %}
7
7
 
8
- <main class="main-content">{{ content }}</main>
8
+ <main class="main-wrapper">{{ content }}</main>
9
9
 
10
10
  {% include _main-footer.html %}
11
11
  </body>
data/_layouts/error.html CHANGED
@@ -3,6 +3,6 @@
3
3
  {% include _head.html %}
4
4
 
5
5
  <body>
6
- <main class="error-content">{{ content }}</main>
6
+ <main class="error-wrapper">{{ content }}</main>
7
7
  </body>
8
8
  </html>
data/_layouts/log.html CHANGED
@@ -4,4 +4,4 @@ layout: default
4
4
 
5
5
  <h2 class="title">{{ page.title }}</h2>
6
6
 
7
- <section class="log-content">{{ content }}</section>
7
+ <section class="log-wrapper">{{ content }}</section>
data/_layouts/page.html CHANGED
@@ -4,4 +4,4 @@ layout: default
4
4
 
5
5
  <h2 class="title">{{ page.title }}</h2>
6
6
 
7
- <section class="page-content">{{ content }}</section>
7
+ <section class="page-wrapper">{{ content }}</section>
@@ -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,4 @@
1
+ .post-header {
2
+
3
+ > .title { margin-bottom: 5px; }
4
+ }
@@ -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
+ }
@@ -11,6 +11,8 @@ a {
11
11
  &:hover { opacity: .7; }
12
12
  }
13
13
 
14
+ p { font-size: 22px; }
15
+
14
16
  strong,
15
17
  em {
16
18
  color: $c_red;
@@ -1,4 +1,4 @@
1
- .error-content {
1
+ .error-wrapper {
2
2
  @extend %content-wrapper;
3
3
 
4
4
  margin-top: 25%;
@@ -0,0 +1,12 @@
1
+ .highlight {
2
+ margin-bottom: 10px;
3
+ padding: 10px 20px;
4
+ font-family: $f_primary;
5
+ font-weight: $f_weight-regular;
6
+ }
7
+
8
+ code[class^='language-'] {
9
+ padding: 0;
10
+ font-size: 16px;
11
+ background-color: inherit;
12
+ }
@@ -1,4 +1,4 @@
1
- .log-content {
1
+ .log-wrapper {
2
2
  font-family: $f_primary;
3
3
 
4
4
  a { text-decoration: underline; }
@@ -1,12 +1,10 @@
1
- .main-content {
1
+ .main-wrapper {
2
2
  @extend %section-commom;
3
3
  @extend %content-wrapper;
4
4
 
5
5
  margin-top: 40px;
6
6
  font-family: $f_secondary;
7
7
 
8
- > p { font-size: 22px; }
9
-
10
8
  ol,
11
9
  ul,
12
10
  li {
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 'components/error-template';
13
- @import 'components/log-template';
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.6
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
- - _sass/components/_error-template.scss
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