prettydocs-jekyll 0.1.4 → 0.1.5
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 +5 -5
- data/_data/default/faqs.yml +24 -1
- data/_data/default/timeline.yml +2 -8
- data/_includes/_partials/social-buttons.html +4 -4
- data/_includes/_partials/toc.html +10 -9
- data/_includes/_sections/blog_post.html +2 -2
- data/_includes/_sections/cards.html +1 -1
- data/_includes/_sections/contact.html +3 -3
- data/_includes/_sections/faqs.html +1 -1
- data/_includes/_sections/timeline.html +38 -35
- data/_includes/_theme/footer.html +1 -1
- data/_includes/_theme/head.html +9 -4
- data/_includes/_theme/header.html +7 -3
- data/_includes/_theme/js.html +21 -6
- data/_layouts/default.html +1 -3
- data/_layouts/faqs.html +19 -5
- data/_layouts/page.html +17 -13
- data/_layouts/post.html +40 -2
- data/_sass/prettydocs-jekyll.scss +1 -18
- data/_sass/vendor/_prettydocs.scss +47 -0
- data/_sass/vendor/prettydocs/_base.scss +343 -0
- data/_sass/{partials → vendor/prettydocs}/_doc.scss +250 -24
- data/_sass/{partials/_contact.scss → vendor/prettydocs/_extra.scss} +2 -4
- data/_sass/{partials/_cards.scss → vendor/prettydocs/_landing.scss} +101 -6
- data/_sass/vendor/prettydocs/_mixins.scss +175 -0
- data/_sass/vendor/prettydocs/config.codekit3 +2439 -0
- data/assets/js/main.js +12 -28
- metadata +18 -26
- data/_sass/globals/_base.scss +0 -44
- data/_sass/globals/_mixins.scss +0 -175
- data/_sass/partials/_base.scss +0 -109
- data/_sass/partials/_buttons.scss +0 -97
- data/_sass/partials/_footer.scss +0 -8
- data/_sass/partials/_header.scss +0 -91
- data/_sass/partials/_helper.scss +0 -42
- data/_sass/partials/_landing.scss +0 -61
- data/_sass/partials/_post.scss +0 -32
- data/_sass/partials/_resources.scss +0 -10
- data/_sass/partials/_toc.scss +0 -163
data/_layouts/post.html
CHANGED
@@ -1,5 +1,43 @@
|
|
1
1
|
---
|
2
2
|
layout: default
|
3
3
|
---
|
4
|
-
|
5
|
-
|
4
|
+
{% include _utils/month date=page.date %}
|
5
|
+
<div class="doc-wrapper">
|
6
|
+
<div class="container">
|
7
|
+
<div id="doc-header" class="doc-header text-center">
|
8
|
+
<h1 class="doc-title" itemprop="name headline">
|
9
|
+
<i class="icon {{ page.icon | default: "fas fa-paper-plane" }}"></i>
|
10
|
+
{{ page.title | escape }}
|
11
|
+
</h1>
|
12
|
+
{% if page.author %}
|
13
|
+
<div class="meta">
|
14
|
+
Publicat de:
|
15
|
+
{% if page.author.first %}
|
16
|
+
{% for author in page.author %}
|
17
|
+
<i class="fas fa-user"></i>
|
18
|
+
<span itemprop="author" itemscope itemtype="http://schema.org/Person">
|
19
|
+
<span itemprop="name">{{ author }}</span>
|
20
|
+
</span>
|
21
|
+
{% endfor %}
|
22
|
+
{% else %}
|
23
|
+
<span itemprop="author" itemscope itemtype="http://schema.org/Person">
|
24
|
+
<span itemprop="name">{{ page.author }}</span>
|
25
|
+
</span>
|
26
|
+
{% endif %}
|
27
|
+
pe <i class="fas fa-clock"></i>
|
28
|
+
<time datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished">
|
29
|
+
{{ page.date | date: "%-d" }} {{ month }} {{ page.date | date: "%Y" }}
|
30
|
+
</time>
|
31
|
+
</div>
|
32
|
+
{% endif %}
|
33
|
+
</div><!--//doc-header-->
|
34
|
+
<div class="doc-body row">
|
35
|
+
<div class="doc-content col-md-9 col-12 order-1">
|
36
|
+
<div class="content-inner">
|
37
|
+
{{ content }}
|
38
|
+
</div>
|
39
|
+
</div>
|
40
|
+
{% include _partials/toc.html content=content maximum_level=4 %}
|
41
|
+
</div>
|
42
|
+
</div>
|
43
|
+
</div>
|
@@ -1,20 +1,3 @@
|
|
1
|
-
// Modules and Variables
|
2
|
-
@import "globals/base";
|
3
|
-
@import "globals/mixins";
|
4
|
-
@import "partials/helper";
|
5
|
-
|
6
|
-
// Sections
|
7
|
-
@import "partials/base";
|
8
|
-
@import "partials/buttons";
|
9
|
-
@import "partials/cards";
|
10
|
-
@import "partials/contact";
|
11
|
-
@import "partials/doc";
|
12
|
-
@import "partials/footer";
|
13
|
-
@import "partials/header";
|
14
|
-
@import "partials/landing";
|
15
|
-
@import "partials/post";
|
16
|
-
@import "partials/resources";
|
17
|
-
@import "partials/toc";
|
18
|
-
|
19
1
|
// 3rd Party
|
2
|
+
@import "vendor/prettydocs";
|
20
3
|
@import "vendor/timeline";
|
@@ -0,0 +1,47 @@
|
|
1
|
+
/*
|
2
|
+
* Template Name: PrettyDocs - Bootstrap 4 Template for documentations
|
3
|
+
* Version: 2.0
|
4
|
+
* Author: Xiaoying Riley
|
5
|
+
* Copyright: 3rd Wave Media
|
6
|
+
* Twitter: @3rdwave_themes
|
7
|
+
* License: Creative Commons Attribution 3.0 License
|
8
|
+
* Website: http://themes.3rdwavemedia.com/
|
9
|
+
*/
|
10
|
+
|
11
|
+
//*************************** Theme Colours ****************************/
|
12
|
+
// Define theme colour scheme
|
13
|
+
$color-primary: #40babd;
|
14
|
+
$color-green: #75c181;
|
15
|
+
$color-red: #f77b6b;
|
16
|
+
$color-blue: #58bbee;
|
17
|
+
$color-orange: #F88C30;
|
18
|
+
$color-pink: #EA5395;
|
19
|
+
$color-purple: #8A40A7;
|
20
|
+
|
21
|
+
|
22
|
+
$text-color: #494d55;
|
23
|
+
$text-color-secondary: lighten($text-color, 10%);
|
24
|
+
$text-grey: lighten($text-color-secondary, 25%);
|
25
|
+
$grey: lighten($text-color-secondary, 25%);
|
26
|
+
$light-grey: #c3c3c3;
|
27
|
+
$dark-grey: #666;
|
28
|
+
$black: #000;
|
29
|
+
$smoky-white: #f5f5f5;
|
30
|
+
$smoky-grey: #f9f9fb;
|
31
|
+
$divider: #f0f0f0;
|
32
|
+
|
33
|
+
$new: #60A823;
|
34
|
+
$error: #E65348;
|
35
|
+
$facebook: #3b5998;
|
36
|
+
$twitter: #55acee;
|
37
|
+
$google: #dd4b39;
|
38
|
+
$github: #444;
|
39
|
+
|
40
|
+
//*************************** Theme Styles ****************************/
|
41
|
+
// Import theme styles
|
42
|
+
@import "prettydocs/mixins";
|
43
|
+
@import "prettydocs/base";
|
44
|
+
@import "prettydocs/doc";
|
45
|
+
@import "prettydocs/landing";
|
46
|
+
|
47
|
+
@import "prettydocs/extra";
|
@@ -0,0 +1,343 @@
|
|
1
|
+
/* ======= Base ======= */
|
2
|
+
body {
|
3
|
+
font-family: 'Open Sans', arial, sans-serif;
|
4
|
+
color: $text-color;
|
5
|
+
font-size: 14px;
|
6
|
+
-webkit-font-smoothing: antialiased;
|
7
|
+
-moz-osx-font-smoothing: grayscale;
|
8
|
+
}
|
9
|
+
|
10
|
+
html, body {
|
11
|
+
height: 100%;
|
12
|
+
}
|
13
|
+
|
14
|
+
.page-wrapper {
|
15
|
+
min-height: 100%;
|
16
|
+
/* equal to footer height */
|
17
|
+
margin-bottom: -50px;
|
18
|
+
&:after {
|
19
|
+
content: "";
|
20
|
+
display: block;
|
21
|
+
height: 50px;
|
22
|
+
}
|
23
|
+
}
|
24
|
+
|
25
|
+
.footer {
|
26
|
+
height: 75px;
|
27
|
+
}
|
28
|
+
|
29
|
+
p {
|
30
|
+
line-height: 1.5;
|
31
|
+
}
|
32
|
+
|
33
|
+
a {
|
34
|
+
color: darken($color-primary, 5%);
|
35
|
+
@include transition (all 0.4s ease-in-out);
|
36
|
+
&:hover {
|
37
|
+
text-decoration: underline;
|
38
|
+
color: darken($color-primary, 10%);
|
39
|
+
}
|
40
|
+
&:focus {
|
41
|
+
text-decoration: none;
|
42
|
+
}
|
43
|
+
}
|
44
|
+
|
45
|
+
|
46
|
+
code {
|
47
|
+
background: #222;
|
48
|
+
color: #fff;
|
49
|
+
font-size: 14px;
|
50
|
+
font-weight: bold;
|
51
|
+
font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
|
52
|
+
padding:2px 8px;
|
53
|
+
padding-top: 4px;
|
54
|
+
display: inline-block;
|
55
|
+
}
|
56
|
+
|
57
|
+
.btn, a.btn {
|
58
|
+
@include transition (all 0.4s ease-in-out);
|
59
|
+
font-weight: 600;
|
60
|
+
font-size: 14px;
|
61
|
+
line-height: 1.5;
|
62
|
+
.svg-inline--fa {
|
63
|
+
margin-right: 5px;
|
64
|
+
position: relative;
|
65
|
+
top: -1px;
|
66
|
+
}
|
67
|
+
}
|
68
|
+
|
69
|
+
.btn-primary, a.btn-primary {
|
70
|
+
background: $color-primary;
|
71
|
+
border: 1px solid $color-primary;
|
72
|
+
color: #fff !important;
|
73
|
+
&:hover, &:focus, &:active, &.active, &.hover {
|
74
|
+
background: darken($color-primary, 5%);
|
75
|
+
color: #fff !important;
|
76
|
+
border: 1px solid darken($color-primary, 5%);
|
77
|
+
}
|
78
|
+
}
|
79
|
+
|
80
|
+
.btn-green, a.btn-green {
|
81
|
+
background: $color-green;
|
82
|
+
border: 1px solid $color-green;
|
83
|
+
color: #fff !important;
|
84
|
+
&:hover, &:focus, &:active, &.active, &.hover {
|
85
|
+
background: darken($color-green, 5%);
|
86
|
+
color: #fff !important;
|
87
|
+
border: 1px solid darken($color-green, 5%);
|
88
|
+
}
|
89
|
+
.body-green & {
|
90
|
+
color: #fff !important;
|
91
|
+
&:hover, &:focus, &:active, &.active, &.hover {
|
92
|
+
color: #fff !important;
|
93
|
+
}
|
94
|
+
}
|
95
|
+
}
|
96
|
+
|
97
|
+
.btn-blue, a.btn-blue {
|
98
|
+
background: $color-blue;
|
99
|
+
border: 1px solid $color-blue;
|
100
|
+
color: #fff !important;
|
101
|
+
&:hover, &:focus, &:active, &.active, &.hover {
|
102
|
+
background: darken($color-blue, 5%);
|
103
|
+
color: #fff !important;
|
104
|
+
border: 1px solid darken($color-blue, 5%);
|
105
|
+
}
|
106
|
+
}
|
107
|
+
|
108
|
+
.btn-orange, a.btn-orange {
|
109
|
+
background: $color-orange;
|
110
|
+
border: 1px solid $color-orange;
|
111
|
+
color: #fff !important;
|
112
|
+
&:hover, &:focus, &:active, &.active, &.hover {
|
113
|
+
background: darken($color-orange, 5%);
|
114
|
+
color: #fff !important;
|
115
|
+
border: 1px solid darken($color-orange, 5%);
|
116
|
+
}
|
117
|
+
}
|
118
|
+
|
119
|
+
.btn-red, a.btn-red {
|
120
|
+
background: $color-red;
|
121
|
+
border: 1px solid $color-red;
|
122
|
+
color: #fff !important;
|
123
|
+
&:hover, &:focus, &:active, &.active, &.hover {
|
124
|
+
background: darken($color-red, 5%);
|
125
|
+
color: #fff !important;
|
126
|
+
border: 1px solid darken($color-red, 5%);
|
127
|
+
}
|
128
|
+
}
|
129
|
+
|
130
|
+
.btn-pink, a.btn-pink {
|
131
|
+
background: $color-pink;
|
132
|
+
border: 1px solid $color-pink;
|
133
|
+
color: #fff !important;
|
134
|
+
&:hover, &:focus, &:active, &.active, &.hover {
|
135
|
+
background: darken($color-pink, 5%);
|
136
|
+
color: #fff !important;
|
137
|
+
border: 1px solid darken($color-pink, 5%);
|
138
|
+
}
|
139
|
+
|
140
|
+
}
|
141
|
+
|
142
|
+
.btn-purple, a.btn-purple {
|
143
|
+
background: $color-purple;
|
144
|
+
border: 1px solid $color-purple;
|
145
|
+
color: #fff !important;
|
146
|
+
&:hover, &:focus, &:active, &.active, &.hover {
|
147
|
+
background: darken($color-purple, 5%);
|
148
|
+
color: #fff !important;
|
149
|
+
border: 1px solid darken($color-purple, 5%);
|
150
|
+
}
|
151
|
+
}
|
152
|
+
|
153
|
+
.btn-cta {
|
154
|
+
padding: 7px 15px;
|
155
|
+
}
|
156
|
+
|
157
|
+
.search-btn {
|
158
|
+
height: 40px;
|
159
|
+
.svg-inline--fa {
|
160
|
+
top: 0;
|
161
|
+
margin-right: 0;
|
162
|
+
}
|
163
|
+
}
|
164
|
+
|
165
|
+
.form-control {
|
166
|
+
@include box-shadow(none);
|
167
|
+
height: 40px;
|
168
|
+
border-color: $divider;
|
169
|
+
@include placeholder(lighten($grey, 5%));
|
170
|
+
&:focus {
|
171
|
+
border-color: darken($divider, 5%);
|
172
|
+
@include box-shadow(none);
|
173
|
+
}
|
174
|
+
}
|
175
|
+
|
176
|
+
input[type="text"],
|
177
|
+
input[type="email"],
|
178
|
+
input[type="password"],
|
179
|
+
input[type="submit"],
|
180
|
+
input[type="button"],
|
181
|
+
textarea,
|
182
|
+
select {
|
183
|
+
appearance: none; /* for mobile safari */
|
184
|
+
-webkit-appearance: none;
|
185
|
+
}
|
186
|
+
|
187
|
+
/* ====== Header ====== */
|
188
|
+
.header {
|
189
|
+
background: $text-color;
|
190
|
+
color: rgba(256, 256, 256, 0.85);
|
191
|
+
border-top: 5px solid $color-primary;
|
192
|
+
padding: 30px 0;
|
193
|
+
a {
|
194
|
+
color: #fff;
|
195
|
+
}
|
196
|
+
.container {
|
197
|
+
position: relative;
|
198
|
+
}
|
199
|
+
}
|
200
|
+
.branding {
|
201
|
+
text-transform: uppercase;
|
202
|
+
margin-bottom: 10px;
|
203
|
+
|
204
|
+
.logo {
|
205
|
+
font-size: 28px;
|
206
|
+
margin-top: 0;
|
207
|
+
margin-bottom: 0;
|
208
|
+
a {
|
209
|
+
text-decoration: none;
|
210
|
+
}
|
211
|
+
}
|
212
|
+
.text-highlight {
|
213
|
+
color: $color-primary;
|
214
|
+
.body-green & {
|
215
|
+
color: $color-green;
|
216
|
+
}
|
217
|
+
.body-blue & {
|
218
|
+
color: $color-blue;
|
219
|
+
}
|
220
|
+
.body-orange & {
|
221
|
+
color: $color-orange;
|
222
|
+
}
|
223
|
+
.body-red & {
|
224
|
+
color: $color-red;
|
225
|
+
}
|
226
|
+
.body-pink & {
|
227
|
+
color: $color-pink;
|
228
|
+
}
|
229
|
+
.body-purple & {
|
230
|
+
color: $color-purple;
|
231
|
+
}
|
232
|
+
}
|
233
|
+
.text-bold {
|
234
|
+
font-weight: 800;
|
235
|
+
color: #fff;
|
236
|
+
}
|
237
|
+
.icon {
|
238
|
+
font-size: 24px;
|
239
|
+
color: $color-primary;
|
240
|
+
.body-green & {
|
241
|
+
color: $color-green;
|
242
|
+
}
|
243
|
+
.body-blue & {
|
244
|
+
color: $color-blue;
|
245
|
+
}
|
246
|
+
.body-orange & {
|
247
|
+
color: $color-orange;
|
248
|
+
}
|
249
|
+
.body-red & {
|
250
|
+
color: $color-red;
|
251
|
+
}
|
252
|
+
.body-pink & {
|
253
|
+
color: $color-pink;
|
254
|
+
}
|
255
|
+
.body-purple & {
|
256
|
+
color: $color-purple;
|
257
|
+
}
|
258
|
+
}
|
259
|
+
}
|
260
|
+
|
261
|
+
.breadcrumb {
|
262
|
+
background: none;
|
263
|
+
margin-bottom: 0;
|
264
|
+
padding: 0;
|
265
|
+
li {
|
266
|
+
color: rgba(256, 256, 256, 0.5);
|
267
|
+
&.active {
|
268
|
+
color: rgba(256, 256, 256, 0.5);
|
269
|
+
}
|
270
|
+
a {
|
271
|
+
color: rgba(256, 256, 256, 0.5);
|
272
|
+
&:hover {
|
273
|
+
color: #fff;
|
274
|
+
}
|
275
|
+
}
|
276
|
+
}
|
277
|
+
|
278
|
+
}
|
279
|
+
|
280
|
+
.breadcrumb>li+li:before {
|
281
|
+
color: rgba(0, 0, 0, 0.4);
|
282
|
+
}
|
283
|
+
|
284
|
+
|
285
|
+
|
286
|
+
|
287
|
+
.search-form {
|
288
|
+
position: relative;
|
289
|
+
.search-input {
|
290
|
+
font-size: 14px;
|
291
|
+
@include border-radius(20px);
|
292
|
+
padding-top: 4px;
|
293
|
+
&:focus {
|
294
|
+
border-color: $text-color-secondary;
|
295
|
+
}
|
296
|
+
}
|
297
|
+
.search-btn {
|
298
|
+
color: lighten($text-color-secondary, 10%);
|
299
|
+
background: none;
|
300
|
+
border: none;
|
301
|
+
position: absolute;
|
302
|
+
right: 5px;
|
303
|
+
top: 0px;
|
304
|
+
margin-right: 0;
|
305
|
+
&:active, &:focus, &:hover {
|
306
|
+
outline: none !important;
|
307
|
+
color: darken($text-color, 10%);
|
308
|
+
|
309
|
+
}
|
310
|
+
|
311
|
+
}
|
312
|
+
}
|
313
|
+
|
314
|
+
.top-search-box {
|
315
|
+
position: absolute;
|
316
|
+
right: 15px;
|
317
|
+
top: 15px;
|
318
|
+
}
|
319
|
+
|
320
|
+
/* ====== Footer ====== */
|
321
|
+
.footer {
|
322
|
+
background: darken($text-color, 15%);
|
323
|
+
color: rgba(256, 256, 256, 0.6);
|
324
|
+
padding: 15px 0;
|
325
|
+
a {
|
326
|
+
color: $color-primary;
|
327
|
+
}
|
328
|
+
.fa-heart {
|
329
|
+
color: $color-pink;
|
330
|
+
}
|
331
|
+
}
|
332
|
+
|
333
|
+
|
334
|
+
// Extra small devices (portrait phones, less than 576px)
|
335
|
+
@media (max-width: 575.98px) {
|
336
|
+
.top-search-box {
|
337
|
+
width: 100%;
|
338
|
+
position: static;
|
339
|
+
margin-top: 15px;
|
340
|
+
|
341
|
+
}
|
342
|
+
|
343
|
+
}
|