bravissimo 0.1.0 → 0.1.2
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/footer.html +5 -5
- data/_includes/head.html +4 -2
- data/_layouts/default.html +3 -1
- data/_layouts/main.html +1 -1
- data/_layouts/post.html +5 -2
- data/_sass/bravissimo/_pages.scss +16 -0
- metadata +12 -12
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ffee090e4b4a304a6aa0837768d02f10dfecce69ec13e1bedc9c18ec2291a83f
|
4
|
+
data.tar.gz: d57166f413b64602a9829ac5750161b43f1a2b2cdc0fee71a564c0a2800352b1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fee0f2bdbd92b02fd696381946c29b3e8854304b1dd105f8e0f94b50c28d42155ace5207fa870059560edb7373c7dd0295465ce0e5c767a953655300b626737b
|
7
|
+
data.tar.gz: 91f8f8d0bde616acf28c87f49c9593d6c4c241e38db8fcc494a1a80d432312cbb7ea0622547568bacaaf787c28017d220d5e350e17368d7506174184bfbfc9b6
|
data/_includes/footer.html
CHANGED
@@ -1,10 +1,10 @@
|
|
1
1
|
<footer>
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
<i>Copyright © {{ 'now' | date: "%Y" }} Gunther Cox</i>
|
2
|
+
<div class="container-fluid color-rust">
|
3
|
+
<div class="row footer-row">
|
4
|
+
<div class="col-xs-6">
|
5
|
+
<i class="copyright">Copyright © {{ 'now' | date: "%Y" }} Gunther Cox</i>
|
6
6
|
</div>
|
7
|
-
|
7
|
+
<div class="col-xs-6 text-right">
|
8
8
|
{% for account in site.data.social %}
|
9
9
|
<a href="{{ account.url }}" aria-label="{{ account.name }}" target='_blank' class="btn btn-lg btn-link text-white">
|
10
10
|
<i class="{{ account.icon_class }}" aria-hidden="true" style="font-size: 24px;"></i>
|
data/_includes/head.html
CHANGED
@@ -22,8 +22,10 @@
|
|
22
22
|
<title>{{ site.title }}</title>
|
23
23
|
{% endif %}
|
24
24
|
|
25
|
-
{% if site.
|
26
|
-
<link rel="publisher" href="https://
|
25
|
+
{% if site.github_username %}
|
26
|
+
<link rel="publisher" href="https://github.com/{{ site.github_username }}"/>
|
27
|
+
{% else if site.twitter_username %}
|
28
|
+
<link rel="publisher" href="https://twitter.com/{{ site.twitter_username }}"/>
|
27
29
|
{% endif %}
|
28
30
|
|
29
31
|
<link rel="stylesheet" href="/assets/css/main.css"/>
|
data/_layouts/default.html
CHANGED
data/_layouts/main.html
CHANGED
data/_layouts/post.html
CHANGED
@@ -6,14 +6,17 @@
|
|
6
6
|
|
7
7
|
<div class="container-fluid color-forest">
|
8
8
|
<div class="row" style="padding: 20px 0px">
|
9
|
-
<div class="col-xs-
|
9
|
+
<div class="col-xs-4">
|
10
10
|
{% if page.previous %}
|
11
11
|
<a class="btn btn-default white-outline color-forest" href="{{ page.previous.url }}">
|
12
12
|
Previous<span class="hidden-xs">: <i>{{ page.previous.title }}</i></span>
|
13
13
|
</a>
|
14
14
|
{% endif %}
|
15
15
|
</div>
|
16
|
-
<div class="col-xs-
|
16
|
+
<div class="col-xs-4 text-center">
|
17
|
+
<a class="btn btn-default white-outline color-forest" href="{{ page.index_url }}">Main</a>
|
18
|
+
</div>
|
19
|
+
<div class="col-xs-4 text-right">
|
17
20
|
{% if page.next %}
|
18
21
|
<a class="btn btn-default white-outline color-forest" href="{{ page.next.url }}">
|
19
22
|
Next<span class="hidden-xs">: <i>{{ page.next.title }}</i></span>
|
@@ -23,3 +23,19 @@
|
|
23
23
|
width: 100%;
|
24
24
|
}
|
25
25
|
}
|
26
|
+
|
27
|
+
footer {
|
28
|
+
margin-top: 15px;
|
29
|
+
margin-left: 0px;
|
30
|
+
margin-right: 0px;
|
31
|
+
padding: 0px;
|
32
|
+
}
|
33
|
+
|
34
|
+
.footer-row {
|
35
|
+
padding: 15px 5px;
|
36
|
+
}
|
37
|
+
|
38
|
+
.copyright {
|
39
|
+
margin-top: 15px;
|
40
|
+
padding: 0px 15px;
|
41
|
+
}
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bravissimo
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Gunther Cox
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2025-01-19 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: '4.3'
|
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: '4.3'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: kramdown-parser-gfm
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -44,28 +44,28 @@ dependencies:
|
|
44
44
|
requirements:
|
45
45
|
- - "~>"
|
46
46
|
- !ruby/object:Gem::Version
|
47
|
-
version: '2.
|
47
|
+
version: '2.6'
|
48
48
|
type: :development
|
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: '2.
|
54
|
+
version: '2.6'
|
55
55
|
- !ruby/object:Gem::Dependency
|
56
56
|
name: html-proofer
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
58
58
|
requirements:
|
59
|
-
- - "
|
59
|
+
- - "~>"
|
60
60
|
- !ruby/object:Gem::Version
|
61
|
-
version: '0'
|
61
|
+
version: '5.0'
|
62
62
|
type: :development
|
63
63
|
prerelease: false
|
64
64
|
version_requirements: !ruby/object:Gem::Requirement
|
65
65
|
requirements:
|
66
|
-
- - "
|
66
|
+
- - "~>"
|
67
67
|
- !ruby/object:Gem::Version
|
68
|
-
version: '0'
|
68
|
+
version: '5.0'
|
69
69
|
description: A Jekyll theme (using Bootstrap)
|
70
70
|
email: gunthercx@gmail.com
|
71
71
|
executables: []
|
@@ -182,9 +182,9 @@ require_paths:
|
|
182
182
|
- lib
|
183
183
|
required_ruby_version: !ruby/object:Gem::Requirement
|
184
184
|
requirements:
|
185
|
-
- - "
|
185
|
+
- - "~>"
|
186
186
|
- !ruby/object:Gem::Version
|
187
|
-
version: '
|
187
|
+
version: '3.3'
|
188
188
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
189
189
|
requirements:
|
190
190
|
- - ">="
|