blue-jekyll-theme 0.2.0

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: b233c66e3492dd07026483ac53b721eb0a41dfc751627cd34fd8c1c771007cfd
4
+ data.tar.gz: c60347e6eecd36d34c719549d950f81417884f21198dd31a0bddf508213476a8
5
+ SHA512:
6
+ metadata.gz: d2c622f57a320fc19af567b032048f3d6850637abe1d34b882a122454115c9adbfc2c0113913d945fb70641466a26c3a8496644128a2492edd667c27a987ef2b
7
+ data.tar.gz: a862abf9d56984c44e3b7bbb23c144ff14cf6000b49010d26ecc04ab9fc5c4df7954b3fa2ff051c79fdb27614c1b2d900cb59e525486c06ac752271bd25eaf3d
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2019 Juanjo Salvador
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,36 @@
1
+ # Blue
2
+
3
+ > Minimalist Jekyll theme (based on Bulma)
4
+
5
+ Work in progress!
6
+
7
+ [DEMO](https://jsalvador.me/blue)
8
+
9
+ ## How to install
10
+
11
+ 1. Fork this repository.
12
+ 2. Rename your fork as `your-username*.github.io`
13
+ 3. Edit the variables on `_config.yml` to make them yours.
14
+ 4. Replace the content of `_posts/` with your own content.
15
+ 5. Enjoy and submit me any issue or improvement!
16
+
17
+
18
+ ## Config variables
19
+
20
+ ```
21
+ title: My Awesome Blog
22
+ subtitle: My Awesome Blog Subtitle
23
+ url: "https://foobar.dev"
24
+ color: primary
25
+
26
+ author:
27
+ name: Juanjo Salvador
28
+ url: http://jsalvador.me
29
+ email: juanjosalvador@netc.eu
30
+ ```
31
+
32
+ Available colors are the same for Bulma (default ones). You can choose between `primary` (light turquoise), `info` (blue), `warning` (yellow), `danger`(red) and `dark` (black). It will switch the header color.
33
+
34
+ ## Licencse
35
+
36
+ MIT License
@@ -0,0 +1,7 @@
1
+ <footer class="footer">
2
+ <div class="content has-text-centered">
3
+ <p>
4
+ Made with <span style="color: #e25555;">&hearts;</span> by Juanjo Salvador
5
+ </p>
6
+ </div>
7
+ </footer>
@@ -0,0 +1,21 @@
1
+ <head>
2
+ <meta charset="UTF-8">
3
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
4
+ <meta name="description" content="Juanjo Salvador's personal webpage">
5
+
6
+ <title>
7
+ {% if page.title == "Home" %}
8
+ {{ site.title }}
9
+ {% else %}
10
+ {{ page.title }} &middot; {{ site.title }}
11
+ {% endif %}
12
+ </title>
13
+
14
+ <!-- CSS -->
15
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.7.2/css/bulma.min.css">
16
+ <link rel="stylesheet" href="{{ site.baseurl }}/styles.css">
17
+
18
+ <script defer src="https://use.fontawesome.com/releases/v5.3.1/js/all.js"></script>
19
+
20
+ {% seo %}
21
+ </head>
@@ -0,0 +1,32 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+
4
+ {% include head.html %}
5
+
6
+ <body>
7
+ <section class="hero is-{{ site.color }}">
8
+ <div class="hero-body">
9
+ <div class="container main">
10
+ <div class="columns is-mobile">
11
+ <div class="column">
12
+ <h1 class="title is-1"><a href="/">{{ site.title }}</a></h1>
13
+ <h2 class="subtitle is-3">{{ site.subtitle }}</h2>
14
+ </div>
15
+ </div>
16
+ </div>
17
+ </div>
18
+ </section>
19
+
20
+ <section class="section">
21
+ <div class="container">
22
+ <div class="columns is-mobile">
23
+ <div class="column">
24
+ {{ content }}
25
+ </div>
26
+ </div>
27
+ </div>
28
+ </section>
29
+
30
+ {% include footer.html %}
31
+ </body>
32
+ </html>
@@ -0,0 +1,11 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ <div class="page">
6
+
7
+ <h1 class="page-title">{{ page.title }}</h1>
8
+
9
+ {{ content }}
10
+
11
+ </div>
@@ -0,0 +1,14 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ <div class="post">
6
+
7
+ <h2 class="title is-2 post-title">{{ page.title }}</h2>
8
+ <div class="post-info">
9
+ <time datetime="{{ post.date }}" class="frontpage-time has-text-grey-light">{{ page.date | date: "%B %d, %Y" }}</time>
10
+ </div>
11
+
12
+ {{ content }}
13
+
14
+ </div>
data/_sass/code.sass ADDED
@@ -0,0 +1,7 @@
1
+ div.highlight
2
+ //border: 1px solid lightblue
3
+
4
+ pre
5
+ margin-top: 0.5rem
6
+ margin-bottom: 0.5rem
7
+ padding: 1.2rem
@@ -0,0 +1,48 @@
1
+ $doggerblue: #1e90ff
2
+ $lightgray: #f8f8f8
3
+
4
+ body
5
+ font-size: 1.3rem
6
+
7
+ ol, ul
8
+ margin-top: 1em
9
+ margin-bottom: 1em
10
+ padding-left: 2.5em
11
+
12
+ ul
13
+ list-style-type: square
14
+
15
+ h2, h3, h4, h5, h6
16
+ margin-top: 0.5em
17
+ margin-bottom: 0.5em
18
+ font-weight: bold
19
+
20
+ h2
21
+ font-size: 2em
22
+
23
+ h3
24
+ font-size: 1.5em
25
+
26
+ h4, h5, h6
27
+ font-size: 1.2em
28
+
29
+ p
30
+ margin-top: 1em
31
+ margin-bottom: 1em
32
+
33
+ .container
34
+ max-width: 40rem
35
+
36
+ .left-arrow
37
+ font-size: 2em
38
+ position: absolute
39
+ left: 0
40
+
41
+ .right-arrow
42
+ font-size: 2em
43
+ position: absolute
44
+ right: 0
45
+
46
+ .page-number
47
+ font-size: 1.25em
48
+ margin: 0 auto
@@ -0,0 +1,15 @@
1
+ .frontpage
2
+ &-item
3
+ color: #363636
4
+ margin-bottom: 2.5rem
5
+
6
+ &-readmore
7
+ float: right
8
+
9
+ .pagination
10
+ margin-top: 0.5rem
11
+ margin-botton: 0.5rem
12
+
13
+ .paginator
14
+ position: relative
15
+ margin: 0 auto
data/_sass/native.scss ADDED
@@ -0,0 +1,70 @@
1
+ .highlight pre { background-color: #404040 }
2
+ .highlight .hll { background-color: #404040 }
3
+ .highlight .c { color: #999999; font-style: italic } /* Comment */
4
+ .highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */
5
+ .highlight .g { color: #d0d0d0 } /* Generic */
6
+ .highlight .k { color: #6ab825; font-weight: bold } /* Keyword */
7
+ .highlight .l { color: #d0d0d0 } /* Literal */
8
+ .highlight .n { color: #d0d0d0 } /* Name */
9
+ .highlight .o { color: #d0d0d0 } /* Operator */
10
+ .highlight .x { color: #d0d0d0 } /* Other */
11
+ .highlight .p { color: #d0d0d0 } /* Punctuation */
12
+ .highlight .cm { color: #999999; font-style: italic } /* Comment.Multiline */
13
+ .highlight .cp { color: #cd2828; font-weight: bold } /* Comment.Preproc */
14
+ .highlight .c1 { color: #999999; font-style: italic } /* Comment.Single */
15
+ .highlight .cs { color: #e50808; font-weight: bold; background-color: #520000 } /* Comment.Special */
16
+ .highlight .gd { color: #d22323 } /* Generic.Deleted */
17
+ .highlight .ge { color: #d0d0d0; font-style: italic } /* Generic.Emph */
18
+ .highlight .gr { color: #d22323 } /* Generic.Error */
19
+ .highlight .gh { color: #ffffff; font-weight: bold } /* Generic.Heading */
20
+ .highlight .gi { color: #589819 } /* Generic.Inserted */
21
+ .highlight .go { color: #cccccc } /* Generic.Output */
22
+ .highlight .gp { color: #aaaaaa } /* Generic.Prompt */
23
+ .highlight .gs { color: #d0d0d0; font-weight: bold } /* Generic.Strong */
24
+ .highlight .gu { color: #ffffff; text-decoration: underline } /* Generic.Subheading */
25
+ .highlight .gt { color: #d22323 } /* Generic.Traceback */
26
+ .highlight .kc { color: #6ab825; font-weight: bold } /* Keyword.Constant */
27
+ .highlight .kd { color: #6ab825; font-weight: bold } /* Keyword.Declaration */
28
+ .highlight .kn { color: #6ab825; font-weight: bold } /* Keyword.Namespace */
29
+ .highlight .kp { color: #6ab825 } /* Keyword.Pseudo */
30
+ .highlight .kr { color: #6ab825; font-weight: bold } /* Keyword.Reserved */
31
+ .highlight .kt { color: #6ab825; font-weight: bold } /* Keyword.Type */
32
+ .highlight .ld { color: #d0d0d0 } /* Literal.Date */
33
+ .highlight .m { color: #3677a9 } /* Literal.Number */
34
+ .highlight .s { color: #ed9d13 } /* Literal.String */
35
+ .highlight .na { color: #bbbbbb } /* Name.Attribute */
36
+ .highlight .nb { color: #24909d } /* Name.Builtin */
37
+ .highlight .nc { color: #447fcf; text-decoration: underline } /* Name.Class */
38
+ .highlight .no { color: #40ffff } /* Name.Constant */
39
+ .highlight .nd { color: #ffa500 } /* Name.Decorator */
40
+ .highlight .ni { color: #d0d0d0 } /* Name.Entity */
41
+ .highlight .ne { color: #bbbbbb } /* Name.Exception */
42
+ .highlight .nf { color: #447fcf } /* Name.Function */
43
+ .highlight .nl { color: #d0d0d0 } /* Name.Label */
44
+ .highlight .nn { color: #447fcf; text-decoration: underline } /* Name.Namespace */
45
+ .highlight .nx { color: #d0d0d0 } /* Name.Other */
46
+ .highlight .py { color: #d0d0d0 } /* Name.Property */
47
+ .highlight .nt { color: #6ab825; font-weight: bold } /* Name.Tag */
48
+ .highlight .nv { color: #40ffff } /* Name.Variable */
49
+ .highlight .ow { color: #6ab825; font-weight: bold } /* Operator.Word */
50
+ .highlight .w { color: #666666 } /* Text.Whitespace */
51
+ .highlight .mf { color: #3677a9 } /* Literal.Number.Float */
52
+ .highlight .mh { color: #3677a9 } /* Literal.Number.Hex */
53
+ .highlight .mi { color: #3677a9 } /* Literal.Number.Integer */
54
+ .highlight .mo { color: #3677a9 } /* Literal.Number.Oct */
55
+ .highlight .sb { color: #ed9d13 } /* Literal.String.Backtick */
56
+ .highlight .sc { color: #ed9d13 } /* Literal.String.Char */
57
+ .highlight .sd { color: #ed9d13 } /* Literal.String.Doc */
58
+ .highlight .s2 { color: #ed9d13 } /* Literal.String.Double */
59
+ .highlight .se { color: #ed9d13 } /* Literal.String.Escape */
60
+ .highlight .sh { color: #ed9d13 } /* Literal.String.Heredoc */
61
+ .highlight .si { color: #ed9d13 } /* Literal.String.Interpol */
62
+ .highlight .sx { color: #ffa500 } /* Literal.String.Other */
63
+ .highlight .sr { color: #ed9d13 } /* Literal.String.Regex */
64
+ .highlight .s1 { color: #ed9d13 } /* Literal.String.Single */
65
+ .highlight .ss { color: #ed9d13 } /* Literal.String.Symbol */
66
+ .highlight .bp { color: #24909d } /* Name.Builtin.Pseudo */
67
+ .highlight .vc { color: #40ffff } /* Name.Variable.Class */
68
+ .highlight .vg { color: #40ffff } /* Name.Variable.Global */
69
+ .highlight .vi { color: #40ffff } /* Name.Variable.Instance */
70
+ .highlight .il { color: #3677a9 } /* Literal.Number.Integer.Long */
data/_sass/post.sass ADDED
@@ -0,0 +1,6 @@
1
+ blockquote
2
+ p
3
+ border-left: 0.5rem solid $doggerblue
4
+ padding: 0.5rem
5
+ font-style: italic
6
+ background-color: $lightgray
data/_sass/rouge.scss ADDED
@@ -0,0 +1,209 @@
1
+ .highlight table td { padding: 5px; }
2
+ .highlight table pre { margin: 0; }
3
+ .highlight .cm {
4
+ color: #999988;
5
+ font-style: italic;
6
+ }
7
+ .highlight .cp {
8
+ color: #999999;
9
+ font-weight: bold;
10
+ }
11
+ .highlight .c1 {
12
+ color: #999988;
13
+ font-style: italic;
14
+ }
15
+ .highlight .cs {
16
+ color: #999999;
17
+ font-weight: bold;
18
+ font-style: italic;
19
+ }
20
+ .highlight .c, .highlight .ch, .highlight .cd, .highlight .cpf {
21
+ color: #999988;
22
+ font-style: italic;
23
+ }
24
+ .highlight .err {
25
+ color: #a61717;
26
+ background-color: #e3d2d2;
27
+ }
28
+ .highlight .gd {
29
+ color: #000000;
30
+ background-color: #ffdddd;
31
+ }
32
+ .highlight .ge {
33
+ color: #000000;
34
+ font-style: italic;
35
+ }
36
+ .highlight .gr {
37
+ color: #aa0000;
38
+ }
39
+ .highlight .gh {
40
+ color: #999999;
41
+ }
42
+ .highlight .gi {
43
+ color: #000000;
44
+ background-color: #ddffdd;
45
+ }
46
+ .highlight .go {
47
+ color: #888888;
48
+ }
49
+ .highlight .gp {
50
+ color: #555555;
51
+ }
52
+ .highlight .gs {
53
+ font-weight: bold;
54
+ }
55
+ .highlight .gu {
56
+ color: #aaaaaa;
57
+ }
58
+ .highlight .gt {
59
+ color: #aa0000;
60
+ }
61
+ .highlight .kc {
62
+ color: #000000;
63
+ font-weight: bold;
64
+ }
65
+ .highlight .kd {
66
+ color: #000000;
67
+ font-weight: bold;
68
+ }
69
+ .highlight .kn {
70
+ color: #000000;
71
+ font-weight: bold;
72
+ }
73
+ .highlight .kp {
74
+ color: #000000;
75
+ font-weight: bold;
76
+ }
77
+ .highlight .kr {
78
+ color: #000000;
79
+ font-weight: bold;
80
+ }
81
+ .highlight .kt {
82
+ color: #445588;
83
+ font-weight: bold;
84
+ }
85
+ .highlight .k, .highlight .kv {
86
+ color: #000000;
87
+ font-weight: bold;
88
+ }
89
+ .highlight .mf {
90
+ color: #009999;
91
+ }
92
+ .highlight .mh {
93
+ color: #009999;
94
+ }
95
+ .highlight .il {
96
+ color: #009999;
97
+ }
98
+ .highlight .mi {
99
+ color: #009999;
100
+ }
101
+ .highlight .mo {
102
+ color: #009999;
103
+ }
104
+ .highlight .m, .highlight .mb, .highlight .mx {
105
+ color: #009999;
106
+ }
107
+ .highlight .sb {
108
+ color: #d14;
109
+ }
110
+ .highlight .sc {
111
+ color: #d14;
112
+ }
113
+ .highlight .sd {
114
+ color: #d14;
115
+ }
116
+ .highlight .s2 {
117
+ color: #d14;
118
+ }
119
+ .highlight .se {
120
+ color: #d14;
121
+ }
122
+ .highlight .sh {
123
+ color: #d14;
124
+ }
125
+ .highlight .si {
126
+ color: #d14;
127
+ }
128
+ .highlight .sx {
129
+ color: #d14;
130
+ }
131
+ .highlight .sr {
132
+ color: #009926;
133
+ }
134
+ .highlight .s1 {
135
+ color: #d14;
136
+ }
137
+ .highlight .ss {
138
+ color: #990073;
139
+ }
140
+ .highlight .s, .highlight .sa, .highlight .dl {
141
+ color: #d14;
142
+ }
143
+ .highlight .na {
144
+ color: #008080;
145
+ }
146
+ .highlight .bp {
147
+ color: #999999;
148
+ }
149
+ .highlight .nb {
150
+ color: #0086B3;
151
+ }
152
+ .highlight .nc {
153
+ color: #445588;
154
+ font-weight: bold;
155
+ }
156
+ .highlight .no {
157
+ color: #008080;
158
+ }
159
+ .highlight .nd {
160
+ color: #3c5d5d;
161
+ font-weight: bold;
162
+ }
163
+ .highlight .ni {
164
+ color: #800080;
165
+ }
166
+ .highlight .ne {
167
+ color: #990000;
168
+ font-weight: bold;
169
+ }
170
+ .highlight .nf, .highlight .fm {
171
+ color: #990000;
172
+ font-weight: bold;
173
+ }
174
+ .highlight .nl {
175
+ color: #990000;
176
+ font-weight: bold;
177
+ }
178
+ .highlight .nn {
179
+ color: #555555;
180
+ }
181
+ .highlight .nt {
182
+ color: #000080;
183
+ }
184
+ .highlight .vc {
185
+ color: #008080;
186
+ }
187
+ .highlight .vg {
188
+ color: #008080;
189
+ }
190
+ .highlight .vi {
191
+ color: #008080;
192
+ }
193
+ .highlight .nv, .highlight .vm {
194
+ color: #008080;
195
+ }
196
+ .highlight .ow {
197
+ color: #000000;
198
+ font-weight: bold;
199
+ }
200
+ .highlight .o {
201
+ color: #000000;
202
+ font-weight: bold;
203
+ }
204
+ .highlight .w {
205
+ color: #bbbbbb;
206
+ }
207
+ .highlight {
208
+ background-color: #f8f8f8;
209
+ }
metadata ADDED
@@ -0,0 +1,127 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: blue-jekyll-theme
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.2.0
5
+ platform: ruby
6
+ authors:
7
+ - Juanjo Salvador
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2022-01-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.8'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '3.8'
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: '2.7'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '2.7'
41
+ - !ruby/object:Gem::Dependency
42
+ name: jekyll-paginate
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '1.1'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '1.1'
55
+ - !ruby/object:Gem::Dependency
56
+ name: bundler
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '2.0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '2.0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: rake
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '12.0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '12.0'
83
+ description: Minimalist Jekyll theme based on Bulma with customizable colors, focused
84
+ on readability
85
+ email:
86
+ - juanjosalvador@netc.eu
87
+ executables: []
88
+ extensions: []
89
+ extra_rdoc_files: []
90
+ files:
91
+ - LICENSE.txt
92
+ - README.md
93
+ - _includes/footer.html
94
+ - _includes/head.html
95
+ - _layouts/default.html
96
+ - _layouts/page.html
97
+ - _layouts/post.html
98
+ - _sass/code.sass
99
+ - _sass/default.sass
100
+ - _sass/frontpage.sass
101
+ - _sass/native.scss
102
+ - _sass/post.sass
103
+ - _sass/rouge.scss
104
+ homepage: https://jsalvador.me/blog/
105
+ licenses:
106
+ - MIT
107
+ metadata: {}
108
+ post_install_message:
109
+ rdoc_options: []
110
+ require_paths:
111
+ - lib
112
+ required_ruby_version: !ruby/object:Gem::Requirement
113
+ requirements:
114
+ - - ">="
115
+ - !ruby/object:Gem::Version
116
+ version: '0'
117
+ required_rubygems_version: !ruby/object:Gem::Requirement
118
+ requirements:
119
+ - - ">="
120
+ - !ruby/object:Gem::Version
121
+ version: '0'
122
+ requirements: []
123
+ rubygems_version: 3.2.27
124
+ signing_key:
125
+ specification_version: 4
126
+ summary: Minimalist Jekyll theme based on Bulma
127
+ test_files: []