lbenicio-minimal-v1 1.0.10 → 1.1.1
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 +4 -4
- data/_includes/blog-navigation.html +1 -1
- data/_includes/footer.html +2 -2
- data/_includes/head.html +6 -6
- data/_includes/navigation.html +4 -4
- data/_includes/pagination.html +4 -4
- data/_includes/{postList.html → post-list.html} +1 -1
- data/_includes/post-navigation.html +1 -0
- data/_layouts/autopage_category.html +1 -1
- data/_layouts/autopage_collection.html +1 -1
- data/_layouts/autopage_tags.html +1 -1
- data/_layouts/default.html +0 -3
- data/_layouts/feed.html +27 -0
- data/_layouts/home.html +1 -1
- data/_layouts/posts.html +29 -6
- data/assets/{style.scss → css/style.scss} +0 -44
- data/assets/favicon.ico +0 -0
- data/assets/favicon.png +0 -0
- metadata +11 -8
- /data/_includes/{anchor_headings.html → anchor-headings.html} +0 -0
- /data/assets/{monokai.scss → css/monokai.scss} +0 -0
- /data/assets/{postStyle.scss → css/post.scss} +0 -0
- /data/assets/{profile.jpg → img/profile.jpg} +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 646091bfdc0114fc1fd7d28e802e0779f6b25de55a4ea9ef478ab0682bf007a7
|
4
|
+
data.tar.gz: cd2653515c9cbbedfb5460021d718f7492eed76b0125c3bc056c79a41aed8504
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 05afd1b2a9feb39cd3b4fa95923a244d72baaa78d70f66ff558f32a57a9c40a12e14b3a22eccbbfdfb9d686577f4d8ff5c27a4ace3e26d559c0be18877429479
|
7
|
+
data.tar.gz: d4f341a97d828ca2b31d4e9bf18d7424e37b282beb6c73a5889c1ab72ef7bee8c9c0694c074ba16c335702e020c23df0bf0f090991ec2c64c59b30ece357ae73
|
data/_includes/footer.html
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
<footer class="footer border-top border-
|
1
|
+
<footer class="footer border-top border-2 border-light pt-3 mt-auto fs-6 text-center text-muted">
|
2
2
|
<div class="container">
|
3
3
|
<div class="row">
|
4
4
|
<div class="offset-md-4 col-md-4 col-10 offset-1">
|
@@ -10,4 +10,4 @@
|
|
10
10
|
</div>
|
11
11
|
</footer>
|
12
12
|
<!-- JS -->
|
13
|
-
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2
|
13
|
+
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.min.js" integrity="sha384-BBtl+eGJRgqQAUMxJ7pMwbEyER4l1g+O15P+16Ep7Q9Q+zqX6gSbd85u4mG4QzX+" crossorigin="anonymous"></script>
|
data/_includes/head.html
CHANGED
@@ -1,18 +1,18 @@
|
|
1
1
|
<meta content='{{ site.title }}' property='og:title' />
|
2
2
|
<!-- favicon -->
|
3
|
-
<link href="{{ '/assets/favicon.ico'
|
3
|
+
<link href="{{ '/assets/favicon.ico'}}" rel='shortcut icon'>
|
4
4
|
<!-- CSS -->
|
5
|
-
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2
|
6
|
-
<link rel="stylesheet" href="{{ '/assets/style.css'
|
7
|
-
<link rel="stylesheet" href="{{ '/assets/vendor/all.min.css'
|
5
|
+
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
|
6
|
+
<link rel="stylesheet" href="{{ '/assets/css/style.css'}}">
|
7
|
+
<link rel="stylesheet" href="{{ '/assets/vendor/all.min.css'}}">
|
8
8
|
<!-- Fonts -->
|
9
9
|
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono&display=swap" rel="stylesheet">
|
10
10
|
<!-- Configs -->
|
11
11
|
<meta content='width=device-width, initial-scale=1.0, , maximum-scale=1, minimum-scale=1, user-scalable=no' name='viewport'>
|
12
12
|
<meta content='text/html; charset=utf-8' http-equiv='content-type' />
|
13
13
|
{% if page.date %}
|
14
|
-
<link rel="stylesheet" href="{{ '/assets/
|
15
|
-
<link rel="stylesheet" href="{{ '/assets/monokai.css'
|
14
|
+
<link rel="stylesheet" href="{{ '/assets/css/post.css'}}">
|
15
|
+
<link rel="stylesheet" href="{{ '/assets/css/monokai.css'}}">
|
16
16
|
<meta content='{{ site.default_url }}{{ page.url }}' property='og:url' />
|
17
17
|
<meta content="{{ page.content | strip_html | strip_newlines | truncate: 120 }}" property='og:description' />
|
18
18
|
<meta content="article" property="og:type" />
|
data/_includes/navigation.html
CHANGED
@@ -1,14 +1,14 @@
|
|
1
|
-
<div class="container-fluid border-bottom border-
|
2
|
-
<div class="row border-bottom border-
|
1
|
+
<div class="container-fluid border-bottom border-2 border-light pb-4">
|
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 }}/assets/profile.jpg" class="mx-auto d-block mt-5 rounded-circle" alt="profile picture">
|
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>
|
9
9
|
<div class="nav-container-up row mt-2">
|
10
10
|
<nav class="offset-3 col-6">
|
11
|
-
<ul class="list-group list-group-horizontal justify-content-center
|
11
|
+
<ul class="list-group list-group-horizontal justify-content-center ms-0 ps-0">
|
12
12
|
<li class="list-group-item border-0">
|
13
13
|
<a href="{{ site.default_url }}"><i class="fas fa-home text-black-50"></i></a>
|
14
14
|
</li>
|
data/_includes/pagination.html
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{% if paginator.total_pages > 1 %}
|
2
|
-
<ul class="pagination d-flex">
|
2
|
+
<ul class="pagination d-flex justify-content-evenly pt-3">
|
3
3
|
{% if paginator.previous_page %}
|
4
|
-
<li class="
|
4
|
+
<li class="ms-3 me-3 me-auto">
|
5
5
|
<a class="pagination-nav text-black" href="{{ paginator.previous_page_path | prepend: site.url }}">Newer</a>
|
6
6
|
</li>
|
7
7
|
{% endif %}
|
@@ -13,9 +13,9 @@
|
|
13
13
|
</ul>
|
14
14
|
{% endif %}
|
15
15
|
{% if paginator.page_trail %}
|
16
|
-
<ul class="pagination d-flex">
|
16
|
+
<ul class="pagination d-flex justify-content-evenly pt-3">
|
17
17
|
{% for trail in paginator.page_trail %}
|
18
|
-
<li {% if page.url == trail.path %}
|
18
|
+
<li class="ms-3 me-3 {% if page.url == trail.path %}selected font-weight-bold border-bottom border-dark{% endif %}">
|
19
19
|
<a class="pagination-nav text-black" href="{{ trail.path | prepend: site.url }}" title="{{trail.title}}">{{ trail.num }}</a>
|
20
20
|
</li>
|
21
21
|
{% endfor %}
|
@@ -5,7 +5,7 @@
|
|
5
5
|
<a class="text-dark post-link" href="{{ post.url | prepend: site.url }}">
|
6
6
|
<span>{{ post.title }}</span>
|
7
7
|
<br>
|
8
|
-
<small class="
|
8
|
+
<small class="d-flex justify-content-center">{{ post.date | date: "%-d %B %Y" }}</small>
|
9
9
|
</a>
|
10
10
|
</div>
|
11
11
|
{% assign ph_1 = post.content | split: '<p>' %}
|
@@ -0,0 +1 @@
|
|
1
|
+
<div> {{ post }} </div>
|
data/_layouts/autopage_tags.html
CHANGED
data/_layouts/default.html
CHANGED
@@ -4,18 +4,15 @@
|
|
4
4
|
<head>
|
5
5
|
{% include head.html %}
|
6
6
|
</head>
|
7
|
-
{% assign t = page.title | downcase %}
|
8
7
|
<body class="bg-body d-flex flex-column min-vh-100 {% if page.date %} body-posts{% endif %}">
|
9
8
|
{% include fork.html %}
|
10
9
|
{% include navigation.html %}
|
11
|
-
{% if t contains "blog" or t contains "post" or t contains "feed" or t contains "tag" or t contains "categor" or page.date %}{% include blog-navigation.html %}{% endif %}
|
12
10
|
<div class="container-fluid mt-2">
|
13
11
|
<div class="row">
|
14
12
|
<div class="offset-xs-1 col-xs-10 offset-sm-3 col-sm-6">
|
15
13
|
<section class="content">
|
16
14
|
<div class="container-fluid" id="main-container">
|
17
15
|
{{ content }}
|
18
|
-
{% if t contains "blog" or t contains "feed" or t contains "tag" or t contains "categor" %}{% include pagination.html %}{% endif %}
|
19
16
|
</div>
|
20
17
|
</section>
|
21
18
|
</div>
|
data/_layouts/feed.html
ADDED
@@ -0,0 +1,27 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
|
4
|
+
<head>
|
5
|
+
{% include head.html %}
|
6
|
+
</head>
|
7
|
+
<body class="bg-body d-flex flex-column min-vh-100 {% if page.date %} body-posts{% endif %}">
|
8
|
+
{% include fork.html %}
|
9
|
+
{% include navigation.html %}
|
10
|
+
{% include blog-navigation.html %}
|
11
|
+
<div class="container-fluid mt-2">
|
12
|
+
<div class="row">
|
13
|
+
<div class="offset-xs-1 col-xs-10 offset-sm-3 col-sm-6">
|
14
|
+
<section class="content">
|
15
|
+
<div class="container-fluid" id="main-container">
|
16
|
+
{{ content }}
|
17
|
+
{% include pagination.html %}
|
18
|
+
</div>
|
19
|
+
</section>
|
20
|
+
</div>
|
21
|
+
</div>
|
22
|
+
</div>
|
23
|
+
{% include footer.html %}
|
24
|
+
{% include analytics.html %}
|
25
|
+
</body>
|
26
|
+
|
27
|
+
</html>
|
data/_layouts/home.html
CHANGED
data/_layouts/posts.html
CHANGED
@@ -1,7 +1,30 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
title: Posts
|
4
|
-
icon: fa-comment-alt
|
5
|
-
---
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
6
3
|
|
7
|
-
|
4
|
+
<head>
|
5
|
+
{% include head.html %}
|
6
|
+
</head>
|
7
|
+
|
8
|
+
<body class="bg-body d-flex flex-column min-vh-100 {% if page.date %} body-posts{% endif %}">
|
9
|
+
{% include fork.html %}
|
10
|
+
{% include navigation.html %}
|
11
|
+
<div class="container-fluid mt-2">
|
12
|
+
<div class="row">
|
13
|
+
<div class="offset-xs-1 col-xs-10 offset-sm-3 col-sm-6">
|
14
|
+
<section class="content">
|
15
|
+
<div class="container-fluid" id="main-container">
|
16
|
+
{{ page.previous.url }}
|
17
|
+
{% include anchor-headings.html html=content anchorBody="#" anchorClass="link-anchor" %}
|
18
|
+
{{ content }}
|
19
|
+
{% include post-navigation.html %}
|
20
|
+
|
21
|
+
</div>
|
22
|
+
</section>
|
23
|
+
</div>
|
24
|
+
</div>
|
25
|
+
</div>
|
26
|
+
{% include footer.html %}
|
27
|
+
{% include analytics.html %}
|
28
|
+
</body>
|
29
|
+
|
30
|
+
</html>
|
@@ -10,15 +10,6 @@ body {
|
|
10
10
|
overflow-wrap: break-word;
|
11
11
|
}
|
12
12
|
|
13
|
-
#main-container h1 {
|
14
|
-
margin-bottom: 0.5em;
|
15
|
-
margin-top: 1em;
|
16
|
-
}
|
17
|
-
|
18
|
-
#main-container table td {
|
19
|
-
padding-right: 1em;
|
20
|
-
}
|
21
|
-
|
22
13
|
.fork-me {
|
23
14
|
width: 13rem;
|
24
15
|
right: 0;
|
@@ -52,14 +43,6 @@ ul.post-list {
|
|
52
43
|
list-style: none;
|
53
44
|
}
|
54
45
|
|
55
|
-
.h-main {
|
56
|
-
height: 80vh;
|
57
|
-
}
|
58
|
-
|
59
|
-
.fs-10 {
|
60
|
-
font-size: 0.5rem;
|
61
|
-
}
|
62
|
-
|
63
46
|
div.nav-container-up:before{
|
64
47
|
content: "";
|
65
48
|
position: absolute;
|
@@ -110,35 +93,8 @@ div.nav-container-down:after{
|
|
110
93
|
margin-top: 3.4em;
|
111
94
|
}
|
112
95
|
|
113
|
-
.mr-auto {
|
114
|
-
margin-right: auto !important;
|
115
|
-
}
|
116
|
-
|
117
|
-
.ml-auto {
|
118
|
-
margin-left: auto !important;
|
119
|
-
}
|
120
|
-
|
121
|
-
#main-container .pagination {
|
122
|
-
justify-content: space-evenly;
|
123
|
-
padding-top: 1.5rem;
|
124
|
-
}
|
125
|
-
|
126
|
-
#main-container .pagination li {
|
127
|
-
margin-left: 1rem;
|
128
|
-
margin-right: 1rem;
|
129
|
-
}
|
130
|
-
|
131
|
-
#main-container .pagination .selected {
|
132
|
-
font-weight: bold;
|
133
|
-
border-bottom: 2px solid black;
|
134
|
-
}
|
135
|
-
|
136
96
|
@media (max-width: 576px) {
|
137
97
|
.fork-me {
|
138
98
|
width: 3rem;
|
139
99
|
}
|
140
|
-
|
141
|
-
.h-main {
|
142
|
-
height: 70vh;
|
143
|
-
}
|
144
100
|
}
|
data/assets/favicon.ico
CHANGED
Binary file
|
data/assets/favicon.png
ADDED
Binary file
|
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.
|
4
|
+
version: 1.1.1
|
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
|
+
date: 2023-11-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll-seo-tag
|
@@ -165,7 +165,7 @@ extra_rdoc_files: []
|
|
165
165
|
files:
|
166
166
|
- ".rubocop.yml"
|
167
167
|
- _includes/analytics.html
|
168
|
-
- _includes/
|
168
|
+
- _includes/anchor-headings.html
|
169
169
|
- _includes/blog-navigation.html
|
170
170
|
- _includes/conclusion.html
|
171
171
|
- _includes/footer.html
|
@@ -173,18 +173,21 @@ files:
|
|
173
173
|
- _includes/head.html
|
174
174
|
- _includes/navigation.html
|
175
175
|
- _includes/pagination.html
|
176
|
-
- _includes/
|
176
|
+
- _includes/post-list.html
|
177
|
+
- _includes/post-navigation.html
|
177
178
|
- _layouts/autopage_category.html
|
178
179
|
- _layouts/autopage_collection.html
|
179
180
|
- _layouts/autopage_tags.html
|
180
181
|
- _layouts/default.html
|
182
|
+
- _layouts/feed.html
|
181
183
|
- _layouts/home.html
|
182
184
|
- _layouts/posts.html
|
185
|
+
- assets/css/monokai.scss
|
186
|
+
- assets/css/post.scss
|
187
|
+
- assets/css/style.scss
|
183
188
|
- assets/favicon.ico
|
184
|
-
- assets/
|
185
|
-
- assets/
|
186
|
-
- assets/profile.jpg
|
187
|
-
- assets/style.scss
|
189
|
+
- assets/favicon.png
|
190
|
+
- assets/img/profile.jpg
|
188
191
|
- assets/vendor/all.min.css
|
189
192
|
- assets/webfonts/fa-brands-400.eot
|
190
193
|
- assets/webfonts/fa-brands-400.svg
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|