jekyll-theme-console-ext 0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: cd75dfbccc3ae37ef307e22f504fe504ed3720b3c92f5202ee8f5e1763003423
4
+ data.tar.gz: 693b8559cec27cad507a86ca447a64ff30a03c85484c6792427fc0ffa35d483a
5
+ SHA512:
6
+ metadata.gz: 21e1b73dd2c6b0d08ff562dea317026ba4511c2275b534a07b929c7abfa67ed886713a5939918797079d1d1c1b32ff031501d13df980c2c673b6b9be594aaa8f
7
+ data.tar.gz: d928167f21c5cd25ee78c6732bf85f349b5082aa2867606558cdda0f7d2f8b05b742d0859df7414569a5e32c9e3842bbe4cfddfa0146b6788d511ab75ce9fe15
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2018 b2a3e8
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,3 @@
1
+ #extension of https://github.com/b2a3e8/jekyll-theme-console
2
+
3
+ his licence is still in this repo
@@ -0,0 +1,3 @@
1
+ <footer>
2
+ {{ site.footer }}
3
+ </footer>
@@ -0,0 +1,8 @@
1
+ <script async src="https://www.googletagmanager.com/gtag/js?id={{ site.google_analytics }}"></script>
2
+ <script>
3
+ window['ga-disable-{{ site.google_analytics }}'] = window.doNotTrack === "1" || navigator.doNotTrack === "1" || navigator.doNotTrack === "yes" || navigator.msDoNotTrack === "1";
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,28 @@
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.0, maximum-scale=1.0, user-scalable=no" />
5
+ <title>{{ page.title }}</title>
6
+ {%- seo title=false -%}
7
+
8
+ {% if page.robots %}
9
+ <meta name="robots" content="{{page.robots}}" />
10
+ {% endif %}
11
+
12
+ {%- if site.listen_for_clients_preferred_style -%}
13
+ <link rel="stylesheet" type="text/css" href="{{ "/assets/main.css" | relative_url }}">
14
+ {%- else -%}
15
+ {%- if site.style == 'light' -%}
16
+ <link rel="stylesheet" type="text/css" href="{{ "/assets/main-light.css" | relative_url }}">
17
+ {%- elsif site.style == 'hacker' -%}
18
+ <link rel="stylesheet" type="text/css" href="{{ "/assets/main-hacker.css" | relative_url }}">
19
+ {%- else -%}
20
+ <link rel="stylesheet" type="text/css" href="{{ "/assets/main-dark.css" | relative_url }}">
21
+ <link rel="stylesheet" type="text/css" href="{{ "/assets/styles.css" | relative_url }}">
22
+ {%- endif -%}
23
+ {%- endif -%}
24
+
25
+ {%- if jekyll.environment == 'production' and site.google_analytics -%}
26
+ {%- include google-analytics.html -%}
27
+ {%- endif -%}
28
+ </head>
@@ -0,0 +1,13 @@
1
+ {%- assign page_paths = site.header_pages | default: default_paths -%}
2
+ <header>
3
+ <div class="menu">
4
+ <ul>
5
+ {%- for path in page_paths -%}
6
+ {%- assign my_page = site.pages | where: "path", path | first -%}
7
+ {%- if my_page.title -%}
8
+ <li><a href="{{ my_page.url | relative_url }}">{{ my_page.title | escape }}</a></li>
9
+ {%- endif -%}
10
+ {%- endfor -%}
11
+ </ul>
12
+ </div>
13
+ </header>
@@ -0,0 +1,19 @@
1
+ <!DOCTYPE html>
2
+ <html lang="{{ page.lang | default: site.lang | default: "en" }}">
3
+
4
+ {%- include head.html -%}
5
+
6
+ <body>
7
+ <div class="container">
8
+
9
+ {%- include header.html -%}
10
+
11
+ <main>
12
+ {{ content }}
13
+ </main>
14
+
15
+ {%- include footer.html -%}
16
+
17
+ </div>
18
+ </body>
19
+ </html>
@@ -0,0 +1,17 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ {{ content }}
6
+ {% assign contentwonl = content | strip_newlines %} {% unless contentwonl == "" %} <br /> {% endunless %} <!-- add line break if there is any content -->
7
+
8
+ {%- if site.posts.size > 0 -%}
9
+ <ul>
10
+ {%- for post in site.posts -%}
11
+ <li>
12
+ {%- assign date_format = "%Y-%m-%d" -%}
13
+ [ {{ post.date | date: date_format }} ] <a href="{{ post.url | relative_url }}">{{ post.title | escape }}</a>
14
+ </li>
15
+ {%- endfor -%}
16
+ </ul>
17
+ {%- endif -%}
@@ -0,0 +1,5 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ {{ content }}
@@ -0,0 +1,5 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ {{ content }}
data/_sass/_dark.scss ADDED
@@ -0,0 +1,32 @@
1
+ /**
2
+ * Dark theme variables
3
+ */
4
+
5
+ :root {
6
+ --base-color: #DBDBDB;
7
+ --border: dashed 1px rgba(219, 219, 219, 0.9);
8
+ --selection-background: rgba(219, 219, 219, 0.99);
9
+ --selection-text: #000;
10
+ --background-color: #000;
11
+ --text-color: var(--base-color);
12
+ --placeholder-color: var(--base-color);
13
+ --link-color: var(--base-color);
14
+ --code-color-1: #aaaaaa;
15
+ --code-color-2: #ffffcc;
16
+ --code-color-3: #F00000;
17
+ --code-color-4: #F0A0A0;
18
+ --code-color-5: #b38aff;
19
+ --code-color-6: #5ba711;
20
+ --code-color-7: #e4e477;
21
+ --code-color-8: #000080;
22
+ --code-color-9: #05ca05;
23
+ --code-color-10: #888888;
24
+ --code-color-11: #555555;
25
+ --code-color-12: #800080;
26
+ --code-color-13: #00d4d4;
27
+ --code-color-14: #00c1c1;
28
+ --code-color-15: #ed9d13;
29
+ --code-color-16: #1e90ff;
30
+ --code-color-17: #800000;
31
+ --code-color-18: #bbbbbb;
32
+ }
@@ -0,0 +1,32 @@
1
+ /**
2
+ * Hacker theme variables
3
+ */
4
+
5
+ :root {
6
+ --base-color: #00ff00;
7
+ --border: dashed 1px rgba(0, 255, 0, 0.9);
8
+ --selection-background: rgba(0, 255, 0, 0.99);
9
+ --selection-text: #000;
10
+ --background-color: #000;
11
+ --text-color: var(--base-color);
12
+ --placeholder-color: var(--base-color);
13
+ --link-color: var(--base-color);
14
+ --code-color-1: #aaaaaa;
15
+ --code-color-2: #ffffcc;
16
+ --code-color-3: #F00000;
17
+ --code-color-4: #F0A0A0;
18
+ --code-color-5: #b38aff;
19
+ --code-color-6: #5ba711;
20
+ --code-color-7: #e4e477;
21
+ --code-color-8: #000080;
22
+ --code-color-9: #05ca05;
23
+ --code-color-10: #888888;
24
+ --code-color-11: #555555;
25
+ --code-color-12: #800080;
26
+ --code-color-13: #00d4d4;
27
+ --code-color-14: #00c1c1;
28
+ --code-color-15: #ed9d13;
29
+ --code-color-16: #1e90ff;
30
+ --code-color-17: #800000;
31
+ --code-color-18: #bbbbbb;
32
+ }
data/_sass/_light.scss ADDED
@@ -0,0 +1,32 @@
1
+ /**
2
+ * Light theme variables
3
+ */
4
+
5
+ :root {
6
+ --base-color: #000;
7
+ --border: dashed 1px rgba(0, 0, 0, 1);
8
+ --selection-background: rgba(0, 0, 0, 0.99);
9
+ --selection-text: #FFF;
10
+ --background-color: #FFF;
11
+ --text-color: var(--base-color);
12
+ --placeholder-color: var(--base-color);
13
+ --link-color: var(--base-color);
14
+ --code-color-1: #aaaaaa;
15
+ --code-color-2: #ffffcc;
16
+ --code-color-3: #F00000;
17
+ --code-color-4: #F0A0A0;
18
+ --code-color-5: #0000aa;
19
+ --code-color-6: #4c8317;
20
+ --code-color-7: #aa0000;
21
+ --code-color-8: #000080;
22
+ --code-color-9: #00aa00;
23
+ --code-color-10: #888888;
24
+ --code-color-11: #555555;
25
+ --code-color-12: #800080;
26
+ --code-color-13: #00aaaa;
27
+ --code-color-14: #009999;
28
+ --code-color-15: #aa5500;
29
+ --code-color-16: #1e90ff;
30
+ --code-color-17: #800000;
31
+ --code-color-18: #bbbbbb;
32
+ }
data/_sass/base.scss ADDED
@@ -0,0 +1,133 @@
1
+ @charset "utf-8";
2
+ @import url('https://fonts.googleapis.com/css?family=Source+Code+Pro:400,700');
3
+
4
+ /**
5
+ * Style variables
6
+ */
7
+ $base-font-family: 'Source Code Pro', monospace !default;
8
+ $base-font-size: 12.5px !default;
9
+ $mobile-font-size: 12px !default;
10
+ $base-line-height: 1.5 !default;
11
+ $container-width: 90% !default;
12
+ $container-max-width: 600px !default;
13
+
14
+ /**
15
+ * Global
16
+ */
17
+ body { background-color: var(--background-color); margin: 0 auto; padding: 0; font-family: $base-font-family; font-size: $base-font-size; color: var(--text-color); text-align: left; line-height: $base-line-height !important; }
18
+ h1, h2, h3, h4, h5, h6 { font-size: $base-font-size; margin: 0px; margin-top: 22px; font-weight: bold; color: var(--text-color); }
19
+ p, ul, ol { margin: 0px; color: var(--text-color); }
20
+ a { text-decoration: underline; color: var(--link-color); }
21
+ a:hover { color: var(--background-color); background-color: var(--base-color); }
22
+ @media only screen and (max-device-width: 500px) { * { font-size: $mobile-font-size !important; } }
23
+
24
+ /**
25
+ * Layout
26
+ */
27
+ .container { width: $container-width; max-width: $container-max-width; margin-right: auto; margin-left: auto; }
28
+ p { word-wrap: break-word; word-break: break-word; white-space: pre-wrap; margin-bottom: 15px; }
29
+ footer { color: var(--text-color); border-top: var(--border); margin: 20px auto 15px; padding-top: 10px; text-align: right; }
30
+ header { margin-top: 25px; margin-bottom: 10px; }
31
+ header p { text-align: left; margin: 0; }
32
+ footer { margin-bottom: 20px; }
33
+
34
+ /**
35
+ * Highlight/Markup
36
+ */
37
+ ::selection { background: var(--selection-background); color: var(--selection-text); }
38
+ ::-moz-selection { background: var(--selection-background); color: var(--selection-text); }
39
+
40
+ /**
41
+ * Lists
42
+ */
43
+ :not(.menu) > ul { list-style: none; padding-left: 0; }
44
+ :not(.menu) > ul { list-style-type: none; }
45
+ :not(.menu) > ul > li:before { content: "-"; margin-right: 9px; }
46
+
47
+ /**
48
+ * Header/Navigation
49
+ */
50
+ .menu { border-top: var(--border); border-bottom: var(--border); margin-bottom: 25px; }
51
+ .menu ul { margin-top: 12px; margin-bottom: 12px; padding-left: 0px; list-style-type: none; text-align: right; }
52
+ .menu ul li { display: inline; margin-left: 10px; }
53
+ .menu ul li a { text-decoration: none; color: var(--text-color); }
54
+ .menu ul li a:hover { text-decoration: none; color: var(--background-color); background-color: var(--base-color); }
55
+
56
+ /**
57
+ * Form
58
+ */
59
+ input, select, textarea { padding: 0; margin: 0; -webkit-appearance: none; -webkit-border-radius: 0; border: none; }
60
+ input[type=text], select, textarea { width: 100%; resize: none; background-color: var(--background-color); color: var(--text-color); caret-color: var(--text-color); font-size: $base-font-size; font-family: $base-font-family; line-height: $base-line-height; }
61
+ input, select, textarea, textarea::-webkit-input-placeholder { text-indent: 0px; }
62
+ ::placeholder { color: var(--placeholder-color); opacity: 1; }
63
+ :-ms-input-placeholder { color: var(--placeholder-color); }
64
+ ::-ms-input-placeholder { color: var(--placeholder-color); }
65
+ input[type=submit] { font-size: $base-font-size; font-family: $base-font-family; line-height: $base-line-height; cursor: pointer; color: var(--link-color); background-color: var(--background-color); }
66
+ input[type=submit]:hover { color: var(--background-color); background-color: var(--base-color); }
67
+ *:focus { outline: none; }
68
+ textarea { vertical-align: top; }
69
+
70
+ /**
71
+ * Code and syntax highlighting
72
+ */
73
+ .lineno { color: var(--code-color-1); margin-right: 15px; }
74
+ figure.highlight { margin: 5px 0; }
75
+ pre { background-color: var(--background-color); border: none; padding: 0; margin: 0; overflow:auto; font-size: $base-font-size; color: var(--text-color); line-height: 1.7 !important; font-family: $base-font-family !important; }
76
+ .highlight .hll { background-color: var(--code-color-2); }
77
+ .highlight .c { color: var(--code-color-1); font-style: italic } /* Comment */
78
+ .highlight .err { color: var(--code-color-3); background-color: var(--code-color-4); } /* Error */
79
+ .highlight .k { color: var(--code-color-5); } /* Keyword */
80
+ .highlight .cm { color: var(--code-color-1); font-style: italic } /* Comment.Multiline */
81
+ .highlight .cp { color: var(--code-color-6); } /* Comment.Preproc */
82
+ .highlight .c1 { color: var(--code-color-1); font-style: italic } /* Comment.Single */
83
+ .highlight .cs { color: var(--code-color-5); font-style: italic } /* Comment.Special */
84
+ .highlight .gd { color: var(--code-color-7); } /* Generic.Deleted */
85
+ .highlight .ge { font-style: italic } /* Generic.Emph */
86
+ .highlight .gr { color: var(--code-color-7); } /* Generic.Error */
87
+ .highlight .gh { color: var(--code-color-8); font-weight: bold } /* Generic.Heading */
88
+ .highlight .gi { color: var(--code-color-9); } /* Generic.Inserted */
89
+ .highlight .go { color: var(--code-color-10); } /* Generic.Output */
90
+ .highlight .gp { color: var(--code-color-11); } /* Generic.Prompt */
91
+ .highlight .gs { font-weight: bold } /* Generic.Strong */
92
+ .highlight .gu { color: var(--code-color-12); font-weight: bold } /* Generic.Subheading */
93
+ .highlight .gt { color: var(--code-color-7); } /* Generic.Traceback */
94
+ .highlight .kc { color: var(--code-color-5); } /* Keyword.Constant */
95
+ .highlight .kd { color: var(--code-color-5); } /* Keyword.Declaration */
96
+ .highlight .kn { color: var(--code-color-5); } /* Keyword.Namespace */
97
+ .highlight .kp { color: var(--code-color-5); } /* Keyword.Pseudo */
98
+ .highlight .kr { color: var(--code-color-5); } /* Keyword.Reserved */
99
+ .highlight .kt { color: var(--code-color-13); } /* Keyword.Type */
100
+ .highlight .m { color: var(--code-color-14); } /* Literal.Number */
101
+ .highlight .s { color: var(--code-color-15); } /* Literal.String */
102
+ .highlight .na { color: var(--code-color-16); } /* Name.Attribute */
103
+ .highlight .nb { color: var(--code-color-13); } /* Name.Builtin */
104
+ .highlight .nc { color: var(--code-color-9); text-decoration: underline } /* Name.Class */
105
+ .highlight .no { color: var(--code-color-7); } /* Name.Constant */
106
+ .highlight .nd { color: var(--code-color-10); } /* Name.Decorator */
107
+ .highlight .ni { color: var(--code-color-17); font-weight: bold } /* Name.Entity */
108
+ .highlight .nf { color: var(--code-color-9); } /* Name.Function */
109
+ .highlight .nn { color: var(--code-color-13); text-decoration: underline } /* Name.Namespace */
110
+ .highlight .nt { color: var(--code-color-16); font-weight: bold } /* Name.Tag */
111
+ .highlight .nv { color: var(--code-color-7); } /* Name.Variable */
112
+ .highlight .ow { color: var(--code-color-5); } /* Operator.Word */
113
+ .highlight .w { color: var(--code-color-18); } /* Text.Whitespace */
114
+ .highlight .mf { color: var(--code-color-14); } /* Literal.Number.Float */
115
+ .highlight .mh { color: var(--code-color-14); } /* Literal.Number.Hex */
116
+ .highlight .mi { color: var(--code-color-14); } /* Literal.Number.Integer */
117
+ .highlight .mo { color: var(--code-color-14); } /* Literal.Number.Oct */
118
+ .highlight .sb { color: var(--code-color-15); } /* Literal.String.Backtick */
119
+ .highlight .sc { color: var(--code-color-15); } /* Literal.String.Char */
120
+ .highlight .sd { color: var(--code-color-15); } /* Literal.String.Doc */
121
+ .highlight .s2 { color: var(--code-color-15); } /* Literal.String.Double */
122
+ .highlight .se { color: var(--code-color-15); } /* Literal.String.Escape */
123
+ .highlight .sh { color: var(--code-color-15); } /* Literal.String.Heredoc */
124
+ .highlight .si { color: var(--code-color-15); } /* Literal.String.Interpol */
125
+ .highlight .sx { color: var(--code-color-15); } /* Literal.String.Other */
126
+ .highlight .sr { color: var(--code-color-14); } /* Literal.String.Regex */
127
+ .highlight .s1 { color: var(--code-color-15); } /* Literal.String.Single */
128
+ .highlight .ss { color: var(--code-color-5); } /* Literal.String.Symbol */
129
+ .highlight .bp { color: var(--code-color-13); } /* Name.Builtin.Pseudo */
130
+ .highlight .vc { color: var(--code-color-7); } /* Name.Variable.Class */
131
+ .highlight .vg { color: var(--code-color-7); } /* Name.Variable.Global */
132
+ .highlight .vi { color: var(--code-color-7); } /* Name.Variable.Instance */
133
+ .highlight .il { color: var(--code-color-14); } /* Literal.Number.Integer.Long */
@@ -0,0 +1,6 @@
1
+ ---
2
+ # Only the main Sass file needs front matter (the dashes are enough)
3
+ ---
4
+
5
+ @import "dark";
6
+ @import "base";
@@ -0,0 +1,6 @@
1
+ ---
2
+ # Only the main Sass file needs front matter (the dashes are enough)
3
+ ---
4
+
5
+ @import "hacker";
6
+ @import "base";
@@ -0,0 +1,6 @@
1
+ ---
2
+ # Only the main Sass file needs front matter (the dashes are enough)
3
+ ---
4
+
5
+ @import "light";
6
+ @import "base";
data/assets/main.scss ADDED
@@ -0,0 +1,10 @@
1
+ ---
2
+ # Only the main Sass file needs front matter (the dashes are enough)
3
+ ---
4
+
5
+ @import "light";
6
+ @import "base";
7
+
8
+ @media (prefers-color-scheme: dark) {
9
+ @import "dark";
10
+ }
@@ -0,0 +1,28 @@
1
+ ---
2
+ ---
3
+
4
+ .images {
5
+ display: block;
6
+ margin-left: auto;
7
+ margin-right: auto;
8
+ width: 50%;
9
+ }
10
+
11
+ .imgLabel {
12
+ font-style: italic;
13
+ text-decoration: none;
14
+ text-align: center;
15
+ display: block;
16
+ color: #DBDBDB;
17
+ }
18
+
19
+ .images:hover {
20
+ transform: scaleX(-1);
21
+ }
22
+
23
+ .ascii {
24
+ display: block;
25
+ margin-left: auto;
26
+ margin-right: 0px;
27
+ width: 33%;
28
+ }
metadata ADDED
@@ -0,0 +1,118 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: jekyll-theme-console-ext
3
+ version: !ruby/object:Gem::Version
4
+ version: '0.1'
5
+ platform: ruby
6
+ authors:
7
+ - b2a3e8, pedr0silva
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2021-02-14 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: '3.5'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '3.5'
27
+ - !ruby/object:Gem::Dependency
28
+ name: jekyll-seo-tag
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: bundler
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: rake
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ description:
70
+ email:
71
+ - ''
72
+ executables: []
73
+ extensions: []
74
+ extra_rdoc_files: []
75
+ files:
76
+ - LICENSE.txt
77
+ - README.md
78
+ - _includes/footer.html
79
+ - _includes/google-analytics.html
80
+ - _includes/head.html
81
+ - _includes/header.html
82
+ - _layouts/default.html
83
+ - _layouts/home.html
84
+ - _layouts/page.html
85
+ - _layouts/post.html
86
+ - _sass/_dark.scss
87
+ - _sass/_hacker.scss
88
+ - _sass/_light.scss
89
+ - _sass/base.scss
90
+ - assets/main-dark.scss
91
+ - assets/main-hacker.scss
92
+ - assets/main-light.scss
93
+ - assets/main.scss
94
+ - assets/styles.scss
95
+ homepage: https://github.com/pedr0silva/site-theme
96
+ licenses:
97
+ - MIT
98
+ metadata: {}
99
+ post_install_message:
100
+ rdoc_options: []
101
+ require_paths:
102
+ - lib
103
+ required_ruby_version: !ruby/object:Gem::Requirement
104
+ requirements:
105
+ - - ">="
106
+ - !ruby/object:Gem::Version
107
+ version: '0'
108
+ required_rubygems_version: !ruby/object:Gem::Requirement
109
+ requirements:
110
+ - - ">="
111
+ - !ruby/object:Gem::Version
112
+ version: '0'
113
+ requirements: []
114
+ rubygems_version: 3.2.9
115
+ signing_key:
116
+ specification_version: 4
117
+ summary: ''
118
+ test_files: []