bulma_blog_private_server 0.1.3

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,13 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <link rel="canonical" href="{{ page.redirect_to }}"/>
5
+ <meta http-equiv="content-type" content="text/html; charset=utf-8" />
6
+ <meta http-equiv="refresh" content="0;url={{ page.redirect_to }}" />
7
+ </head>
8
+ <body>
9
+ <h1>Redirecting...</h1>
10
+ <a href="{{ page.redirect_to }}">Click here if you are not redirected.<a>
11
+ <script>location='{{ page.redirect_to }}'</script>
12
+ </body>
13
+ </html>
@@ -0,0 +1,24 @@
1
+ div.highlight {
2
+ margin-bottom: 1rem;
3
+ }
4
+
5
+ @include desktop {
6
+ .navbar-item {
7
+ &.is-hoverable:hover {
8
+ .navbar-dropdown {
9
+ display: block;
10
+ }
11
+ }
12
+ }
13
+ }
14
+
15
+ .contents {
16
+ box-shadow: $box-shadow;
17
+ padding: 1.5rem;
18
+ margin-bottom: 3rem;
19
+ }
20
+
21
+ .hero-darken {
22
+ background-color: rgba($hero-darken, 0.5);
23
+ }
24
+
data/_sass/_main.scss ADDED
@@ -0,0 +1,46 @@
1
+ @charset "utf-8";
2
+ @import url('https://fonts.googleapis.com/css?family=Montserrat');
3
+
4
+ $family-sans-serif: 'Montserrat', sans-serif;
5
+ $primary: #188eac !default;
6
+
7
+ $tabs-link-active-color: $primary;
8
+ $tabs-link-active-border-bottom-color: $primary;
9
+
10
+ @import "../node_modules/bulma/bulma.sass";
11
+ $hero-darken: $dark !default;
12
+
13
+ @import "layout";
14
+ @import "syntax";
15
+ @import "showcase";
16
+ @import "../node_modules/bulma-block-list/src/block-list.scss";
17
+
18
+ .gh-sponsor {
19
+ color: #ea4aaa;
20
+ }
21
+
22
+ .published_and_shareables {
23
+ display: grid;
24
+ grid-template-columns: 1fr .5fr;
25
+ grid-template-rows: 1fr;
26
+ gap: 1rem;
27
+ margin-bottom: 1rem;
28
+
29
+ .shareables {
30
+ display: flex;
31
+ justify-content: flex-end;
32
+ align-items: center;
33
+
34
+ a {
35
+ margin-right: 1rem;
36
+ }
37
+ }
38
+ }
39
+
40
+ .shareables_after_post {
41
+ .shareables {
42
+ a {
43
+ margin-right: 1rem;
44
+ }
45
+ }
46
+ }
@@ -0,0 +1,13 @@
1
+ .showcase {
2
+ margin-bottom: 3rem;
3
+ box-shadow: $box-shadow;
4
+
5
+ &-content {
6
+ padding: 1.5rem;
7
+ text-align: center;
8
+ }
9
+
10
+ .block-list {
11
+ margin-bottom: 1.5rem;
12
+ }
13
+ }
data/_sass/syntax.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 .cd {
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 {
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 {
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 {
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
+ }
@@ -0,0 +1,4 @@
1
+ ---
2
+ ---
3
+ // Import Main CSS file from theme
4
+ @import "main";
data/assets/js/app.js ADDED
@@ -0,0 +1,25 @@
1
+ document.addEventListener('DOMContentLoaded', () => {
2
+
3
+ // Get all "navbar-burger" elements
4
+ const $navbarBurgers = Array.prototype.slice.call(document.querySelectorAll('.navbar-burger'), 0);
5
+
6
+ // Check if there are any navbar burgers
7
+ if ($navbarBurgers.length > 0) {
8
+
9
+ // Add a click event on each of them
10
+ $navbarBurgers.forEach( el => {
11
+ el.addEventListener('click', () => {
12
+
13
+ // Get the target from the "data-target" attribute
14
+ const target = el.dataset.target;
15
+ const $target = document.getElementById(target);
16
+
17
+ // Toggle the "is-active" class on both the "navbar-burger" and the "navbar-menu"
18
+ el.classList.toggle('is-active');
19
+ $target.classList.toggle('is-active');
20
+
21
+ });
22
+ });
23
+ }
24
+
25
+ });
metadata ADDED
@@ -0,0 +1,206 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: bulma_blog_private_server
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.3
5
+ platform: ruby
6
+ authors:
7
+ - Lucas Sierota
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2020-04-21 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: jekyll-feed
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '0.11'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '0.11'
41
+ - !ruby/object:Gem::Dependency
42
+ name: jekyll-sitemap
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '1.2'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '1.2'
55
+ - !ruby/object:Gem::Dependency
56
+ name: jekyll-paginate
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '1.1'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '1.1'
69
+ - !ruby/object:Gem::Dependency
70
+ name: jekyll-seo-tag
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '2.5'
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '2.5'
83
+ - !ruby/object:Gem::Dependency
84
+ name: kramdown
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: '2.1'
90
+ type: :runtime
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - "~>"
95
+ - !ruby/object:Gem::Version
96
+ version: '2.1'
97
+ - !ruby/object:Gem::Dependency
98
+ name: rouge
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - "~>"
102
+ - !ruby/object:Gem::Version
103
+ version: '3.3'
104
+ type: :runtime
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - "~>"
109
+ - !ruby/object:Gem::Version
110
+ version: '3.3'
111
+ - !ruby/object:Gem::Dependency
112
+ name: bundler
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - "~>"
116
+ - !ruby/object:Gem::Version
117
+ version: '1.16'
118
+ type: :development
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - "~>"
123
+ - !ruby/object:Gem::Version
124
+ version: '1.16'
125
+ - !ruby/object:Gem::Dependency
126
+ name: rake
127
+ requirement: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - "~>"
130
+ - !ruby/object:Gem::Version
131
+ version: '12.0'
132
+ type: :development
133
+ prerelease: false
134
+ version_requirements: !ruby/object:Gem::Requirement
135
+ requirements:
136
+ - - "~>"
137
+ - !ruby/object:Gem::Version
138
+ version: '12.0'
139
+ description:
140
+ email:
141
+ - lucasemanuelss@hotmail.com
142
+ executables: []
143
+ extensions: []
144
+ extra_rdoc_files: []
145
+ files:
146
+ - LICENSE.txt
147
+ - README.md
148
+ - _includes/base.html
149
+ - _includes/callouts.html
150
+ - _includes/disqus.html
151
+ - _includes/footer-scripts.html
152
+ - _includes/footer.html
153
+ - _includes/google-analytics.html
154
+ - _includes/head-scripts.html
155
+ - _includes/head.html
156
+ - _includes/header.html
157
+ - _includes/hero.html
158
+ - _includes/latest-posts.html
159
+ - _includes/menubar.html
160
+ - _includes/pagination.html
161
+ - _includes/post-card.html
162
+ - _includes/rating.html
163
+ - _includes/review.html
164
+ - _includes/share.html
165
+ - _includes/showcase.html
166
+ - _includes/sponsors.html
167
+ - _includes/subscribe.html
168
+ - _includes/tabs.html
169
+ - _includes/toc.html
170
+ - _layouts/blog.html
171
+ - _layouts/default.html
172
+ - _layouts/page.html
173
+ - _layouts/post.html
174
+ - _layouts/product-category.html
175
+ - _layouts/product.html
176
+ - _layouts/redirected.html
177
+ - _sass/_layout.scss
178
+ - _sass/_main.scss
179
+ - _sass/_showcase.scss
180
+ - _sass/syntax.scss
181
+ - assets/css/app.scss
182
+ - assets/js/app.js
183
+ homepage: https://github.com/kseikyo/bulma_blog_private_server
184
+ licenses:
185
+ - MIT
186
+ metadata: {}
187
+ post_install_message:
188
+ rdoc_options: []
189
+ require_paths:
190
+ - lib
191
+ required_ruby_version: !ruby/object:Gem::Requirement
192
+ requirements:
193
+ - - ">="
194
+ - !ruby/object:Gem::Version
195
+ version: '0'
196
+ required_rubygems_version: !ruby/object:Gem::Requirement
197
+ requirements:
198
+ - - ">="
199
+ - !ruby/object:Gem::Version
200
+ version: '0'
201
+ requirements: []
202
+ rubygems_version: 3.0.1
203
+ signing_key:
204
+ specification_version: 4
205
+ summary: A bulma based blog theme for a private server
206
+ test_files: []