lbenicio-minimal-v1 1.3.1 → 1.3.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_includes/footer.html +10 -1
- data/_includes/head.html +2 -1
- data/_includes/navigation.html +1 -1
- data/_layouts/posts.html +9 -0
- data/assets/css/post.scss +8 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6886016c703aa6e29fd3d3f41fcfe8886cc8d6fac0ea3be89def094f1da43eca
|
4
|
+
data.tar.gz: 7cb76fe7a36d8c440f2f3f803b0f92b37829adb19cedf8564d4634eae814cdf0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d71e01b00554a3e39f17c98ad52cb59d81018387fd19ae687ba74f336c2b5ccc9e77061b4673e74410e442935c65eb6d3cffd4c6fbb316dc6e78b169ac6b21d6
|
7
|
+
data.tar.gz: 62c5b0a2667202d99beb05d097e220595810fbdba05eadf9ef5778eceafdbc1f48e50418d0acb67a5f4699f3739408920e18b88f7e002c66004a5dd3514ac737
|
data/_includes/footer.html
CHANGED
@@ -10,4 +10,13 @@
|
|
10
10
|
</div>
|
11
11
|
</footer>
|
12
12
|
<!-- JS -->
|
13
|
-
<script
|
13
|
+
<script
|
14
|
+
src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.8/dist/umd/popper.min.js"
|
15
|
+
integrity="sha384-I7E8VVD/ismYTF4hNIPjVp/Zjvgyol6VFvRkX/vR+Vc4jQkC+hVqc2pM8ODewa9r"
|
16
|
+
crossorigin="anonymous">
|
17
|
+
</script>
|
18
|
+
<script
|
19
|
+
src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.min.js"
|
20
|
+
integrity="sha384-BBtl+eGJRgqQAUMxJ7pMwbEyER4l1g+O15P+16Ep7Q9Q+zqX6gSbd85u4mG4QzX+"
|
21
|
+
crossorigin="anonymous">
|
22
|
+
</script>
|
data/_includes/head.html
CHANGED
@@ -2,7 +2,8 @@
|
|
2
2
|
<!-- favicon -->
|
3
3
|
<link href="{{ '/assets/favicon.ico'}}" rel='shortcut icon'>
|
4
4
|
<!-- CSS -->
|
5
|
-
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet"
|
5
|
+
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet"
|
6
|
+
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
|
6
7
|
<link rel="stylesheet" href="{{ '/assets/css/style.css'}}">
|
7
8
|
<link rel="stylesheet" href="{{ '/assets/vendor/all.min.css'}}">
|
8
9
|
<!-- Fonts -->
|
data/_includes/navigation.html
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
<div class="row border-bottom border-2 border-light pb-4">
|
3
3
|
<div class="offset-3 col-6">
|
4
4
|
<div class="profile-picture">
|
5
|
-
<img src="{{ site.default_url }}
|
5
|
+
<img src="{{ site.default_url }}assets/img/profile.jpg" class="mx-auto d-block mt-5 rounded-circle" alt="profile picture">
|
6
6
|
</div>
|
7
7
|
</div>
|
8
8
|
</div>
|
data/_layouts/posts.html
CHANGED
@@ -8,11 +8,20 @@
|
|
8
8
|
<body class="bg-body d-flex flex-column min-vh-100 {% if page.date %} body-posts{% endif %}">
|
9
9
|
{% include fork.html %}
|
10
10
|
{% include navigation.html %}
|
11
|
+
{% include blog-navigation.html %}
|
11
12
|
<div class="container-fluid">
|
12
13
|
<div class="row">
|
13
14
|
<div class="offset-xs-1 col-xs-10 offset-sm-3 col-sm-6">
|
14
15
|
<section class="content mt-5">
|
15
16
|
<div class="container-fluid" id="main-container">
|
17
|
+
<div class="reading-time">
|
18
|
+
{% capture time %}{{ content | reading_time }}{% endcapture %}
|
19
|
+
<p>This article will take {{ time }} {% if time == '1' %}minute{% else %}minutes{% endif %} to read.</p>
|
20
|
+
</div>
|
21
|
+
<div id="table-of-contents" class="">
|
22
|
+
<h3 class="mb-3">Table of Contents</h3>
|
23
|
+
{% toc %}
|
24
|
+
</div>
|
16
25
|
{% include anchor-headings.html html=content anchorBody="#" anchorClass="link-anchor" %}
|
17
26
|
{% include post-navigation.html %}
|
18
27
|
</div>
|
data/assets/css/post.scss
CHANGED
@@ -23,4 +23,12 @@ body.body-posts section.content #main-container .link-anchor:hover {
|
|
23
23
|
|
24
24
|
body.body-posts section.content #main-container h1, h2, h3, h4, h5, h6 {
|
25
25
|
padding-top: 3rem;
|
26
|
+
}
|
27
|
+
|
28
|
+
body.body-posts section.content #main-container .toc-entry a {
|
29
|
+
color: black !important;
|
30
|
+
}
|
31
|
+
|
32
|
+
body.body-posts section.content #main-container .toc-entry li {
|
33
|
+
margin-top: 1rem;
|
26
34
|
}
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: lbenicio-minimal-v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.3.
|
4
|
+
version: 1.3.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Leonardo Benicio
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-11-
|
11
|
+
date: 2023-11-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll-seo-tag
|