nokcode-theme 0.1.0

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 5af28b81047eebc07868cfbd40bfefa1d39ec09c9171d9ca1773adf33388e79c
4
+ data.tar.gz: cb64e6f725e6d7981cb1433c449c095ac057fc3ed9f1cb5133cff993aee92931
5
+ SHA512:
6
+ metadata.gz: 0e9f4e889e392ca3f73564c61be9df93caf3d81d3624b03e28a4d390150a3777ce6a834fda245fad11fcd51dd20a4a81eb9b7691dc95b09a8fc4ac25316b744a
7
+ data.tar.gz: 47b04d75929515d0009b44a417847e19db18a859a31ef94c2b5a8d5b6e15f93dedf459ebf3a4c96857b7277c87f07796d9e179e4cc32e8f2fa8656a68bb9cab6
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2020 Rafael Ribeiro
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,9 @@
1
+ # nokcode-theme
2
+
3
+ You can get it if you really want
4
+
5
+ You can get it if you really want
6
+
7
+ You can get it if you really want
8
+
9
+ But you must try, try and try, try and try
@@ -0,0 +1,30 @@
1
+ <footer>
2
+ <div class="wrapper">
3
+ <hr />
4
+ <p>
5
+ {%- if site.feed -%}
6
+ <a href="{{ 'feed.xml' | relative_url }}"><img src="{{ "/assets/rss.svg" | relative_url }}" width="32" alt="RSS Feed" /></a>&nbsp;
7
+ {%- endif -%}
8
+ {%- if site.github_username -%}
9
+ <a href="https://github.com/{{ site.github_username }}/"><img src="{{ "/assets/github.svg" | relative_url }}" width="32" alt="GitHub" /></a>&nbsp;
10
+ {%- endif -%}
11
+ {%- if site.twitter_username -%}
12
+ <a href="https://twitter.com/{{ site.twitter_username }}/"><img src="{{ "/assets/twitter.svg" | relative_url }}" width="32" alt="Twitter" /></a>&nbsp;
13
+ {%- endif -%}
14
+ {%- if site.spotify_username -%}
15
+ <a href="https://open.spotify.com/user/{{ site.spotify_username }}/"><img src="{{ "/assets/spotify.svg" | relative_url }}" width="32" alt="Spotify" /></a>&nbsp;
16
+ {%- endif -%}
17
+ {%- if site.linode_referral_code -%}
18
+ <a href="https://www.linode.com/?r={{ site.linode_referral_code }}"><img src="{{ "/assets/linode.svg" | relative_url }}" width="32" alt="Linode" /></a>&nbsp;
19
+ {%- endif -%}
20
+ </p>
21
+ <p>&copy; {{ site.author }}
22
+ &bullet; {{ "now" | date: "%Y" }}
23
+ &bullet; <a href="mailto:{{ site.email }}">{{ site.email }}</a></p>
24
+
25
+ <p>Brought to you by
26
+ <a href="https://pages.github.com/">GitHub Pages</a> powered by
27
+ <a href="https://jekyllrb.com/">Jekyll</a> with
28
+ <a href="https://github.com/nokcode/nokcode-theme/">nokcode-theme</a> and <a href="https://fontawesome.com/license">Font Awesome</a> icons.</p>
29
+ </div>
30
+ </footer>
@@ -0,0 +1,8 @@
1
+ <!-- Global site tag (gtag.js) - Google Analytics -->
2
+ <script async src="https://www.googletagmanager.com/gtag/js?id={{ site.google_analytics }}"></script>
3
+ <script>
4
+ window.dataLayer = window.dataLayer || [];
5
+ function gtag(){dataLayer.push(arguments);}
6
+ gtag('js', new Date());
7
+ gtag('config', '{{ site.google_analytics }}');
8
+ </script>
@@ -0,0 +1,13 @@
1
+ <head>
2
+ <meta charset="UTF-8" />
3
+ <meta http-equiv="X-UA-Compatible" content="IE=edge" />
4
+ <meta name="viewport" content="width=device-width, initial-scale=1" />
5
+ <title>{{ page.title }}</title>
6
+ {% feed_meta %}
7
+ <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lora|Open+Sans:300,800&display=swap" />
8
+ <link rel="stylesheet" href="{{ "/assets/reset.css" | relative_url }}" />
9
+ <link rel="stylesheet" href="{{ "/assets/nokcode.css" | relative_url }}" />
10
+ {%- if jekyll.environment == 'production' and site.google_analytics -%}
11
+ {%- include google-analytics.html -%}
12
+ {%- endif -%}
13
+ </head>
@@ -0,0 +1,17 @@
1
+ <header>
2
+ <div class="wrapper">
3
+ {%- assign default_paths = site.pages | map: "path" -%}
4
+ {%- assign page_paths = site.header_pages | default: default_paths -%}
5
+ <h1><a href="{{ "/" | relative_url }}">{{ site.title | escape }}</a></h1>
6
+ {%- if page_paths -%}
7
+ <nav>
8
+ {%- for path in page_paths -%}
9
+ {%- assign my_page = site.pages | where: "path", path | first -%}
10
+ {%- if my_page.title -%}
11
+ <a href="{{ my_page.url | relative_url }}">{{ my_page.title | escape }}</a>
12
+ {%- endif -%}
13
+ {%- endfor -%}
14
+ </nav>
15
+ {%- endif -%}
16
+ </div>
17
+ </header>
@@ -0,0 +1,9 @@
1
+ <header>
2
+ {%- if include.href -%}
3
+ <h2><a href="{{ include.href | relative_url }}">{{ page.title | escape }}</a></h2>
4
+ {%- else -%}
5
+ <h2>{{ page.title | escape }}</h2>
6
+ {%- endif -%}
7
+ <h3>{{ page.subtitle | escape }}</h3>
8
+ <p class="postmeta">Posted on {{ page.date | date: "%B %d, %Y" }}.</p>
9
+ </header>
@@ -0,0 +1,13 @@
1
+ <!DOCTYPE html>
2
+ <html lang="{{ page.lang | default: site.lang | default: "en" }}">
3
+ {% include head.html %}
4
+ <body class="{{ page.layout }}">
5
+ {%- include header.html -%}
6
+ <main aria-label="content">
7
+ <div class="wrapper">
8
+ {{ content }}
9
+ </div>
10
+ </main>
11
+ {%- include footer.html -%}
12
+ </body>
13
+ </html>
@@ -0,0 +1,15 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ {%- if site.posts.size > 0 -%}
6
+ {%- for page in site.posts -%}
7
+ <article>
8
+ {%- include post-header.html href=page.url -%}
9
+ {{ page.excerpt | truncatewords: 40, '...' }}
10
+ </article>
11
+ {%- if forloop.last != true -%}
12
+ <hr />
13
+ {%- endif -%}
14
+ {%- endfor -%}
15
+ {%- endif -%}
@@ -0,0 +1,5 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ {{ content }}
@@ -0,0 +1,7 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+ <article>
5
+ {% include post-header.html %}
6
+ {{ content }}
7
+ </article>
@@ -0,0 +1,33 @@
1
+ @charset 'utf-8';
2
+
3
+ $base03: #002b36;
4
+ $base02: #073642;
5
+ $base01: #586e75;
6
+ $base00: #657b83;
7
+ $base0: #839496;
8
+ $base1: #93a1a1;
9
+ $base2: #eee8d5;
10
+ $base3: #fdf6e3;
11
+ $yellow: #b58900;
12
+ $orange: #cb4b16;
13
+ $red: #dc322f;
14
+ $magenta: #d33682;
15
+ $violet: #6c71c4;
16
+ $blue: #268bd2;
17
+ $cyan: #2aa198;
18
+ $green: #859900;
19
+
20
+ $border: 0.1rem solid $base1;
21
+
22
+ $font-family: 'Lora', serif;
23
+ $font-family-2: 'Open Sans', sans-serif;
24
+
25
+ @import
26
+ "nokcode/global",
27
+ "nokcode/header",
28
+ "nokcode/main",
29
+ "nokcode/article",
30
+ "nokcode/footer",
31
+ "nokcode/sticky-footer",
32
+ "nokcode/syntax-highlight"
33
+ ;
@@ -0,0 +1,17 @@
1
+ article {
2
+ header {
3
+ h1 {
4
+ margin:3rem 0 0.5rem;
5
+ }
6
+
7
+ a:any-link {
8
+ color: $base03;
9
+ text-decoration: none;
10
+ }
11
+
12
+ a:hover {
13
+ color: $orange;
14
+ text-decoration: underline;
15
+ }
16
+ }
17
+ }
@@ -0,0 +1,32 @@
1
+ body > footer {
2
+ background: $base2;
3
+ border-top: $border;
4
+ color: $base03;
5
+ font-family: $font-family-2;
6
+ font-size: 1.6rem;
7
+ line-height: 2.4rem;
8
+ padding: 1rem 0;
9
+ text-align: center;
10
+
11
+ hr {
12
+ display:none;
13
+ }
14
+
15
+ img {
16
+ width:3.2rem;
17
+ height:3.2rem;
18
+ }
19
+
20
+ p:nth-child(2) a {
21
+ margin-right:1.6rem;
22
+ }
23
+
24
+ a:any-link {
25
+ text-decoration:none;
26
+ }
27
+
28
+ p:last-child {
29
+ font-size:1.3rem;
30
+ font-style:italic;
31
+ }
32
+ }
@@ -0,0 +1,68 @@
1
+ html {
2
+ background: $base3;
3
+ color: $base02;
4
+ font-size:62.5%;
5
+ }
6
+
7
+ body {
8
+ font-family: $font-family;
9
+ font-size: 1.8rem;
10
+ margin:0 auto;
11
+ }
12
+
13
+ a:any-link {
14
+ color: $blue;
15
+ text-decoration: underline;
16
+ }
17
+
18
+ div.wrapper {
19
+ margin:0 auto;
20
+ width:80rem;
21
+ min-width:80rem;
22
+ }
23
+
24
+ h1, h2, h3, h4, h5, h6 {
25
+ font-family: $font-family-2;
26
+ font-weight: bolder;
27
+ }
28
+
29
+ h1 {
30
+ font-size: 2.4rem;
31
+ }
32
+
33
+ h2 {
34
+ font-size: 3.6rem;
35
+ margin:1rem 0;
36
+ }
37
+
38
+ h3 {
39
+ font-size: 2.4rem;
40
+ font-weight: normal;
41
+ margin:1rem 0;
42
+ }
43
+
44
+ hr {
45
+ border:0;
46
+ border-bottom:$border;
47
+ margin:3rem 0;
48
+ }
49
+
50
+ p {
51
+ line-height: 2.4rem;
52
+ margin:1rem 0;
53
+
54
+ &.postmeta {
55
+ color: $base01;
56
+ font-style: italic;
57
+ }
58
+ }
59
+
60
+ em {
61
+ font-style: italic;
62
+ color: $base03;
63
+ }
64
+
65
+ strong {
66
+ font-weight: bold;
67
+ color: $base03;
68
+ }
@@ -0,0 +1,39 @@
1
+ body > header {
2
+ background: $base2;
3
+ border-bottom: $border;
4
+ color: $base3;
5
+
6
+ & h1 {
7
+ display:inline-block;
8
+ padding: 1.5rem 0;
9
+
10
+ a:any-link {
11
+ color: $red;
12
+ text-decoration:none;
13
+ }
14
+ }
15
+
16
+ & nav {
17
+ float:right;
18
+
19
+ a:any-link {
20
+ border-left:$border;
21
+ color:$orange;
22
+ display:inline-block;
23
+ font-size: 1.6rem;
24
+ min-width:11.5rem;
25
+ padding:1.95rem 0;
26
+ text-align:center;
27
+ text-decoration:none;
28
+ }
29
+
30
+ a:any-link:last-child {
31
+ border-right:$border;
32
+ }
33
+
34
+ a:hover {
35
+ background-color: $orange;
36
+ color: $base2 !important;
37
+ }
38
+ }
39
+ }
@@ -0,0 +1,13 @@
1
+ main > .wrapper {
2
+ margin:3rem auto;
3
+ }
4
+
5
+ main {
6
+ h1 {
7
+ margin:3rem 0 1rem;
8
+ }
9
+
10
+ p {
11
+ text-align:justify;
12
+ }
13
+ }
@@ -0,0 +1,25 @@
1
+ $header-height: 5.6rem;
2
+ $footer-height: 14.65rem;
3
+
4
+ html, body {
5
+ height: 100%;
6
+ }
7
+
8
+ main {
9
+ min-height: 100%;
10
+ margin-top: -$header-height;
11
+ margin-bottom: -$footer-height;
12
+
13
+ &:before, &:after {
14
+ content: '';
15
+ display: block;
16
+ }
17
+
18
+ &:before {
19
+ height: $header-height;
20
+ }
21
+
22
+ &:after {
23
+ height: $footer-height;
24
+ }
25
+ }
@@ -0,0 +1,76 @@
1
+ .highlight {
2
+ background-color: $base03;
3
+ color: $base1;
4
+ font-size:1.6rem;
5
+ line-height:2rem;
6
+ padding:0.8rem 0.5rem;
7
+
8
+ .c { color: $base01 } /* Comment */
9
+ .err { color: $base1 } /* Error */
10
+ .g { color: $base1 } /* Generic */
11
+ .k { color: $green } /* Keyword */
12
+ .l { color: $base1 } /* Literal */
13
+ .n { color: $base1 } /* Name */
14
+ .o { color: $green } /* Operator */
15
+ .x { color: $orange } /* Other */
16
+ .p { color: $base1 } /* Punctuation */
17
+ .cm { color: $base01 } /* Comment.Multiline */
18
+ .cp { color: $green } /* Comment.Preproc */
19
+ .c1 { color: $base01 } /* Comment.Single */
20
+ .cs { color: $green } /* Comment.Special */
21
+ .gd { color: $cyan } /* Generic.Deleted */
22
+ .ge { color: $base1; font-style: italic } /* Generic.Emph */
23
+ .gr { color: $red } /* Generic.Error */
24
+ .gh { color: $orange } /* Generic.Heading */
25
+ .gi { color: $green } /* Generic.Inserted */
26
+ .go { color: $base1 } /* Generic.Output */
27
+ .gp { color: $base1 } /* Generic.Prompt */
28
+ .gs { color: $base1; font-weight: bold } /* Generic.Strong */
29
+ .gu { color: $orange } /* Generic.Subheading */
30
+ .gt { color: $base1 } /* Generic.Traceback */
31
+ .kc { color: $orange } /* Keyword.Constant */
32
+ .kd { color: $blue } /* Keyword.Declaration */
33
+ .kn { color: $green } /* Keyword.Namespace */
34
+ .kp { color: $green } /* Keyword.Pseudo */
35
+ .kr { color: $blue } /* Keyword.Reserved */
36
+ .kt { color: $red } /* Keyword.Type */
37
+ .ld { color: $base1 } /* Literal.Date */
38
+ .m { color: $cyan } /* Literal.Number */
39
+ .s { color: $cyan } /* Literal.String */
40
+ .na { color: $base1 } /* Name.Attribute */
41
+ .nb { color: $yellow } /* Name.Builtin */
42
+ .nc { color: $blue } /* Name.Class */
43
+ .no { color: $orange } /* Name.Constant */
44
+ .nd { color: $blue } /* Name.Decorator */
45
+ .ni { color: $orange } /* Name.Entity */
46
+ .ne { color: $orange } /* Name.Exception */
47
+ .nf { color: $blue } /* Name.Function */
48
+ .nl { color: $base1 } /* Name.Label */
49
+ .nn { color: $base1 } /* Name.Namespace */
50
+ .nx { color: $base1 } /* Name.Other */
51
+ .py { color: $base1 } /* Name.Property */
52
+ .nt { color: $blue } /* Name.Tag */
53
+ .nv { color: $blue } /* Name.Variable */
54
+ .ow { color: $green } /* Operator.Word */
55
+ .w { color: $base1 } /* Text.Whitespace */
56
+ .mf { color: $cyan } /* Literal.Number.Float */
57
+ .mh { color: $cyan } /* Literal.Number.Hex */
58
+ .mi { color: $cyan } /* Literal.Number.Integer */
59
+ .mo { color: $cyan } /* Literal.Number.Oct */
60
+ .sb { color: $base01 } /* Literal.String.Backtick */
61
+ .sc { color: $cyan } /* Literal.String.Char */
62
+ .sd { color: $base1 } /* Literal.String.Doc */
63
+ .s2 { color: $cyan } /* Literal.String.Double */
64
+ .se { color: $orange } /* Literal.String.Escape */
65
+ .sh { color: $base1 } /* Literal.String.Heredoc */
66
+ .si { color: $cyan } /* Literal.String.Interpol */
67
+ .sx { color: $cyan } /* Literal.String.Other */
68
+ .sr { color: $red } /* Literal.String.Regex */
69
+ .s1 { color: $cyan } /* Literal.String.Single */
70
+ .ss { color: $cyan } /* Literal.String.Symbol */
71
+ .bp { color: $blue } /* Name.Builtin.Pseudo */
72
+ .vc { color: $blue } /* Name.Variable.Class */
73
+ .vg { color: $blue } /* Name.Variable.Global */
74
+ .vi { color: $blue } /* Name.Variable.Instance */
75
+ .il { color: $cyan } /* Literal.Number.Integer.Long */
76
+ }
data/assets/github.svg ADDED
@@ -0,0 +1 @@
1
+ <svg aria-hidden="true" focusable="false" data-prefix="fab" data-icon="github" class="svg-inline--fa fa-github fa-w-16" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><path fill="currentColor" d="M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3zm44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z"></path></svg>
data/assets/linode.svg ADDED
@@ -0,0 +1 @@
1
+ <svg aria-hidden="true" focusable="false" data-prefix="fab" data-icon="linode" class="svg-inline--fa fa-linode fa-w-14" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M437.4 226.3c-.3-.9-.9-1.4-1.4-2l-70-38.6c-.9-.6-2-.6-3.1 0l-58.9 36c-.9.6-1.4 1.7-1.4 2.6l-.9 31.4-24-16c-.9-.6-2.3-.6-3.1 0L240 260.9l-1.4-35.1c0-.9-.6-2-1.4-2.3l-36-24.3 33.7-17.4c1.1-.6 1.7-1.7 1.7-2.9l-5.7-132.3c0-.9-.9-2-1.7-2.6L138.6.3c-.9-.3-1.7-.3-2.3-.3L12.6 38.6c-1.4.6-2.3 2-2 3.7L38 175.4c.9 3.4 34 27.4 38.6 30.9l-26.9 12.9c-1.4.9-2 2.3-1.7 3.4l20.6 100.3c.6 2.9 23.7 23.1 27.1 26.3l-17.4 10.6c-.9.6-1.7 2-1.4 3.1 1.4 7.1 15.4 77.7 16.9 79.1l65.1 69.1c.6.6 1.4.6 2.3.9.6 0 1.1-.3 1.7-.6l83.7-66.9c.9-.6 1.1-1.4 1.1-2.3l-2-46 28 23.7c1.1.9 2.9.9 4 0l66.9-53.4c.9-.6 1.1-1.4 1.1-2.3l2.3-33.4 20.3 14c1.1.9 2.6.9 3.7 0l54.6-43.7c.6-.3 1.1-1.1 1.1-2 .9-6.5 10.3-70.8 9.7-72.8zm-204.8 4.8l4 92.6-90.6 61.2-14-96.6 100.6-57.2zm-7.7-180l5.4 126-106.6 55.4L104 97.7l120.9-46.6zM44 173.1L18 48l79.7 49.4 19.4 132.9L44 173.1zm30.6 147.8L55.7 230l70 58.3 13.7 93.4-64.8-60.8zm24.3 117.7l-13.7-67.1 61.7 60.9 9.7 67.4-57.7-61.2zm64.5 64.5l-10.6-70.9 85.7-61.4 3.1 70-78.2 62.3zm82-115.1c0-3.4.9-22.9-2-25.1l-24.3-20 22.3-14.9c2.3-1.7 1.1-5.7 1.1-8l29.4 22.6.6 68.3-27.1-22.9zm94.3-25.4l-60.9 48.6-.6-68.6 65.7-46.9-4.2 66.9zm27.7-25.7l-19.1-13.4 2-34c.3-.9-.3-2-1.1-2.6L308 259.7l.6-30 64.6 40.6-5.8 66.6zm54.6-39.8l-48.3 38.3 5.7-65.1 51.1-36.6-8.5 63.4z"></path></svg>
@@ -0,0 +1,5 @@
1
+ ---
2
+ # Only the main Sass file needs front matter (the dashes are enough)
3
+ ---
4
+
5
+ @import "nokcode";
data/assets/reset.css ADDED
@@ -0,0 +1,48 @@
1
+ /* http://meyerweb.com/eric/tools/css/reset/
2
+ v2.0 | 20110126
3
+ License: none (public domain)
4
+ */
5
+
6
+ html, body, div, span, applet, object, iframe,
7
+ h1, h2, h3, h4, h5, h6, p, blockquote, pre,
8
+ a, abbr, acronym, address, big, cite, code,
9
+ del, dfn, em, img, ins, kbd, q, s, samp,
10
+ small, strike, strong, sub, sup, tt, var,
11
+ b, u, i, center,
12
+ dl, dt, dd, ol, ul, li,
13
+ fieldset, form, label, legend,
14
+ table, caption, tbody, tfoot, thead, tr, th, td,
15
+ article, aside, canvas, details, embed,
16
+ figure, figcaption, footer, header, hgroup,
17
+ menu, nav, output, ruby, section, summary,
18
+ time, mark, audio, video {
19
+ margin: 0;
20
+ padding: 0;
21
+ border: 0;
22
+ font-size: 100%;
23
+ font: inherit;
24
+ vertical-align: baseline;
25
+ }
26
+ /* HTML5 display-role reset for older browsers */
27
+ article, aside, details, figcaption, figure,
28
+ footer, header, hgroup, menu, nav, section {
29
+ display: block;
30
+ }
31
+ body {
32
+ line-height: 1;
33
+ }
34
+ ol, ul {
35
+ list-style: none;
36
+ }
37
+ blockquote, q {
38
+ quotes: none;
39
+ }
40
+ blockquote:before, blockquote:after,
41
+ q:before, q:after {
42
+ content: '';
43
+ content: none;
44
+ }
45
+ table {
46
+ border-collapse: collapse;
47
+ border-spacing: 0;
48
+ }
data/assets/rss.svg ADDED
@@ -0,0 +1 @@
1
+ <svg aria-hidden="true" focusable="false" data-prefix="fas" data-icon="rss" class="svg-inline--fa fa-rss fa-w-14" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M128.081 415.959c0 35.369-28.672 64.041-64.041 64.041S0 451.328 0 415.959s28.672-64.041 64.041-64.041 64.04 28.673 64.04 64.041zm175.66 47.25c-8.354-154.6-132.185-278.587-286.95-286.95C7.656 175.765 0 183.105 0 192.253v48.069c0 8.415 6.49 15.472 14.887 16.018 111.832 7.284 201.473 96.702 208.772 208.772.547 8.397 7.604 14.887 16.018 14.887h48.069c9.149.001 16.489-7.655 15.995-16.79zm144.249.288C439.596 229.677 251.465 40.445 16.503 32.01 7.473 31.686 0 38.981 0 48.016v48.068c0 8.625 6.835 15.645 15.453 15.999 191.179 7.839 344.627 161.316 352.465 352.465.353 8.618 7.373 15.453 15.999 15.453h48.068c9.034-.001 16.329-7.474 16.005-16.504z"></path></svg>
@@ -0,0 +1 @@
1
+ <svg aria-hidden="true" focusable="false" data-prefix="fab" data-icon="spotify" class="svg-inline--fa fa-spotify fa-w-16" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><path fill="currentColor" d="M248 8C111.1 8 0 119.1 0 256s111.1 248 248 248 248-111.1 248-248S384.9 8 248 8zm100.7 364.9c-4.2 0-6.8-1.3-10.7-3.6-62.4-37.6-135-39.2-206.7-24.5-3.9 1-9 2.6-11.9 2.6-9.7 0-15.8-7.7-15.8-15.8 0-10.3 6.1-15.2 13.6-16.8 81.9-18.1 165.6-16.5 237 26.2 6.1 3.9 9.7 7.4 9.7 16.5s-7.1 15.4-15.2 15.4zm26.9-65.6c-5.2 0-8.7-2.3-12.3-4.2-62.5-37-155.7-51.9-238.6-29.4-4.8 1.3-7.4 2.6-11.9 2.6-10.7 0-19.4-8.7-19.4-19.4s5.2-17.8 15.5-20.7c27.8-7.8 56.2-13.6 97.8-13.6 64.9 0 127.6 16.1 177 45.5 8.1 4.8 11.3 11 11.3 19.7-.1 10.8-8.5 19.5-19.4 19.5zm31-76.2c-5.2 0-8.4-1.3-12.9-3.9-71.2-42.5-198.5-52.7-280.9-29.7-3.6 1-8.1 2.6-12.9 2.6-13.2 0-23.3-10.3-23.3-23.6 0-13.6 8.4-21.3 17.4-23.9 35.2-10.3 74.6-15.2 117.5-15.2 73 0 149.5 15.2 205.4 47.8 7.8 4.5 12.9 10.7 12.9 22.6 0 13.6-11 23.3-23.2 23.3z"></path></svg>
@@ -0,0 +1 @@
1
+ <svg aria-hidden="true" focusable="false" data-prefix="fab" data-icon="twitter" class="svg-inline--fa fa-twitter fa-w-16" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="currentColor" d="M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z"></path></svg>
metadata ADDED
@@ -0,0 +1,111 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: nokcode-theme
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Rafael Ribeiro
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2020-03-11 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: jekyll
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '4.0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '4.0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: bundler
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '1.16'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '1.16'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rake
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '12.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '12.0'
55
+ description:
56
+ email:
57
+ - nokcode86@gmail.com
58
+ executables: []
59
+ extensions: []
60
+ extra_rdoc_files: []
61
+ files:
62
+ - LICENSE
63
+ - README.md
64
+ - _includes/footer.html
65
+ - _includes/google-analytics.html
66
+ - _includes/head.html
67
+ - _includes/header.html
68
+ - _includes/post-header.html
69
+ - _layouts/default.html
70
+ - _layouts/home.html
71
+ - _layouts/page.html
72
+ - _layouts/post.html
73
+ - _sass/nokcode.scss
74
+ - _sass/nokcode/_article.scss
75
+ - _sass/nokcode/_footer.scss
76
+ - _sass/nokcode/_global.scss
77
+ - _sass/nokcode/_header.scss
78
+ - _sass/nokcode/_main.scss
79
+ - _sass/nokcode/_sticky-footer.scss
80
+ - _sass/nokcode/_syntax-highlight.scss
81
+ - assets/github.svg
82
+ - assets/linode.svg
83
+ - assets/nokcode.scss
84
+ - assets/reset.css
85
+ - assets/rss.svg
86
+ - assets/spotify.svg
87
+ - assets/twitter.svg
88
+ homepage: https://github.com/nokcode/nokcode-theme/
89
+ licenses:
90
+ - MIT
91
+ metadata: {}
92
+ post_install_message:
93
+ rdoc_options: []
94
+ require_paths:
95
+ - lib
96
+ required_ruby_version: !ruby/object:Gem::Requirement
97
+ requirements:
98
+ - - ">="
99
+ - !ruby/object:Gem::Version
100
+ version: '0'
101
+ required_rubygems_version: !ruby/object:Gem::Requirement
102
+ requirements:
103
+ - - ">="
104
+ - !ruby/object:Gem::Version
105
+ version: '0'
106
+ requirements: []
107
+ rubygems_version: 3.0.8
108
+ signing_key:
109
+ specification_version: 4
110
+ summary: "@nokcode default theme."
111
+ test_files: []