beautiful-jekyll-theme 1.1.1 → 2.0.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 +5 -5
- data/404.html +13 -0
- data/{LICENSE.txt → LICENSE} +14 -5
- data/README.md +207 -203
- data/_data/ui-text.yml +494 -0
- data/_includes/comments.html +6 -0
- data/_includes/disqus.html +16 -14
- data/_includes/ext-css.html +7 -0
- data/_includes/ext-js.html +7 -0
- data/_includes/fb-comment.html +14 -0
- data/_includes/footer-minimal.html +6 -7
- data/_includes/footer-scripts.html +14 -16
- data/_includes/footer.html +23 -168
- data/_includes/google_analytics.html +13 -11
- data/_includes/gtag.html +11 -0
- data/_includes/gtm_body.html +6 -0
- data/_includes/gtm_head.html +9 -0
- data/_includes/head.html +41 -19
- data/_includes/header.html +37 -29
- data/_includes/matomo.html +17 -0
- data/_includes/nav.html +21 -23
- data/_includes/readtime.html +16 -0
- data/_includes/social-networks-links.html +207 -0
- data/_includes/social-share.html +25 -22
- data/_includes/staticman-comment.html +22 -0
- data/_includes/staticman-comments.html +83 -0
- data/_includes/utterances-comment.html +13 -0
- data/_layouts/base.html +4 -2
- data/_layouts/default.html +1 -1
- data/_layouts/home.html +75 -0
- data/_layouts/minimal.html +3 -3
- data/_layouts/page.html +1 -5
- data/_layouts/post.html +35 -11
- data/assets/css/main.css +233 -74
- data/assets/css/normalize.css +1 -1
- data/assets/css/pygment_highlights.css +0 -5
- data/assets/css/staticman.css +180 -0
- data/assets/img/404-southpark.jpg +0 -0
- data/assets/img/avatar-icon.png +0 -0
- data/assets/img/bgimage.png +0 -0
- data/assets/img/hello_world.jpeg +0 -0
- data/assets/img/install-steps.gif +0 -0
- data/assets/img/path.jpg +0 -0
- data/assets/js/main.js +21 -19
- data/assets/js/staticman.js +54 -0
- data/{assets/feed.xml → feed.xml} +8 -4
- data/tags.html +36 -0
- metadata +53 -17
- data/_includes/navbarlink.html +0 -16
- data/_layouts/tag_index.html +0 -41
data/assets/css/normalize.css
CHANGED
|
@@ -59,8 +59,3 @@
|
|
|
59
59
|
.highlight .vg { color: #008080 } /* Name.Variable.Global */
|
|
60
60
|
.highlight .vi { color: #008080 } /* Name.Variable.Instance */
|
|
61
61
|
.highlight .il { color: #009999 } /* Literal.Number.Integer.Long */
|
|
62
|
-
|
|
63
|
-
/* Make line numbers unselectable: excludes line numbers from copy-paste user ops */
|
|
64
|
-
.highlight .lineno {color:rgba(0,0,0,0.3);padding: 0 10px;-webkit-user-select: none;-moz-user-select: none; -o-user-select: none;}
|
|
65
|
-
.lineno::-moz-selection {background-color: transparent;} /* Mozilla specific */
|
|
66
|
-
.lineno::selection {background-color: transparent;} /* Other major browsers */
|
|
@@ -0,0 +1,180 @@
|
|
|
1
|
+
/* ==========================================================================
|
|
2
|
+
Forms
|
|
3
|
+
========================================================================== */
|
|
4
|
+
.staticman-comments form {
|
|
5
|
+
margin: 0 0 5px 0;
|
|
6
|
+
padding: 1em;
|
|
7
|
+
background-color: #f2f3f3;
|
|
8
|
+
}
|
|
9
|
+
.staticman-comments form p {
|
|
10
|
+
margin-bottom: 2.5px;
|
|
11
|
+
}
|
|
12
|
+
.staticman-comments form br {
|
|
13
|
+
display: none;
|
|
14
|
+
}
|
|
15
|
+
.staticman-comments label, .staticman-comments input, .staticman-comments button, .staticman-comments textarea {
|
|
16
|
+
vertical-align: baseline;
|
|
17
|
+
vertical-align: middle;
|
|
18
|
+
}
|
|
19
|
+
.staticman-comments input, .staticman-comments button, .staticman-comments textarea {
|
|
20
|
+
box-sizing: border-box;
|
|
21
|
+
}
|
|
22
|
+
.staticman-comments label {
|
|
23
|
+
display: block;
|
|
24
|
+
margin-bottom: 0.25em;
|
|
25
|
+
color: #494e52;
|
|
26
|
+
cursor: pointer;
|
|
27
|
+
}
|
|
28
|
+
.staticman-comments label small {
|
|
29
|
+
font-size: 0.75em;
|
|
30
|
+
}
|
|
31
|
+
.staticman-comments label input, .staticman-comments label textarea {
|
|
32
|
+
display: block;
|
|
33
|
+
}
|
|
34
|
+
.staticman-comments input, .staticman-comments textarea {
|
|
35
|
+
display: inline-block;
|
|
36
|
+
width: 100%;
|
|
37
|
+
padding: 0.25em;
|
|
38
|
+
margin-bottom: 0.5em;
|
|
39
|
+
color: #494e52;
|
|
40
|
+
background-color: #fff;
|
|
41
|
+
border: #f2f3f3;
|
|
42
|
+
border-radius: 4px;
|
|
43
|
+
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.125);
|
|
44
|
+
}
|
|
45
|
+
.staticman-comments .input-mini {
|
|
46
|
+
width: 60px;
|
|
47
|
+
}
|
|
48
|
+
.staticman-comments .input-small {
|
|
49
|
+
width: 90px;
|
|
50
|
+
}
|
|
51
|
+
.staticman-comments input[type="button"], .staticman-comments input[type="reset"], .staticman-comments input[type="submit"] {
|
|
52
|
+
width: auto;
|
|
53
|
+
height: auto;
|
|
54
|
+
cursor: pointer;
|
|
55
|
+
overflow: visible;
|
|
56
|
+
}
|
|
57
|
+
.staticman-comments textarea {
|
|
58
|
+
resize: vertical;
|
|
59
|
+
height: auto;
|
|
60
|
+
overflow: auto;
|
|
61
|
+
vertical-align: top;
|
|
62
|
+
}
|
|
63
|
+
.staticman-comments input[type="hidden"] {
|
|
64
|
+
display: none;
|
|
65
|
+
}
|
|
66
|
+
.staticman-comments .form {
|
|
67
|
+
position: relative;
|
|
68
|
+
}
|
|
69
|
+
/*
|
|
70
|
+
Focus & active state
|
|
71
|
+
========================================================================== */
|
|
72
|
+
.staticman-comments input:focus, .staticman-comments textarea:focus {
|
|
73
|
+
border-color: #7a8288;
|
|
74
|
+
outline: 0;
|
|
75
|
+
outline: thin dotted \9;
|
|
76
|
+
box-shadow: inset 0 1px 3px rgba(73, 78, 82, 0.06), 0 0 5px rgba(122, 130, 136, 0.7);
|
|
77
|
+
}
|
|
78
|
+
.staticman-comments input[type="file"]:focus, .staticman-comments input[type="radio"]:focus, .staticman-comments input[type="checkbox"]:focus:focus {
|
|
79
|
+
box-shadow: none;
|
|
80
|
+
}
|
|
81
|
+
/*
|
|
82
|
+
Help text
|
|
83
|
+
========================================================================== */
|
|
84
|
+
.staticman-comments .help-block {
|
|
85
|
+
color: #898c8e;
|
|
86
|
+
}
|
|
87
|
+
.staticman-comments .help-block {
|
|
88
|
+
display: block;
|
|
89
|
+
margin-bottom: 1em;
|
|
90
|
+
line-height: 1em;
|
|
91
|
+
}
|
|
92
|
+
/*
|
|
93
|
+
.form-group
|
|
94
|
+
========================================================================== */
|
|
95
|
+
.staticman-comments .form-group {
|
|
96
|
+
margin-bottom: 5px;
|
|
97
|
+
padding: 0;
|
|
98
|
+
border-width: 0;
|
|
99
|
+
}
|
|
100
|
+
/*
|
|
101
|
+
Comments
|
|
102
|
+
========================================================================== */
|
|
103
|
+
.staticman-comments .page__comments {
|
|
104
|
+
float: left;
|
|
105
|
+
margin-left: 0;
|
|
106
|
+
margin-right: 0;
|
|
107
|
+
width: 100%;
|
|
108
|
+
clear: both;
|
|
109
|
+
}
|
|
110
|
+
.staticman-comments .page__comments-title {
|
|
111
|
+
margin-top: 2rem;
|
|
112
|
+
margin-bottom: 10px;
|
|
113
|
+
padding-top: 2rem;
|
|
114
|
+
border-top: 1px solid #f2f3f3;
|
|
115
|
+
}
|
|
116
|
+
.staticman-comments .page__comments-form {
|
|
117
|
+
-webkit-transition: all 0.2s ease-in-out;
|
|
118
|
+
transition: all 0.2s ease-in-out;
|
|
119
|
+
}
|
|
120
|
+
.staticman-comments .page__comments-form.disabled input, .staticman-comments .page__comments-form.disabled button, .staticman-comments .page__comments-form.disabled textarea, .staticman-comments .page__comments-form.disabled label {
|
|
121
|
+
pointer-events: none;
|
|
122
|
+
cursor: not-allowed;
|
|
123
|
+
filter: alpha(opacity=65);
|
|
124
|
+
box-shadow: none;
|
|
125
|
+
opacity: 0.65;
|
|
126
|
+
}
|
|
127
|
+
.staticman-comments .comment {
|
|
128
|
+
margin: 1em 0;
|
|
129
|
+
}
|
|
130
|
+
.staticman-comments .comment:not(:last-child) {
|
|
131
|
+
border-bottom: 1px solid #f2f3f3;
|
|
132
|
+
}
|
|
133
|
+
.staticman-comments .comment__avatar-wrapper {
|
|
134
|
+
float: left;
|
|
135
|
+
width: 60px;
|
|
136
|
+
height: 60px;
|
|
137
|
+
}
|
|
138
|
+
.staticman-comments .comment__avatar {
|
|
139
|
+
width: 40px;
|
|
140
|
+
height: 40px;
|
|
141
|
+
border-radius: 50%;
|
|
142
|
+
}
|
|
143
|
+
.staticman-comments .comment__content-wrapper {
|
|
144
|
+
width: calc(100% - 60px);
|
|
145
|
+
}
|
|
146
|
+
.staticman-comments .comment__author {
|
|
147
|
+
margin: 0;
|
|
148
|
+
}
|
|
149
|
+
.staticman-comments .comment__author a {
|
|
150
|
+
text-decoration: none;
|
|
151
|
+
}
|
|
152
|
+
.staticman-comments .comment__date {
|
|
153
|
+
margin: 0;
|
|
154
|
+
}
|
|
155
|
+
.staticman-comments .comment__date a {
|
|
156
|
+
text-decoration: none;
|
|
157
|
+
}
|
|
158
|
+
/* ==========================================================================
|
|
159
|
+
PRINT STYLES
|
|
160
|
+
========================================================================== */
|
|
161
|
+
.staticman-comments @media print {
|
|
162
|
+
/*
|
|
163
|
+
Hide the following elements on print
|
|
164
|
+
========================================================================== */
|
|
165
|
+
.staticman-comments [hidden] {
|
|
166
|
+
display: none;
|
|
167
|
+
}
|
|
168
|
+
.staticman-comments .masthead, .staticman-comments .toc, .staticman-comments .page__share, .staticman-comments .page__related, .staticman-comments .pagination, .staticman-comments .ads, .staticman-comments .page__footer, .staticman-comments .page__comments-form, .staticman-comments .author__avatar, .staticman-comments .author__content, .staticman-comments .author__urls-wrapper, .staticman-comments .nav__list, .staticman-comments .sidebar, .staticman-comments .adsbygoogle {
|
|
169
|
+
display: none !important;
|
|
170
|
+
height: 1px !important;
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
/*
|
|
174
|
+
Post pagination navigation links
|
|
175
|
+
========================================================================== */
|
|
176
|
+
.staticman-comments .page__comments + .staticman-comments .pagination {
|
|
177
|
+
margin-top: 2em;
|
|
178
|
+
padding-top: 2em;
|
|
179
|
+
border-top: 1px solid #f2f3f3;
|
|
180
|
+
}
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
data/assets/img/path.jpg
ADDED
|
Binary file
|
data/assets/js/main.js
CHANGED
|
@@ -10,11 +10,13 @@ var main = {
|
|
|
10
10
|
$(window).scroll(function() {
|
|
11
11
|
if ($(".navbar").offset().top > 50) {
|
|
12
12
|
$(".navbar").addClass("top-nav-short");
|
|
13
|
+
$(".navbar-custom .avatar-container").fadeOut(500);
|
|
13
14
|
} else {
|
|
14
15
|
$(".navbar").removeClass("top-nav-short");
|
|
16
|
+
$(".navbar-custom .avatar-container").fadeIn(500);
|
|
15
17
|
}
|
|
16
18
|
});
|
|
17
|
-
|
|
19
|
+
|
|
18
20
|
// On mobile, hide the avatar when expanding the navbar menu
|
|
19
21
|
$('#main-navbar').on('show.bs.collapse', function () {
|
|
20
22
|
$(".navbar").addClass("top-nav-expanded");
|
|
@@ -22,7 +24,7 @@ var main = {
|
|
|
22
24
|
$('#main-navbar').on('hidden.bs.collapse', function () {
|
|
23
25
|
$(".navbar").removeClass("top-nav-expanded");
|
|
24
26
|
});
|
|
25
|
-
|
|
27
|
+
|
|
26
28
|
// On mobile, when clicking on a multi-level navbar menu, show the child links
|
|
27
29
|
$('#main-navbar').on("click", ".navlinks-parent", function(e) {
|
|
28
30
|
var target = e.target;
|
|
@@ -34,7 +36,7 @@ var main = {
|
|
|
34
36
|
}
|
|
35
37
|
});
|
|
36
38
|
});
|
|
37
|
-
|
|
39
|
+
|
|
38
40
|
// Ensure nested navbar menus are not longer than the menu header
|
|
39
41
|
var menus = $(".navlinks-container");
|
|
40
42
|
if (menus.length > 0) {
|
|
@@ -60,12 +62,12 @@ var main = {
|
|
|
60
62
|
});
|
|
61
63
|
|
|
62
64
|
fakeMenu.remove();
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
// show the big header image
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
// show the big header image
|
|
66
68
|
main.initImgs();
|
|
67
69
|
},
|
|
68
|
-
|
|
70
|
+
|
|
69
71
|
initImgs : function() {
|
|
70
72
|
// If the page was large images to randomly select from, choose an image
|
|
71
73
|
if ($("#header-big-imgs").length > 0) {
|
|
@@ -78,57 +80,57 @@ var main = {
|
|
|
78
80
|
var src = imgInfo.src;
|
|
79
81
|
var desc = imgInfo.desc;
|
|
80
82
|
main.setImg(src, desc);
|
|
81
|
-
|
|
83
|
+
|
|
82
84
|
// For better UX, prefetch the next image so that it will already be loaded when we want to show it
|
|
83
85
|
var getNextImg = function() {
|
|
84
86
|
var imgInfo = main.getImgInfo();
|
|
85
87
|
var src = imgInfo.src;
|
|
86
|
-
var desc = imgInfo.desc;
|
|
87
|
-
|
|
88
|
+
var desc = imgInfo.desc;
|
|
89
|
+
|
|
88
90
|
var prefetchImg = new Image();
|
|
89
91
|
prefetchImg.src = src;
|
|
90
92
|
// if I want to do something once the image is ready: `prefetchImg.onload = function(){}`
|
|
91
|
-
|
|
93
|
+
|
|
92
94
|
setTimeout(function(){
|
|
93
95
|
var img = $("<div></div>").addClass("big-img-transition").css("background-image", 'url(' + src + ')');
|
|
94
96
|
$(".intro-header.big-img").prepend(img);
|
|
95
97
|
setTimeout(function(){ img.css("opacity", "1"); }, 50);
|
|
96
|
-
|
|
98
|
+
|
|
97
99
|
// after the animation of fading in the new image is done, prefetch the next one
|
|
98
100
|
//img.one("transitioned webkitTransitionEnd oTransitionEnd MSTransitionEnd", function(){
|
|
99
101
|
setTimeout(function() {
|
|
100
102
|
main.setImg(src, desc);
|
|
101
103
|
img.remove();
|
|
102
104
|
getNextImg();
|
|
103
|
-
}, 1000);
|
|
104
|
-
//});
|
|
105
|
+
}, 1000);
|
|
106
|
+
//});
|
|
105
107
|
}, 6000);
|
|
106
108
|
};
|
|
107
|
-
|
|
109
|
+
|
|
108
110
|
// If there are multiple images, cycle through them
|
|
109
111
|
if (main.numImgs > 1) {
|
|
110
112
|
getNextImg();
|
|
111
113
|
}
|
|
112
114
|
}
|
|
113
115
|
},
|
|
114
|
-
|
|
116
|
+
|
|
115
117
|
getImgInfo : function() {
|
|
116
118
|
var randNum = Math.floor((Math.random() * main.numImgs) + 1);
|
|
117
119
|
var src = main.bigImgEl.attr("data-img-src-" + randNum);
|
|
118
120
|
var desc = main.bigImgEl.attr("data-img-desc-" + randNum);
|
|
119
|
-
|
|
121
|
+
|
|
120
122
|
return {
|
|
121
123
|
src : src,
|
|
122
124
|
desc : desc
|
|
123
125
|
}
|
|
124
126
|
},
|
|
125
|
-
|
|
127
|
+
|
|
126
128
|
setImg : function(src, desc) {
|
|
127
129
|
$(".intro-header.big-img").css("background-image", 'url(' + src + ')');
|
|
128
130
|
if (typeof desc !== typeof undefined && desc !== false) {
|
|
129
131
|
$(".img-desc").text(desc).show();
|
|
130
132
|
} else {
|
|
131
|
-
$(".img-desc").hide();
|
|
133
|
+
$(".img-desc").hide();
|
|
132
134
|
}
|
|
133
135
|
}
|
|
134
136
|
};
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
---
|
|
2
|
+
layout: null
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
(function ($) {
|
|
6
|
+
var $comments = $('.js-comments');
|
|
7
|
+
|
|
8
|
+
$('#new_comment').submit(function () {
|
|
9
|
+
var form = this;
|
|
10
|
+
|
|
11
|
+
$(form).addClass('disabled');
|
|
12
|
+
|
|
13
|
+
{% assign sm = site.staticman -%}
|
|
14
|
+
var endpoint = '{{ sm.endpoint | default: "https://staticman3.herokuapp.com/v3/entry/github/" }}';
|
|
15
|
+
var repository = '{{ sm.repository }}';
|
|
16
|
+
var branch = '{{ sm.branch }}';
|
|
17
|
+
|
|
18
|
+
$.ajax({
|
|
19
|
+
type: $(this).attr('method'),
|
|
20
|
+
url: endpoint + repository + '/' + branch + '/comments',
|
|
21
|
+
data: $(this).serialize(),
|
|
22
|
+
contentType: 'application/x-www-form-urlencoded',
|
|
23
|
+
success: function (data) {
|
|
24
|
+
$('#comment-form-submit').addClass('hidden');
|
|
25
|
+
$('#comment-form-submitted').removeClass('hidden');
|
|
26
|
+
$('.page__comments-form .js-notice').removeClass('notice--danger');
|
|
27
|
+
$('.page__comments-form .js-notice').addClass('notice--success');
|
|
28
|
+
showAlert('success');
|
|
29
|
+
},
|
|
30
|
+
error: function (err) {
|
|
31
|
+
console.log(err);
|
|
32
|
+
$('#comment-form-submitted').addClass('hidden');
|
|
33
|
+
$('#comment-form-submit').removeClass('hidden');
|
|
34
|
+
$('.page__comments-form .js-notice').removeClass('notice--success');
|
|
35
|
+
$('.page__comments-form .js-notice').addClass('notice--danger');
|
|
36
|
+
showAlert('failure');
|
|
37
|
+
$(form).removeClass('disabled');
|
|
38
|
+
}
|
|
39
|
+
});
|
|
40
|
+
|
|
41
|
+
return false;
|
|
42
|
+
});
|
|
43
|
+
|
|
44
|
+
function showAlert(message) {
|
|
45
|
+
$('.page__comments-form .js-notice').removeClass('hidden');
|
|
46
|
+
if (message == 'success') {
|
|
47
|
+
$('.page__comments-form .js-notice-text-success').removeClass('hidden');
|
|
48
|
+
$('.page__comments-form .js-notice-text-failure').addClass('hidden');
|
|
49
|
+
} else {
|
|
50
|
+
$('.page__comments-form .js-notice-text-success').addClass('hidden');
|
|
51
|
+
$('.page__comments-form .js-notice-text-failure').removeClass('hidden');
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
})(jQuery);
|
|
@@ -4,10 +4,14 @@ layout: null
|
|
|
4
4
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
5
5
|
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
|
6
6
|
<channel>
|
|
7
|
+
{% if site.title %}
|
|
7
8
|
<title>{{ site.title | xml_escape }}</title>
|
|
9
|
+
{% endif %}
|
|
10
|
+
{% if site.description %}
|
|
8
11
|
<description>{{ site.description | xml_escape }}</description>
|
|
9
|
-
|
|
10
|
-
<
|
|
12
|
+
{% endif %}
|
|
13
|
+
<link>{{ '' | absolute_url }}</link>
|
|
14
|
+
<atom:link href="{{ 'feed.xml' | absolute_url }}" rel="self" type="application/rss+xml" />
|
|
11
15
|
{% for post in site.posts limit:20 %}
|
|
12
16
|
<item>
|
|
13
17
|
<title>{{ post.title | xml_escape }}</title>
|
|
@@ -16,8 +20,8 @@ layout: null
|
|
|
16
20
|
{{ post.content | strip_html | xml_escape | truncatewords: 50 }}
|
|
17
21
|
</description>
|
|
18
22
|
<pubDate>{{ post.date | date: "%a, %d %b %Y %H:%M:%S %z" }}</pubDate>
|
|
19
|
-
<link>{{
|
|
20
|
-
<guid isPermaLink="true">{{
|
|
23
|
+
<link>{{ post.url | absolute_url }}</link>
|
|
24
|
+
<guid isPermaLink="true">{{ post.url | absolute_url }}</guid>
|
|
21
25
|
</item>
|
|
22
26
|
{% endfor %}
|
|
23
27
|
</channel>
|
data/tags.html
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
---
|
|
2
|
+
layout: page
|
|
3
|
+
title: 'Tag Index'
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
{% assign date_format = site.date_format | default: "%B %-d, %Y" %}
|
|
7
|
+
|
|
8
|
+
{%- capture site_tags -%}
|
|
9
|
+
{%- for tag in site.tags -%}
|
|
10
|
+
{{- tag | first -}}{%- unless forloop.last -%},{%- endunless -%}
|
|
11
|
+
{%- endfor -%}
|
|
12
|
+
{%- endcapture -%}
|
|
13
|
+
{%- assign tags_list = site_tags | split:',' | sort -%}
|
|
14
|
+
|
|
15
|
+
{%- for tag in tags_list -%}
|
|
16
|
+
<a href="#{{- tag -}}" class="btn btn-primary tag-btn"><i class="fas fa-tag" aria-hidden="true"></i> {{- tag -}} ({{site.tags[tag].size}})</a>
|
|
17
|
+
{%- endfor -%}
|
|
18
|
+
|
|
19
|
+
<div id="full-tags-list">
|
|
20
|
+
{%- for tag in tags_list -%}
|
|
21
|
+
<h2 id="{{- tag -}}" class="linked-section">
|
|
22
|
+
<i class="fas fa-tag" aria-hidden="true"></i>
|
|
23
|
+
{{- tag -}} ({{site.tags[tag].size}})
|
|
24
|
+
</h2>
|
|
25
|
+
<div class="post-list">
|
|
26
|
+
{%- for post in site.tags[tag] -%}
|
|
27
|
+
<div class="tag-entry">
|
|
28
|
+
<a href="{{ post.url | relative_url }}">{{- post.title -}}</a>
|
|
29
|
+
<div class="entry-date">
|
|
30
|
+
<time datetime="{{- post.date | date_to_xmlschema -}}">{{- post.date | date: date_format -}}</time>
|
|
31
|
+
</div>
|
|
32
|
+
</div>
|
|
33
|
+
{%- endfor -%}
|
|
34
|
+
</div>
|
|
35
|
+
{%- endfor -%}
|
|
36
|
+
</div>
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: beautiful-jekyll-theme
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version:
|
|
4
|
+
version: 2.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Dean Attali
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2020-04-27 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|
|
@@ -16,14 +16,14 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - "~>"
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: '3.
|
|
19
|
+
version: '3.8'
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
24
|
- - "~>"
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: '3.
|
|
26
|
+
version: '3.8'
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: jekyll-paginate
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -39,33 +39,47 @@ dependencies:
|
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
40
|
version: '1.1'
|
|
41
41
|
- !ruby/object:Gem::Dependency
|
|
42
|
-
name:
|
|
42
|
+
name: jekyll-sitemap
|
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
|
44
44
|
requirements:
|
|
45
45
|
- - "~>"
|
|
46
46
|
- !ruby/object:Gem::Version
|
|
47
|
-
version: '1.
|
|
48
|
-
type: :
|
|
47
|
+
version: '1.4'
|
|
48
|
+
type: :runtime
|
|
49
49
|
prerelease: false
|
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
|
51
51
|
requirements:
|
|
52
52
|
- - "~>"
|
|
53
53
|
- !ruby/object:Gem::Version
|
|
54
|
-
version: '1.
|
|
54
|
+
version: '1.4'
|
|
55
|
+
- !ruby/object:Gem::Dependency
|
|
56
|
+
name: bundler
|
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
|
58
|
+
requirements:
|
|
59
|
+
- - ">="
|
|
60
|
+
- !ruby/object:Gem::Version
|
|
61
|
+
version: '1.16'
|
|
62
|
+
type: :development
|
|
63
|
+
prerelease: false
|
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
65
|
+
requirements:
|
|
66
|
+
- - ">="
|
|
67
|
+
- !ruby/object:Gem::Version
|
|
68
|
+
version: '1.16'
|
|
55
69
|
- !ruby/object:Gem::Dependency
|
|
56
70
|
name: rake
|
|
57
71
|
requirement: !ruby/object:Gem::Requirement
|
|
58
72
|
requirements:
|
|
59
73
|
- - "~>"
|
|
60
74
|
- !ruby/object:Gem::Version
|
|
61
|
-
version: '
|
|
75
|
+
version: '12.0'
|
|
62
76
|
type: :development
|
|
63
77
|
prerelease: false
|
|
64
78
|
version_requirements: !ruby/object:Gem::Requirement
|
|
65
79
|
requirements:
|
|
66
80
|
- - "~>"
|
|
67
81
|
- !ruby/object:Gem::Version
|
|
68
|
-
version: '
|
|
82
|
+
version: '12.0'
|
|
69
83
|
description:
|
|
70
84
|
email:
|
|
71
85
|
- daattali@gmail.com
|
|
@@ -73,24 +87,38 @@ executables: []
|
|
|
73
87
|
extensions: []
|
|
74
88
|
extra_rdoc_files: []
|
|
75
89
|
files:
|
|
76
|
-
-
|
|
90
|
+
- 404.html
|
|
91
|
+
- LICENSE
|
|
77
92
|
- README.md
|
|
93
|
+
- _data/ui-text.yml
|
|
94
|
+
- _includes/comments.html
|
|
78
95
|
- _includes/disqus.html
|
|
96
|
+
- _includes/ext-css.html
|
|
97
|
+
- _includes/ext-js.html
|
|
98
|
+
- _includes/fb-comment.html
|
|
79
99
|
- _includes/footer-minimal.html
|
|
80
100
|
- _includes/footer-scripts.html
|
|
81
101
|
- _includes/footer.html
|
|
82
102
|
- _includes/google_analytics.html
|
|
103
|
+
- _includes/gtag.html
|
|
104
|
+
- _includes/gtm_body.html
|
|
105
|
+
- _includes/gtm_head.html
|
|
83
106
|
- _includes/head.html
|
|
84
107
|
- _includes/header.html
|
|
108
|
+
- _includes/matomo.html
|
|
85
109
|
- _includes/nav.html
|
|
86
|
-
- _includes/
|
|
110
|
+
- _includes/readtime.html
|
|
111
|
+
- _includes/social-networks-links.html
|
|
87
112
|
- _includes/social-share.html
|
|
113
|
+
- _includes/staticman-comment.html
|
|
114
|
+
- _includes/staticman-comments.html
|
|
115
|
+
- _includes/utterances-comment.html
|
|
88
116
|
- _layouts/base.html
|
|
89
117
|
- _layouts/default.html
|
|
118
|
+
- _layouts/home.html
|
|
90
119
|
- _layouts/minimal.html
|
|
91
120
|
- _layouts/page.html
|
|
92
121
|
- _layouts/post.html
|
|
93
|
-
- _layouts/tag_index.html
|
|
94
122
|
- assets/css/bootstrap-social.css
|
|
95
123
|
- assets/css/bootstrap-theme.css
|
|
96
124
|
- assets/css/bootstrap-theme.css.map
|
|
@@ -102,12 +130,21 @@ files:
|
|
|
102
130
|
- assets/css/main.css
|
|
103
131
|
- assets/css/normalize.css
|
|
104
132
|
- assets/css/pygment_highlights.css
|
|
105
|
-
- assets/
|
|
133
|
+
- assets/css/staticman.css
|
|
134
|
+
- assets/img/404-southpark.jpg
|
|
135
|
+
- assets/img/avatar-icon.png
|
|
136
|
+
- assets/img/bgimage.png
|
|
137
|
+
- assets/img/hello_world.jpeg
|
|
138
|
+
- assets/img/install-steps.gif
|
|
139
|
+
- assets/img/path.jpg
|
|
106
140
|
- assets/js/bootstrap.js
|
|
107
141
|
- assets/js/bootstrap.min.js
|
|
108
142
|
- assets/js/jquery-1.11.2.min.js
|
|
109
143
|
- assets/js/main.js
|
|
110
|
-
|
|
144
|
+
- assets/js/staticman.js
|
|
145
|
+
- feed.xml
|
|
146
|
+
- tags.html
|
|
147
|
+
homepage: https://deanattali.com/beautiful-jekyll
|
|
111
148
|
licenses:
|
|
112
149
|
- MIT
|
|
113
150
|
metadata: {}
|
|
@@ -126,8 +163,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
126
163
|
- !ruby/object:Gem::Version
|
|
127
164
|
version: '0'
|
|
128
165
|
requirements: []
|
|
129
|
-
|
|
130
|
-
rubygems_version: 2.5.1
|
|
166
|
+
rubygems_version: 3.1.2
|
|
131
167
|
signing_key:
|
|
132
168
|
specification_version: 4
|
|
133
169
|
summary: Beautiful Jekyll is a ready-to-use Jekyll theme to help you create an awesome
|