forest-time-jekyll 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 +7 -0
- data/LICENSE.md +21 -0
- data/README.md +17 -0
- data/_includes/footer.html +10 -0
- data/_includes/head.html +41 -0
- data/_includes/header.html +14 -0
- data/_includes/image.html +10 -0
- data/_includes/navigation.html +4 -0
- data/_layouts/default.html +14 -0
- data/_layouts/page.html +12 -0
- data/_layouts/post.html +16 -0
- data/_sass/_objects.image.scss +3 -0
- data/_sass/_objects.text.scss +19 -0
- data/_sass/main.scss +564 -0
- data/_sass/syntax.scss +68 -0
- data/assets/core.scss +6 -0
- data/assets/favicon/android-chrome-192x192.png +0 -0
- data/assets/favicon/android-chrome-512x512.png +0 -0
- data/assets/favicon/apple-touch-icon.png +0 -0
- data/assets/favicon/browserconfig.xml +9 -0
- data/assets/favicon/favicon-16x16.png +0 -0
- data/assets/favicon/favicon-32x32.png +0 -0
- data/assets/favicon/favicon.ico +0 -0
- data/assets/favicon/mstile-150x150.png +0 -0
- data/assets/favicon/safari-pinned-tab.svg +32 -0
- data/assets/favicon/site.webmanifest +19 -0
- data/assets/logo.jpg +0 -0
- data/assets/static/forest.jpg +0 -0
- metadata +113 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 1a855a0941df4affc9973d70a2a18031a83491338cf895ae89c95c3bfdd95751
|
4
|
+
data.tar.gz: 5fd7a80fd94e92ae1b9b224ad74c03b6036d872682e57cc9899e3536f2845ea6
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 301593387143c9ca8f413dbcfb374ab8cd35c51f2d5f07eaf76df697917e99170278046cc14d49af5a7c7877104650f1322dc2f24f28de66f62146e0f1bfa9cb
|
7
|
+
data.tar.gz: ae0eb81882a540b85caa6f3cf38cc85be2195f3a81cda92b985af4e847521840f8926092e9c89900767a7fc4cd3bcf49fbfbd7b87c8a99b2a223749924227115
|
data/LICENSE.md
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2018 Claudiu Constantin
|
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,17 @@
|
|
1
|
+
# forest-time-jekyll
|
2
|
+
|
3
|
+
[](https://travis-ci.org/claudiuconstantin/forest-time-jekyll)
|
4
|
+
|
5
|
+
This is a simple Jekyll theme for your static blog. Here you can find anything you need to test the theme, package a gem containing the theme and test that gem in a sample Jekyll site; you can find an example in the `test-gem` folder. The published gem is [here](https://rubygems.org/gems/forest-time-jekyll/versions/0.1.0.pre.beta).
|
6
|
+
|
7
|
+
To get started just run `bundle`, then `bundle exec jekyll serve` and open your browser at `http://localhost:4000`. This starts a Jekyll server using your theme. Add pages, documents, data, etc. like normal to test your theme's contents. As you make modifications to your theme and to your content, your site will regenerate and you should see the changes in the browser after a refresh, just like normal.
|
8
|
+
|
9
|
+
## Contributing
|
10
|
+
|
11
|
+
Bug reports and pull requests are welcome on [GitHub](https://github.com/claudiuconstantin/forest-time-jekyll/issues). This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](https://contributor-covenant.org) code of conduct.
|
12
|
+
|
13
|
+
## License
|
14
|
+
|
15
|
+
The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
16
|
+
|
17
|
+
|
@@ -0,0 +1,10 @@
|
|
1
|
+
<div class="footer">
|
2
|
+
<hr />
|
3
|
+
|
4
|
+
<span>
|
5
|
+
<a href="{{ site.baseurl }}/" class="phantom">Home</a> ・
|
6
|
+
<a href="{{ site.baseurl }}/about" class="phantom">About</a> ・
|
7
|
+
<a href="{{ site.baseurl }}/rss" class="phantom">RSS</a></span>
|
8
|
+
<span class="block">{{ site.title }}</span>
|
9
|
+
<span>{{ site.time | date: '%Y' }}</span>
|
10
|
+
</div>
|
data/_includes/head.html
ADDED
@@ -0,0 +1,41 @@
|
|
1
|
+
<meta charset="utf-8">
|
2
|
+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
3
|
+
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
4
|
+
|
5
|
+
{% if page.title %}
|
6
|
+
<title>{{ page.title }} — {{ site.title }}</title>
|
7
|
+
{% else %}
|
8
|
+
<title>{{ site.title }} — {{ site.description }}</title>
|
9
|
+
{% endif %}
|
10
|
+
|
11
|
+
<meta name="description" content="{% if page.excerpt %}{{ page.excerpt | strip_html | strip_newlines | truncate: 160 }}{% else %}{{ site.description }}{% endif %}">
|
12
|
+
|
13
|
+
<!-- Favicon -->
|
14
|
+
<link rel="apple-touch-icon" sizes="180x180" href="{{ site.baseurl }}/assets/favicon/apple-touch-icon.png">
|
15
|
+
<link rel="icon" type="image/png" sizes="32x32" href="{{ site.baseurl }}/assets/favicon/favicon-32x32.png">
|
16
|
+
<link rel="icon" type="image/png" sizes="16x16" href="{{ site.baseurl }}/assets/favicon/favicon-16x16.png">
|
17
|
+
<link rel="manifest" href="{{ site.baseurl }}/assets/favicon/site.webmanifest">
|
18
|
+
<link rel="mask-icon" href="{{ site.baseurl }}/assets/favicon/safari-pinned-tab.svg" color="#5bbad5">
|
19
|
+
<link rel="shortcut icon" href="{{ site.baseurl }}/assets/favicon/favicon.ico">
|
20
|
+
<meta name="msapplication-TileColor" content="#ffffff">
|
21
|
+
<meta name="theme-color" content="#ffffff">
|
22
|
+
|
23
|
+
<link rel="stylesheet" href="{{ site.baseurl }}/assets/core.css">
|
24
|
+
<link rel="canonical" href="{{ page.url | prepend: site.baseurl }}">
|
25
|
+
<link rel="alternate" type="application/atom+xml" title="{{ site.title }}" href="{{ site.baseurl }}/feed.xml" />
|
26
|
+
|
27
|
+
{% if jekyll.environment == 'production' %}
|
28
|
+
|
29
|
+
<script>
|
30
|
+
(function (i, s, o, g, r, a, m) {
|
31
|
+
i['GoogleAnalyticsObject'] = r; i[r] = i[r] || function () {
|
32
|
+
(i[r].q = i[r].q || []).push(arguments)
|
33
|
+
}, i[r].l = 1 * new Date(); a = s.createElement(o),
|
34
|
+
m = s.getElementsByTagName(o)[0]; a.async = 1; a.src = g; m.parentNode.insertBefore(a, m)
|
35
|
+
})(window, document, 'script', '//www.google-analytics.com/analytics.js', 'ga');
|
36
|
+
|
37
|
+
ga('create', '{{ site.google_analytics }}', 'auto');
|
38
|
+
ga('send', 'pageview');
|
39
|
+
</script>
|
40
|
+
|
41
|
+
{% endif %}
|
@@ -0,0 +1,14 @@
|
|
1
|
+
<aside class="logo">
|
2
|
+
{% if page.url == '/index.html' or page.url == '/' %}
|
3
|
+
{% assign link = site.baseur' %}
|
4
|
+
{% assign prompt = 'Home' %}
|
5
|
+
{% else %}
|
6
|
+
{% assign link = '/' %}
|
7
|
+
{% assign prompt = 'Back to Home' %}
|
8
|
+
{% endif %}
|
9
|
+
|
10
|
+
<a href="{{ link | prepend: site.baseurl }}">
|
11
|
+
<img src="{{ site.baseurl }}/assets/logo.jpg" class="gravatar">
|
12
|
+
</a>
|
13
|
+
<span class="logo-prompt">{{ prompt }}</span>
|
14
|
+
</aside>
|
@@ -0,0 +1,10 @@
|
|
1
|
+
{% assign url = '/assets/static/' | append: include.file %}
|
2
|
+
|
3
|
+
<a href="{{ url | prepend: site.baseurl }}" target="_blank" class="image">
|
4
|
+
<img
|
5
|
+
src="{{ url | prepend: site.baseurl }}"
|
6
|
+
alt="{% if include.alt %}{{ include.alt }}{% else %}Image{% endif %}"
|
7
|
+
style="{% if include.small%}max-width:300px{% endif%}"
|
8
|
+
class="c-article-image">
|
9
|
+
<span class="c-image__alt">{{include.alt}}</span>
|
10
|
+
</a>
|
data/_layouts/page.html
ADDED
data/_layouts/post.html
ADDED
@@ -0,0 +1,16 @@
|
|
1
|
+
---
|
2
|
+
layout: default
|
3
|
+
---
|
4
|
+
|
5
|
+
{% include header.html %}
|
6
|
+
|
7
|
+
<article class="c-article--post">
|
8
|
+
<div class="center c-post-header">
|
9
|
+
<h1>{{ page.title }}</h1>
|
10
|
+
<span class="c-article__meta">Published on <time>{{ page.date | date: '%B %-d, %Y' }}</time> by <a href="{{ site.baseurl }}/about"
|
11
|
+
class="c-article__meta--link">{{ site.author_name }}</a>
|
12
|
+
</span>
|
13
|
+
</div>
|
14
|
+
|
15
|
+
<div id="content"> {{ content }} </div>
|
16
|
+
</article>
|
@@ -0,0 +1,19 @@
|
|
1
|
+
.o-text--h3-size {
|
2
|
+
font-size: 1.17em;
|
3
|
+
}
|
4
|
+
|
5
|
+
.o-text--block {
|
6
|
+
display: block;
|
7
|
+
}
|
8
|
+
|
9
|
+
.o-text--align-center {
|
10
|
+
text-align: center;
|
11
|
+
}
|
12
|
+
|
13
|
+
.o-text--underline {
|
14
|
+
text-decoration: underline;
|
15
|
+
}
|
16
|
+
|
17
|
+
.o-text--no-border, .o-text--noborder:hover {
|
18
|
+
border: none;
|
19
|
+
}
|
data/_sass/main.scss
ADDED
@@ -0,0 +1,564 @@
|
|
1
|
+
$max-width: 725px;
|
2
|
+
$max-width--home: 650px;
|
3
|
+
$text-color: #222;
|
4
|
+
$primary-color: #4787ed;
|
5
|
+
$secondary-color: #F37C22;
|
6
|
+
$gray: #777;
|
7
|
+
$base-margin: 1rem;
|
8
|
+
|
9
|
+
@import url('https://fonts.googleapis.com/css?family=Roboto+Slab:400|Roboto:400,500,700&subset=latin-ext');
|
10
|
+
|
11
|
+
@import 'objects.text';
|
12
|
+
@import 'objects.image';
|
13
|
+
|
14
|
+
body {
|
15
|
+
font-size: 17px;
|
16
|
+
line-height: 20px;
|
17
|
+
font-weight: normal;
|
18
|
+
font-style: normal;
|
19
|
+
font-family: 'Roboto', sans-serif;
|
20
|
+
color: $text-color;
|
21
|
+
padding: 20px;
|
22
|
+
margin: 0;
|
23
|
+
-webkit-font-smoothing: antialiased;
|
24
|
+
-webkit-text-size-adjust: 100%;
|
25
|
+
@media (min-width: 992px) {
|
26
|
+
padding: 35px 50px;
|
27
|
+
}
|
28
|
+
}
|
29
|
+
|
30
|
+
strong {
|
31
|
+
font-weight: 600;
|
32
|
+
}
|
33
|
+
|
34
|
+
h1 {
|
35
|
+
font-family: Roboto Slab;
|
36
|
+
font-weight: 100;
|
37
|
+
line-height: 1.7rem;
|
38
|
+
}
|
39
|
+
|
40
|
+
h3 {
|
41
|
+
font-size: 1.2rem;
|
42
|
+
}
|
43
|
+
|
44
|
+
h2,
|
45
|
+
h3,
|
46
|
+
h4,
|
47
|
+
h5 {
|
48
|
+
margin: 45px 0 25px;
|
49
|
+
font-family: 'Roboto Slab', Roboto, sans-serif;
|
50
|
+
font-weight: 400;
|
51
|
+
line-height: 1.7rem;
|
52
|
+
}
|
53
|
+
img {
|
54
|
+
max-width: 100%;
|
55
|
+
}
|
56
|
+
a {
|
57
|
+
color: $primary-color;
|
58
|
+
text-decoration: none;
|
59
|
+
font-weight: bold;
|
60
|
+
|
61
|
+
&:hover {
|
62
|
+
text-decoration: underline;
|
63
|
+
}
|
64
|
+
&.image {
|
65
|
+
display: block;
|
66
|
+
text-align: center;
|
67
|
+
border: 0;
|
68
|
+
border-radius: 5px;
|
69
|
+
margin: 30px 0;
|
70
|
+
&:hover {
|
71
|
+
text-decoration: none;
|
72
|
+
}
|
73
|
+
}
|
74
|
+
}
|
75
|
+
mark {
|
76
|
+
background: #fffc76;
|
77
|
+
padding: 0 5px;
|
78
|
+
}
|
79
|
+
blockquote {
|
80
|
+
// border: 1px solid #81D4FA;
|
81
|
+
border-left: 5px solid #81D4FA;
|
82
|
+
// border-radius: 4px;
|
83
|
+
margin: 40px 0;
|
84
|
+
padding: 5px 30px;
|
85
|
+
// background: #E1F5FE;
|
86
|
+
font-style: italic;
|
87
|
+
}
|
88
|
+
.logo {
|
89
|
+
position: relative;
|
90
|
+
margin: 0 auto 35px;
|
91
|
+
text-align: center;
|
92
|
+
a {
|
93
|
+
color: #000;
|
94
|
+
text-decoration: none;
|
95
|
+
font-weight: 700;
|
96
|
+
height: 90px;
|
97
|
+
width: 90px;
|
98
|
+
font-size: 1.5em;
|
99
|
+
display: inline-block;
|
100
|
+
text-align: center;
|
101
|
+
line-height: 100px;
|
102
|
+
border: 5px solid #fff;
|
103
|
+
box-sizing: border-box;
|
104
|
+
&:hover + .logo-prompt,
|
105
|
+
&:focus + .logo-prompt {
|
106
|
+
display: inline-block !important;
|
107
|
+
}
|
108
|
+
@media (max-width : 480px) {&:hover + .logo-prompt,
|
109
|
+
&:focus + .logo-prompt {
|
110
|
+
display: none !important;
|
111
|
+
}
|
112
|
+
}
|
113
|
+
}
|
114
|
+
.logo-prompt {
|
115
|
+
position: absolute;
|
116
|
+
display: none;
|
117
|
+
vertical-align: middle;
|
118
|
+
padding: 5px;
|
119
|
+
border-radius: 3px;
|
120
|
+
background: #666;
|
121
|
+
background: rgba(0,0,0,.5);
|
122
|
+
margin-left: 15px;
|
123
|
+
color: #fff;
|
124
|
+
font-size: 0.8235em;
|
125
|
+
text-align: center;
|
126
|
+
line-height: 1.2;
|
127
|
+
top: 50%;
|
128
|
+
margin-top: -10px;
|
129
|
+
&:before {
|
130
|
+
content: "";
|
131
|
+
border-width: 5px 5px 5px 0;
|
132
|
+
border-style: solid;
|
133
|
+
border-color: transparent #666;
|
134
|
+
border-color: transparent rgba(0,0,0,.5);
|
135
|
+
position: absolute;
|
136
|
+
top: 50%;
|
137
|
+
left: -5px;
|
138
|
+
margin-top: -5px;
|
139
|
+
}
|
140
|
+
}
|
141
|
+
}
|
142
|
+
iframe {
|
143
|
+
margin: 45px 0 !important;
|
144
|
+
}
|
145
|
+
ul,
|
146
|
+
ol {
|
147
|
+
margin: 0rem;
|
148
|
+
padding-left: 50px;
|
149
|
+
line-height: 1.5rem;
|
150
|
+
margin-bottom: 1rem;
|
151
|
+
li {
|
152
|
+
word-wrap: break-word;
|
153
|
+
}
|
154
|
+
img {
|
155
|
+
margin: 40px 0;
|
156
|
+
border-radius: 5px;
|
157
|
+
}
|
158
|
+
}
|
159
|
+
sup {
|
160
|
+
vertical-align: top;
|
161
|
+
position: relative;
|
162
|
+
top: -0.5em;
|
163
|
+
margin-left: 1px;
|
164
|
+
}
|
165
|
+
code,
|
166
|
+
pre {
|
167
|
+
font-family: Consolas, Courier, monospace;
|
168
|
+
}
|
169
|
+
code {
|
170
|
+
color: #f14e32;
|
171
|
+
background: #eee;
|
172
|
+
padding: 2px 6px;
|
173
|
+
font-size: 13px;
|
174
|
+
}
|
175
|
+
pre {
|
176
|
+
display: block;
|
177
|
+
margin-top: 0;
|
178
|
+
margin-bottom: 1rem;
|
179
|
+
font-size: 0.9rem;
|
180
|
+
line-height: 1.4;
|
181
|
+
white-space: pre;
|
182
|
+
overflow-x: auto;
|
183
|
+
background-color: #f9f9f9;
|
184
|
+
border-radius: 3px;
|
185
|
+
border: 1px solid #ddd;
|
186
|
+
padding: 1rem;
|
187
|
+
code {
|
188
|
+
font-size: 100%;
|
189
|
+
color: inherit;
|
190
|
+
background-color: transparent;
|
191
|
+
padding: 0;
|
192
|
+
}
|
193
|
+
}
|
194
|
+
table {
|
195
|
+
width: 100%;
|
196
|
+
table-layout: fixed;
|
197
|
+
margin: 45px 0;
|
198
|
+
thead {
|
199
|
+
background: #f2f2f2;
|
200
|
+
}
|
201
|
+
th {
|
202
|
+
text-align: left;
|
203
|
+
padding: 8px 10px;
|
204
|
+
border-bottom: 15px solid #fff;
|
205
|
+
}
|
206
|
+
td {
|
207
|
+
padding: 4px 0;
|
208
|
+
}
|
209
|
+
}
|
210
|
+
iframe {
|
211
|
+
width: 100%;
|
212
|
+
}
|
213
|
+
article {
|
214
|
+
max-width: $max-width;
|
215
|
+
margin: 0 auto;
|
216
|
+
.title {
|
217
|
+
line-height: 1.4em;
|
218
|
+
text-align: center;
|
219
|
+
}
|
220
|
+
.divider {
|
221
|
+
background: #ddd;
|
222
|
+
background: -webkit-gradient(linear,left top,right top,from(rgba(255,255,255,0)),color-stop(#ccc),to(rgba(255,255,255,0)));
|
223
|
+
background: -webkit-linear-gradient(left,rgba(255,255,255,0),#ccc,rgba(255,255,255,0));
|
224
|
+
background: linear-gradient(to right,rgba(255,255,255,0),#ccc,rgba(255,255,255,0));
|
225
|
+
height: 1px;
|
226
|
+
margin: 2em 0;
|
227
|
+
}
|
228
|
+
.center {
|
229
|
+
text-align: center;
|
230
|
+
margin: 0 auto;
|
231
|
+
}
|
232
|
+
hr {
|
233
|
+
border: 0;
|
234
|
+
border-bottom: 1px solid #000;
|
235
|
+
margin: 30px 0;
|
236
|
+
}
|
237
|
+
p {
|
238
|
+
font-size: 1.1rem;
|
239
|
+
line-height: 1.7em;
|
240
|
+
word-wrap: break-word;
|
241
|
+
}
|
242
|
+
|
243
|
+
li {
|
244
|
+
margin-bottom: .25rem;
|
245
|
+
}
|
246
|
+
|
247
|
+
img {
|
248
|
+
border-radius: 4px;
|
249
|
+
margin: 1rem 0rem;
|
250
|
+
}
|
251
|
+
|
252
|
+
.footnote {
|
253
|
+
border: 0;
|
254
|
+
background-color: #0087BE;
|
255
|
+
color: #fff;
|
256
|
+
padding-left: 2px;
|
257
|
+
padding-right: 2px;
|
258
|
+
}
|
259
|
+
.footnotes {
|
260
|
+
margin: 50px auto;
|
261
|
+
display: block;
|
262
|
+
p {
|
263
|
+
line-height: 1rem;
|
264
|
+
font-weight: normal;
|
265
|
+
}
|
266
|
+
ol {
|
267
|
+
margin: 0;
|
268
|
+
padding-left: 15px;
|
269
|
+
li {
|
270
|
+
font-weight: bold;
|
271
|
+
|
272
|
+
}
|
273
|
+
}
|
274
|
+
.reversefootnote {
|
275
|
+
border: 0;
|
276
|
+
color: #0087BE;
|
277
|
+
}
|
278
|
+
}
|
279
|
+
a:hover {
|
280
|
+
color: $secondary-color;
|
281
|
+
border-color: #369;
|
282
|
+
text-decoration: none;
|
283
|
+
}
|
284
|
+
}
|
285
|
+
.back {
|
286
|
+
text-align: center;
|
287
|
+
a {
|
288
|
+
text-decoration: none;
|
289
|
+
margin: 40px auto 0;
|
290
|
+
display: inline-block;
|
291
|
+
padding: 10px;
|
292
|
+
border: 0;
|
293
|
+
&:before {
|
294
|
+
content: "<<";
|
295
|
+
margin-right: 5px;
|
296
|
+
color: #000;
|
297
|
+
}
|
298
|
+
|
299
|
+
img {
|
300
|
+
border: none;
|
301
|
+
}
|
302
|
+
}
|
303
|
+
}
|
304
|
+
.block {
|
305
|
+
display: block;
|
306
|
+
}
|
307
|
+
.page-navigation,
|
308
|
+
.footer {
|
309
|
+
text-align: center;
|
310
|
+
max-width: $max-width;
|
311
|
+
margin: 0 auto;
|
312
|
+
font-size: 0.9rem;
|
313
|
+
}
|
314
|
+
.page-navigation {
|
315
|
+
margin: 50px auto 0 auto;
|
316
|
+
a {
|
317
|
+
display: inline-block;
|
318
|
+
text-decoration: none;
|
319
|
+
border-bottom: none;
|
320
|
+
}
|
321
|
+
span {
|
322
|
+
display: inline-block;
|
323
|
+
}
|
324
|
+
}
|
325
|
+
.footer {
|
326
|
+
margin-top: 50px;
|
327
|
+
color: #777;
|
328
|
+
a {
|
329
|
+
border: none;
|
330
|
+
font-weight: bold;
|
331
|
+
}
|
332
|
+
}
|
333
|
+
section {
|
334
|
+
max-width: $max-width--home;
|
335
|
+
margin: 0 auto 50px auto;
|
336
|
+
ul {
|
337
|
+
list-style: none;
|
338
|
+
margin: 0;
|
339
|
+
padding: 0;
|
340
|
+
li {
|
341
|
+
margin: 25px 0;
|
342
|
+
.description {
|
343
|
+
color: gray;
|
344
|
+
font-size: 15px;
|
345
|
+
}
|
346
|
+
.title {
|
347
|
+
font-size: larger;
|
348
|
+
max-width: 100%;
|
349
|
+
word-wrap: normal !important;
|
350
|
+
}
|
351
|
+
a {
|
352
|
+
text-decoration: none;
|
353
|
+
font-weight: normal;
|
354
|
+
border: 0;
|
355
|
+
color: #000;
|
356
|
+
box-sizing: border-box;
|
357
|
+
}
|
358
|
+
.post-date {
|
359
|
+
float: right;
|
360
|
+
margin: 0 0 0 20px;
|
361
|
+
}
|
362
|
+
span {
|
363
|
+
display: inline-block;
|
364
|
+
color: #757575;
|
365
|
+
letter-spacing: 1px;
|
366
|
+
text-transform: uppercase;
|
367
|
+
}
|
368
|
+
@media (min-width: 992px) {a {
|
369
|
+
// border-bottom: 2px solid transparent;
|
370
|
+
&:hover {
|
371
|
+
border-color: #000;
|
372
|
+
}
|
373
|
+
}
|
374
|
+
}
|
375
|
+
}
|
376
|
+
}
|
377
|
+
}
|
378
|
+
@keyframes bounce {0% {
|
379
|
+
transform: translate3d( 0, -1000px, 0 );
|
380
|
+
}
|
381
|
+
60% {
|
382
|
+
transform: translate3d( 0, 25px, 0 );
|
383
|
+
}
|
384
|
+
75% {
|
385
|
+
transform: translate3d( 0, -10px, 0 );
|
386
|
+
}
|
387
|
+
90% {
|
388
|
+
transform: translate3d( 0, 5px, 0 );
|
389
|
+
}
|
390
|
+
100% {
|
391
|
+
transform: none;
|
392
|
+
}
|
393
|
+
}
|
394
|
+
@-webkit-keyframes bounce {0% {
|
395
|
+
-webkit-transform: translate3d( 0, -1000px, 0 );
|
396
|
+
}
|
397
|
+
60% {
|
398
|
+
-webkit-transform: translate3d( 0, 25px, 0 );
|
399
|
+
}
|
400
|
+
75% {
|
401
|
+
-webkit-transform: translate3d( 0, -10px, 0 );
|
402
|
+
}
|
403
|
+
90% {
|
404
|
+
-webkit-transform: translate3d( 0, 5px, 0 );
|
405
|
+
}
|
406
|
+
100% {
|
407
|
+
-webkit-transform: none;
|
408
|
+
}
|
409
|
+
}
|
410
|
+
|
411
|
+
.c-navigation__menu {
|
412
|
+
display: inline-block;
|
413
|
+
text-transform: uppercase;
|
414
|
+
margin-right: $base-margin / 2;
|
415
|
+
margin-left: $base-margin / 2;
|
416
|
+
font-size: 14px;
|
417
|
+
font-weight: 600;
|
418
|
+
&:hover {
|
419
|
+
border-color: $primary-color !important;
|
420
|
+
}
|
421
|
+
}
|
422
|
+
|
423
|
+
.c-navigation__menu-link {
|
424
|
+
color: $primary-color;
|
425
|
+
}
|
426
|
+
|
427
|
+
.c-header {
|
428
|
+
text-align: center;
|
429
|
+
}
|
430
|
+
|
431
|
+
.c-header__title {
|
432
|
+
font-size: 30px;
|
433
|
+
font-weight: 100;
|
434
|
+
font-family: 'Roboto Slab';
|
435
|
+
margin-bottom: 0;
|
436
|
+
}
|
437
|
+
|
438
|
+
.c-header__subtitle {
|
439
|
+
color: gray;
|
440
|
+
font-size: 16px;
|
441
|
+
line-height: 1.5rem;
|
442
|
+
}
|
443
|
+
|
444
|
+
.c-header__link {
|
445
|
+
color: inherit;
|
446
|
+
font-weight: normal;
|
447
|
+
text-decoration: underline;
|
448
|
+
}
|
449
|
+
|
450
|
+
.o-text--block {
|
451
|
+
display: block;
|
452
|
+
}
|
453
|
+
|
454
|
+
.o-text--bold {
|
455
|
+
font-weight: 600;
|
456
|
+
}
|
457
|
+
|
458
|
+
.c-ul-in-default {
|
459
|
+
list-style-type: disc;
|
460
|
+
margin-left: 4rem;
|
461
|
+
}
|
462
|
+
|
463
|
+
.o-grid {
|
464
|
+
display: flex;
|
465
|
+
flex-flow: row nowrap;
|
466
|
+
}
|
467
|
+
|
468
|
+
.o-grid--center {
|
469
|
+
justify-content: center;
|
470
|
+
}
|
471
|
+
|
472
|
+
img.emoji {
|
473
|
+
margin: 0rem;
|
474
|
+
}
|
475
|
+
|
476
|
+
article .c-post-header {
|
477
|
+
margin-bottom: 3 * $base-margin;
|
478
|
+
}
|
479
|
+
|
480
|
+
.c-article-image {
|
481
|
+
width: 100%;
|
482
|
+
}
|
483
|
+
|
484
|
+
.c-article--post {
|
485
|
+
max-width: 650px;
|
486
|
+
|
487
|
+
}
|
488
|
+
|
489
|
+
.c-article__meta {
|
490
|
+
color: $gray;
|
491
|
+
}
|
492
|
+
|
493
|
+
.c-article__meta--link {
|
494
|
+
font-weight: inherit;
|
495
|
+
color: inherit;
|
496
|
+
|
497
|
+
&:hover {
|
498
|
+
text-decoration: underline;
|
499
|
+
color: inherit;
|
500
|
+
}
|
501
|
+
}
|
502
|
+
|
503
|
+
.c-post--highlighted {
|
504
|
+
// font-weight: 700;
|
505
|
+
}
|
506
|
+
|
507
|
+
.c-post-header__subtitle {
|
508
|
+
font-size: 1.2rem;
|
509
|
+
color: #555;
|
510
|
+
}
|
511
|
+
|
512
|
+
.c-bio {
|
513
|
+
text-align: center;
|
514
|
+
color: #777;
|
515
|
+
font-style: italic;
|
516
|
+
margin-top: 1rem;
|
517
|
+
p {
|
518
|
+
// color: #777;
|
519
|
+
}
|
520
|
+
}
|
521
|
+
|
522
|
+
.c-bio__avatar {
|
523
|
+
width: 70px;
|
524
|
+
height: 70px;
|
525
|
+
border-radius: 50%;
|
526
|
+
margin-right: 1rem;
|
527
|
+
}
|
528
|
+
|
529
|
+
.o-grid--align-items-center {
|
530
|
+
align-items: center;
|
531
|
+
}
|
532
|
+
|
533
|
+
.o-text--center {
|
534
|
+
text-align: center;
|
535
|
+
}
|
536
|
+
|
537
|
+
.c-image__alt {
|
538
|
+
font-weight: normal;
|
539
|
+
color: #777;
|
540
|
+
&:hover {
|
541
|
+
text-decoration: none;
|
542
|
+
}
|
543
|
+
}
|
544
|
+
|
545
|
+
a.phantom {
|
546
|
+
color: $gray;
|
547
|
+
text-decoration: none;
|
548
|
+
font-weight: 400;
|
549
|
+
|
550
|
+
&:hover {
|
551
|
+
color: $gray;
|
552
|
+
text-decoration: underline;
|
553
|
+
}
|
554
|
+
}
|
555
|
+
|
556
|
+
.post-year {
|
557
|
+
color: gray;
|
558
|
+
}
|
559
|
+
|
560
|
+
.c-post-header__player {
|
561
|
+
margin-top: 2rem;
|
562
|
+
color: red;
|
563
|
+
font-size: 1rem;
|
564
|
+
}
|
data/_sass/syntax.scss
ADDED
@@ -0,0 +1,68 @@
|
|
1
|
+
// Downloaded from http://jwarby.github.io/jekyll-pygments-themes/languages/javascript.html
|
2
|
+
|
3
|
+
code {
|
4
|
+
background-color: #f9f9f9;
|
5
|
+
color: #444;
|
6
|
+
}
|
7
|
+
|
8
|
+
.highlight .hll { background-color: #ffffcc }
|
9
|
+
.highlight .c { color: #0099FF; font-style: italic } /* Comment */
|
10
|
+
.highlight .err { color: #AA0000; background-color: #FFAAAA } /* Error */
|
11
|
+
.highlight .k { color: #006699; font-weight: bold } /* Keyword */
|
12
|
+
.highlight .o { color: #555555 } /* Operator */
|
13
|
+
.highlight .cm { color: #0099FF; font-style: italic } /* Comment.Multiline */
|
14
|
+
.highlight .cp { color: #009999 } /* Comment.Preproc */
|
15
|
+
.highlight .c1 { color: #0099FF; font-style: italic } /* Comment.Single */
|
16
|
+
.highlight .cs { color: #0099FF; font-weight: bold; font-style: italic } /* Comment.Special */
|
17
|
+
.highlight .gd { background-color: #FFCCCC; border: 1px solid #CC0000 } /* Generic.Deleted */
|
18
|
+
.highlight .ge { font-style: italic } /* Generic.Emph */
|
19
|
+
.highlight .gr { color: #FF0000 } /* Generic.Error */
|
20
|
+
.highlight .gh { color: #003300; font-weight: bold } /* Generic.Heading */
|
21
|
+
.highlight .gi { background-color: #CCFFCC; border: 1px solid #00CC00 } /* Generic.Inserted */
|
22
|
+
.highlight .go { color: #AAAAAA } /* Generic.Output */
|
23
|
+
.highlight .gp { color: #000099; font-weight: bold } /* Generic.Prompt */
|
24
|
+
.highlight .gs { font-weight: bold } /* Generic.Strong */
|
25
|
+
.highlight .gu { color: #003300; font-weight: bold } /* Generic.Subheading */
|
26
|
+
.highlight .gt { color: #99CC66 } /* Generic.Traceback */
|
27
|
+
.highlight .kc { color: #006699; font-weight: bold } /* Keyword.Constant */
|
28
|
+
.highlight .kd { color: #006699; font-weight: bold } /* Keyword.Declaration */
|
29
|
+
.highlight .kn { color: #006699; font-weight: bold } /* Keyword.Namespace */
|
30
|
+
.highlight .kp { color: #006699 } /* Keyword.Pseudo */
|
31
|
+
.highlight .kr { color: #006699; font-weight: bold } /* Keyword.Reserved */
|
32
|
+
.highlight .kt { color: #007788; font-weight: bold } /* Keyword.Type */
|
33
|
+
.highlight .m { color: #FF6600 } /* Literal.Number */
|
34
|
+
.highlight .s { color: #CC3300 } /* Literal.String */
|
35
|
+
.highlight .na { color: #330099 } /* Name.Attribute */
|
36
|
+
.highlight .nb { color: #336666 } /* Name.Builtin */
|
37
|
+
.highlight .nc { color: #00AA88; font-weight: bold } /* Name.Class */
|
38
|
+
.highlight .no { color: #336600 } /* Name.Constant */
|
39
|
+
.highlight .nd { color: #9999FF } /* Name.Decorator */
|
40
|
+
.highlight .ni { color: #999999; font-weight: bold } /* Name.Entity */
|
41
|
+
.highlight .ne { color: #CC0000; font-weight: bold } /* Name.Exception */
|
42
|
+
.highlight .nf { color: #CC00FF } /* Name.Function */
|
43
|
+
.highlight .nl { color: #9999FF } /* Name.Label */
|
44
|
+
.highlight .nn { color: #00CCFF; font-weight: bold } /* Name.Namespace */
|
45
|
+
.highlight .nt { color: #330099; font-weight: bold } /* Name.Tag */
|
46
|
+
.highlight .nv { color: #003333 } /* Name.Variable */
|
47
|
+
.highlight .ow { color: #000000; font-weight: bold } /* Operator.Word */
|
48
|
+
.highlight .w { color: #bbbbbb } /* Text.Whitespace */
|
49
|
+
.highlight .mf { color: #FF6600 } /* Literal.Number.Float */
|
50
|
+
.highlight .mh { color: #FF6600 } /* Literal.Number.Hex */
|
51
|
+
.highlight .mi { color: #FF6600 } /* Literal.Number.Integer */
|
52
|
+
.highlight .mo { color: #FF6600 } /* Literal.Number.Oct */
|
53
|
+
.highlight .sb { color: #CC3300 } /* Literal.String.Backtick */
|
54
|
+
.highlight .sc { color: #CC3300 } /* Literal.String.Char */
|
55
|
+
.highlight .sd { color: #CC3300; font-style: italic } /* Literal.String.Doc */
|
56
|
+
.highlight .s2 { color: #CC3300 } /* Literal.String.Double */
|
57
|
+
.highlight .se { color: #CC3300; font-weight: bold } /* Literal.String.Escape */
|
58
|
+
.highlight .sh { color: #CC3300 } /* Literal.String.Heredoc */
|
59
|
+
.highlight .si { color: #AA0000 } /* Literal.String.Interpol */
|
60
|
+
.highlight .sx { color: #CC3300 } /* Literal.String.Other */
|
61
|
+
.highlight .sr { color: #33AAAA } /* Literal.String.Regex */
|
62
|
+
.highlight .s1 { color: #CC3300 } /* Literal.String.Single */
|
63
|
+
.highlight .ss { color: #FFCC33 } /* Literal.String.Symbol */
|
64
|
+
.highlight .bp { color: #336666 } /* Name.Builtin.Pseudo */
|
65
|
+
.highlight .vc { color: #003333 } /* Name.Variable.Class */
|
66
|
+
.highlight .vg { color: #003333 } /* Name.Variable.Global */
|
67
|
+
.highlight .vi { color: #003333 } /* Name.Variable.Instance */
|
68
|
+
.highlight .il { color: #FF6600 } /* Literal.Number.Integer.Long */
|
data/assets/core.scss
ADDED
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -0,0 +1,32 @@
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
|
3
|
+
"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
|
4
|
+
<svg version="1.0" xmlns="http://www.w3.org/2000/svg"
|
5
|
+
width="512.000000pt" height="512.000000pt" viewBox="0 0 512.000000 512.000000"
|
6
|
+
preserveAspectRatio="xMidYMid meet">
|
7
|
+
<metadata>
|
8
|
+
Created by potrace 1.11, written by Peter Selinger 2001-2013
|
9
|
+
</metadata>
|
10
|
+
<g transform="translate(0.000000,512.000000) scale(0.100000,-0.100000)"
|
11
|
+
fill="#000000" stroke="none">
|
12
|
+
<path d="M3325 5074 c-82 -145 -115 -203 -137 -244 -14 -25 -76 -135 -138
|
13
|
+
-245 -62 -110 -124 -220 -138 -245 -14 -25 -97 -173 -185 -330 -88 -157 -169
|
14
|
+
-300 -179 -319 -11 -19 -31 -56 -45 -83 -14 -26 -28 -48 -32 -48 -4 0 -13 11
|
15
|
+
-18 23 -6 13 -147 266 -313 563 -384 686 -430 767 -440 777 -6 7 -243 -403
|
16
|
+
-375 -648 -33 -61 -260 -465 -284 -505 -11 -19 -35 -62 -53 -95 -18 -33 -37
|
17
|
+
-68 -43 -78 -34 -57 -235 -419 -235 -423 0 -2 29 -3 65 -2 36 2 65 0 65 -4 0
|
18
|
+
-3 -18 -38 -40 -77 -97 -171 -356 -633 -393 -701 -17 -30 -36 -64 -44 -75 -7
|
19
|
+
-11 -13 -23 -13 -27 0 -5 61 -8 135 -8 74 0 135 -2 135 -5 0 -2 -13 -27 -29
|
20
|
+
-54 -16 -27 -83 -146 -149 -263 -65 -117 -130 -233 -144 -258 -14 -25 -66
|
21
|
+
-117 -115 -205 l-90 -160 600 -3 c351 -1 603 -6 607 -11 4 -8 6 -373 1 -391 0
|
22
|
+
-3 -196 -5 -434 -5 -388 0 -438 -2 -495 -18 -139 -40 -254 -134 -314 -257 -52
|
23
|
+
-106 -57 -140 -58 -405 l-1 -245 2561 0 2560 0 0 243 c0 186 -4 257 -15 302
|
24
|
+
-48 181 -192 322 -380 370 -48 12 -137 15 -487 15 l-428 0 0 200 0 200 610 0
|
25
|
+
c336 0 610 2 610 5 0 3 -380 684 -529 948 -12 21 -19 41 -17 45 2 4 65 7 140
|
26
|
+
6 75 0 136 2 136 6 0 3 -48 92 -106 196 -129 229 -131 232 -288 514 l-126 225
|
27
|
+
71 3 c39 2 69 6 67 11 -3 8 -124 224 -586 1046 -173 308 -329 587 -347 620
|
28
|
+
-19 33 -47 84 -63 114 l-30 53 -27 -48z m-435 -3944 l0 -200 -175 -1 c-96 0
|
29
|
+
-276 -1 -400 -2 l-225 -2 -1 45 c-1 56 -1 330 0 348 1 9 88 12 401 12 l400 0
|
30
|
+
0 -200z"/>
|
31
|
+
</g>
|
32
|
+
</svg>
|
@@ -0,0 +1,19 @@
|
|
1
|
+
{
|
2
|
+
"name": "",
|
3
|
+
"short_name": "",
|
4
|
+
"icons": [
|
5
|
+
{
|
6
|
+
"src": "/android-chrome-192x192.png",
|
7
|
+
"sizes": "192x192",
|
8
|
+
"type": "image/png"
|
9
|
+
},
|
10
|
+
{
|
11
|
+
"src": "/android-chrome-512x512.png",
|
12
|
+
"sizes": "512x512",
|
13
|
+
"type": "image/png"
|
14
|
+
}
|
15
|
+
],
|
16
|
+
"theme_color": "#ffffff",
|
17
|
+
"background_color": "#ffffff",
|
18
|
+
"display": "standalone"
|
19
|
+
}
|
data/assets/logo.jpg
ADDED
Binary file
|
Binary file
|
metadata
ADDED
@@ -0,0 +1,113 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: forest-time-jekyll
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Claudiu Constantin
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2018-12-01 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.7'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '3.7'
|
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
|
+
- claudiu@fastmail.com
|
58
|
+
executables: []
|
59
|
+
extensions: []
|
60
|
+
extra_rdoc_files: []
|
61
|
+
files:
|
62
|
+
- LICENSE.md
|
63
|
+
- README.md
|
64
|
+
- _includes/footer.html
|
65
|
+
- _includes/head.html
|
66
|
+
- _includes/header.html
|
67
|
+
- _includes/image.html
|
68
|
+
- _includes/navigation.html
|
69
|
+
- _layouts/default.html
|
70
|
+
- _layouts/page.html
|
71
|
+
- _layouts/post.html
|
72
|
+
- _sass/_objects.image.scss
|
73
|
+
- _sass/_objects.text.scss
|
74
|
+
- _sass/main.scss
|
75
|
+
- _sass/syntax.scss
|
76
|
+
- assets/core.scss
|
77
|
+
- assets/favicon/android-chrome-192x192.png
|
78
|
+
- assets/favicon/android-chrome-512x512.png
|
79
|
+
- assets/favicon/apple-touch-icon.png
|
80
|
+
- assets/favicon/browserconfig.xml
|
81
|
+
- assets/favicon/favicon-16x16.png
|
82
|
+
- assets/favicon/favicon-32x32.png
|
83
|
+
- assets/favicon/favicon.ico
|
84
|
+
- assets/favicon/mstile-150x150.png
|
85
|
+
- assets/favicon/safari-pinned-tab.svg
|
86
|
+
- assets/favicon/site.webmanifest
|
87
|
+
- assets/logo.jpg
|
88
|
+
- assets/static/forest.jpg
|
89
|
+
homepage: https://github.com/claudiuconstantin/forest-time-jekyll/
|
90
|
+
licenses:
|
91
|
+
- MIT
|
92
|
+
metadata: {}
|
93
|
+
post_install_message:
|
94
|
+
rdoc_options: []
|
95
|
+
require_paths:
|
96
|
+
- lib
|
97
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
98
|
+
requirements:
|
99
|
+
- - ">="
|
100
|
+
- !ruby/object:Gem::Version
|
101
|
+
version: '0'
|
102
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
103
|
+
requirements:
|
104
|
+
- - ">="
|
105
|
+
- !ruby/object:Gem::Version
|
106
|
+
version: '0'
|
107
|
+
requirements: []
|
108
|
+
rubyforge_project:
|
109
|
+
rubygems_version: 2.7.6
|
110
|
+
signing_key:
|
111
|
+
specification_version: 4
|
112
|
+
summary: A simple theme for your static blog, fresh as a forest
|
113
|
+
test_files: []
|