jekyll-theme-bootstrap4 0.0.8 → 0.0.9
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_includes/post.html +1 -1
- data/_layouts/blog.html +2 -2
- data/_layouts/default.html +1 -47
- data/_layouts/post.html +1 -1
- 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: b6e492abd8142a9b2b7db6642f284644e3712129eb0d622fc556dfe695388087
|
4
|
+
data.tar.gz: cce1d11b057e5324d8b88f1157bd98f9c719c08b29605eaf38334d4025880a77
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9aef4be0acb9cbcb76bc235861e232be1054c0c7c8a8bdc7c0b8f58900eb965246f5f179c5414dcc3418f953706dac41966ff52ec7ea0a394c6c01e6d11ba37e
|
7
|
+
data.tar.gz: 835e6b46562e2ed80ec85808fee7a3a86c3d72afb72aabd2cb80e5e21f00e0c3e8c8cf8212592497243ec97833f6c3f812731ed203bd360487e8323ec9fd6004
|
data/_includes/post.html
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
<article itemscope itemtype="http://schema.org/BlogPosting">
|
2
|
-
<h1 itemprop="headline"
|
2
|
+
<h1 itemprop="headline">{{ include.post.title }}</h1>
|
3
3
|
<p itemprop="description">{% if include.post.author %}By <span itemprop="author">{{ include.post.author }}</span> on {% endif %}<time itemprop="datePublished" datetime="{{ include.post.date | date_to_xmlschema }}">{{ include.post.date | date: "%B %-d, %Y" }}</time>{% if include.post.updated %}. Last updated on <time itemprop="dateModified" datetime="{{ include.post.updated | date_to_xmlschema }}">{{ include.post.updated | date: "%B %-d, %Y" }}</time>{% endif %}{% if include.post.comments %}. <a href="{{ include.post.url | relative_url }}#disqus_thread" data-disqus-identifier="{{ include.post.url | relative_url }}"></a>{% endif %}</p>
|
4
4
|
<div itemprop="articleBody">
|
5
5
|
{% if page.type == "home" and site.excerpts %}
|
data/_layouts/blog.html
CHANGED
@@ -3,11 +3,11 @@ layout: default
|
|
3
3
|
type: blog
|
4
4
|
---
|
5
5
|
|
6
|
-
<div class="row">
|
6
|
+
<div class="row mb-3">
|
7
7
|
<div class="col">
|
8
8
|
<main>
|
9
9
|
{% for post in paginator.posts %}
|
10
|
-
<div class="row">
|
10
|
+
<div class="row mb-3">
|
11
11
|
<div class="col">
|
12
12
|
{% include post.html post=post %}
|
13
13
|
</div>
|
data/_layouts/default.html
CHANGED
@@ -9,52 +9,6 @@
|
|
9
9
|
<link href="{{ "/rss.xml" | relative_url }}" rel="alternate" type="application/rss+xml">
|
10
10
|
<link href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@5/css/all.min.css" crossorigin="anonymous" rel="stylesheet">
|
11
11
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@4/dist/css/bootstrap.min.css" crossorigin="anonymous" rel="stylesheet">
|
12
|
-
<style>
|
13
|
-
:root {
|
14
|
-
--color-black: #000;
|
15
|
-
--color-gray-100: #f8f9fa;
|
16
|
-
--color-gray-200: #e9ecef;
|
17
|
-
--color-gray-300: #dee2e6;
|
18
|
-
--color-gray-400: #ced4da;
|
19
|
-
--color-gray-500: #adb5bd;
|
20
|
-
--color-gray-600: #6c757d;
|
21
|
-
--color-gray-700: #495057;
|
22
|
-
--color-gray-800: #343a40;
|
23
|
-
--color-gray-900: #212529;
|
24
|
-
--color-white: #fff;
|
25
|
-
}
|
26
|
-
|
27
|
-
article > h1 a {
|
28
|
-
color: var(--color-gray-900);
|
29
|
-
}
|
30
|
-
|
31
|
-
article > h1 a:hover {
|
32
|
-
color: var(--color-gray-900);
|
33
|
-
text-decoration: none;
|
34
|
-
}
|
35
|
-
|
36
|
-
main > .row {
|
37
|
-
margin-bottom: 2rem;
|
38
|
-
}
|
39
|
-
|
40
|
-
.container > .row:first-of-type {
|
41
|
-
margin-top: 3.5rem;
|
42
|
-
}
|
43
|
-
|
44
|
-
.container > .row:last-of-type {
|
45
|
-
margin-bottom: 3.5rem;
|
46
|
-
}
|
47
|
-
|
48
|
-
.pagination > .page-item > .page-link {
|
49
|
-
color: var(--color-gray-900);
|
50
|
-
}
|
51
|
-
|
52
|
-
.pagination > .page-item.active > .page-link {
|
53
|
-
color: var(--color-gray-900);
|
54
|
-
background-color: var(--color-gray-200);
|
55
|
-
border-color: var(--color-gray-300);
|
56
|
-
}
|
57
|
-
</style>
|
58
12
|
{% if site.author %}
|
59
13
|
<meta name="author" content="{{ site.author }}">
|
60
14
|
{% endif %}
|
@@ -64,7 +18,7 @@
|
|
64
18
|
</head>
|
65
19
|
<body>
|
66
20
|
{% include navigation.html %}
|
67
|
-
<div class="container">
|
21
|
+
<div class="container my-3 my-lg-5">
|
68
22
|
{{ content }}
|
69
23
|
</div>
|
70
24
|
<script src="https://cdn.jsdelivr.net/npm/jquery@3/dist/jquery.min.js" crossorigin="anonymous"></script>
|
data/_layouts/post.html
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-theme-bootstrap4
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.9
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ramon de C Valle
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-03-
|
11
|
+
date: 2021-03-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|