jekyll-theme-centos 2.23.0 → 2.25.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_includes/base/head.html +2 -2
- data/_includes/base/script.html +1 -1
- data/_includes/people/pubkeys.html +2 -2
- data/_sass/base/_customization.scss +5 -2
- data/assets/icons/android-chrome-192.png +0 -0
- data/assets/icons/android-chrome-512.png +0 -0
- data/assets/icons/apple-touch-icon.png +0 -0
- data/assets/icons/favicon-16.png +0 -0
- data/assets/icons/favicon-32.png +0 -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: '0088972120b87570466cbcc54577f04b5676af6ec22dd229b0ed51628f4b1988'
|
4
|
+
data.tar.gz: 040af352def4aff44b446156f60c0be646925507d39c7faad933f21e05a4c14f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 24b47afefa0969736fbcfa1ecd15f6e11865275fd5d740fe6355947dd6898453b47f25d88982decb23c81ce77a82a617969a3a8570704e5c53711ffd5706f273
|
7
|
+
data.tar.gz: e1b8c9856a7d58ce7e8cfa4603ce23d66e84f308de61ea17101615da122fc88a169a30cb43b0fb9aa09c14cd17c708ec67db9140426afcc563d5be0fe21711a8
|
data/_includes/base/head.html
CHANGED
@@ -10,8 +10,8 @@
|
|
10
10
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Montserrat:100,200,300,400,500,600,700,800,900" />
|
11
11
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Overpass+Mono:100,200,300,400,500,600,700,800,900" />
|
12
12
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" integrity="sha512-iecdLmaskl7CVkqkXNQ/ZH/XLlvWZOJyj7Yy7tcenmpD1ypASozpmT/E0iPtmFIB46ZmdtAc9eNBvH0H/ZpiBw==" crossorigin="anonymous" referrerpolicy="no-referrer" />
|
13
|
-
{% if page.with_highlight
|
14
|
-
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.7.0/styles/
|
13
|
+
{% if page.with_highlight != false -%}
|
14
|
+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.7.0/styles/{{ page.with_highlight | default('default') }}.min.css">
|
15
15
|
<link rel="stylesheet" href="https://unpkg.com/highlightjs-copy@1.0.3/dist/highlightjs-copy.min.css" />
|
16
16
|
{% endif -%}
|
17
17
|
{% if page.with_datatables == true -%}
|
data/_includes/base/script.html
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
<!-- Highlight.js -->
|
2
|
-
{% if page.with_highlight
|
2
|
+
{% if page.with_highlight != false -%}
|
3
3
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.7.0/highlight.min.js"></script>
|
4
4
|
<script src="https://unpkg.com/highlightjs-copy@1.0.3/dist/highlightjs-copy.min.js"></script>
|
5
5
|
<script>
|
@@ -14,11 +14,11 @@
|
|
14
14
|
{% endif %}
|
15
15
|
|
16
16
|
{% if page.pubkeys.content.size > 0 %}
|
17
|
-
<div class="row">
|
17
|
+
<div class="row content">
|
18
18
|
{% for pubkey in page.pubkeys.content %}
|
19
19
|
<div class="col-sm-6">
|
20
20
|
<h5>{{ pubkey.name }}</h5>
|
21
|
-
<pre><code class="text-start
|
21
|
+
<pre class="highlight"><code class="hljs text-start" style="height: 8rem;">{{ pubkey.content }}</code></pre>
|
22
22
|
</div>
|
23
23
|
{% endfor %}
|
24
24
|
</div>
|
@@ -48,14 +48,17 @@ main {
|
|
48
48
|
margin-top: 3rem;
|
49
49
|
}
|
50
50
|
// --------------------------------------------------------------------------------
|
51
|
-
//
|
51
|
+
// Highlightjs-copy
|
52
52
|
// --------------------------------------------------------------------------------
|
53
53
|
.content {
|
54
54
|
pre.highlight {
|
55
55
|
code.hljs {
|
56
|
-
min-height: 100px;
|
57
56
|
max-height: 50vh;
|
58
57
|
overflow: auto;
|
58
|
+
border-radius: var(--bs-border-radius);
|
59
|
+
}
|
60
|
+
button.hljs-copy-button {
|
61
|
+
--hljs-theme-background: var(--bs-body-color);
|
59
62
|
}
|
60
63
|
}
|
61
64
|
}
|
Binary file
|
Binary file
|
Binary file
|
data/assets/icons/favicon-16.png
CHANGED
Binary file
|
data/assets/icons/favicon-32.png
CHANGED
Binary file
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-theme-centos
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.25.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- ReleaseBot
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-07-
|
11
|
+
date: 2023-07-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|