darkade.github.io-theme 1.5.4 → 1.7.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 551d1ed09e62ee483324c0b00b55ecb7e41a0f5a4a5dd620bd8b49baea579949
4
- data.tar.gz: d13db0115c0d6a1090b213a09b46a2878002f96e2a8863aa03eaa353a54b132d
3
+ metadata.gz: ab472529c94532339bce3979356d62cda7f521b11f40a12acef4323f26ca7a4b
4
+ data.tar.gz: d18fb9ed13a52f004bfec04f19b35af0f8e3c404fa2cd166cb778dfa69a0f258
5
5
  SHA512:
6
- metadata.gz: 3273e02116c32b89a31cffdaf0b5c4739231fbe2e3bc303b6e7449f0e75f8bdfe459d08eee3331a1bce1fa27c25d2f6a9f874b353a48c96673b5fa95e597b450
7
- data.tar.gz: 0ca705ddbc46e8c78981d130ca9d3bff06386af9b125c50c8f761ecae49c0c2153da7c9092acb142705069660719f7a8eb1821de9af64253220ad36a422743f3
6
+ metadata.gz: 03ca39a71a43bff5ad4dc73d4f8aa4fe0fc3da99597040273035854a5bb84ab83f105bf50f40946c0d6cf10b4ab7a3b73595e94d4fe712950ec1af7da65f0625
7
+ data.tar.gz: 38e3b008a385f92497a7b8563addbc004e681758f11ba5534cdf37e1f754487cb0b6090af384673aed6f247f28af636e7b137542bacaddcb73c5b59fa22a1333
@@ -0,0 +1,16 @@
1
+ <script src="https://giscus.app/client.js"
2
+ data-repo="{{ site.giscus.repo }}"
3
+ data-repo-id="{{ site.giscus.repoid }}"
4
+ data-category="{{ site.giscus.category }}"
5
+ data-category-id="{{ site.giscus.categoryid }}"
6
+ data-mapping="{{ site.giscus.mapping }}"
7
+ data-strict="0"
8
+ data-reactions-enabled="1"
9
+ data-emit-metadata="0"
10
+ data-input-position="bottom"
11
+ data-theme="light_protanopia"
12
+ data-lang="en"
13
+ data-loading="lazy"
14
+ crossorigin="anonymous"
15
+ async>
16
+ </script>
@@ -2,7 +2,11 @@
2
2
  <nav class="navbar navbar-dark bg-primary navbar-expand-lg">
3
3
  <div class="container-fluid">
4
4
  <span class="navbar-text w-50">
5
+ {% if site.showlogo %}
6
+ <a class="" href="/">{% include logo.html %}</a>
7
+ {% else %}
5
8
  <a class="" href="/">{{ site.title }}</a>
9
+ {% endif %}
6
10
  <span class="d-none d-md-block text-white text-bold"><small>{{ site.author }} – {{ site.tagline }}</small></span>
7
11
  </span>
8
12
 
data/_layouts/post.html CHANGED
@@ -14,4 +14,5 @@ layout: page
14
14
 
15
15
  <p class="text-end font-italic">– {{ post.author | default: site.author }}</p>
16
16
  </div>
17
+ {% include comments.html %}
17
18
  </article>
data/_sass/main.scss CHANGED
@@ -5,6 +5,7 @@ $font-size-base: 1.25rem !default; // Assumes the browser default, typically `16
5
5
  @import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');
6
6
  @import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
7
7
  @import url('https://fonts.googleapis.com/css2?family=Ubuntu+Mono&display=swap');
8
+ @import url('https://fonts.googleapis.com/css2?family=Inconsolata&display=swap');
8
9
 
9
10
  $font-family-sans-serif: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !default;
10
11
  $font-family-monospace: "Ubuntu Mono", SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !default;
@@ -13,6 +14,10 @@ $font-family-monospace: "Ubuntu Mono", SFMono-Regular, Menlo, Monaco, Cons
13
14
 
14
15
  header {
15
16
  font-family: 'Press Start 2P', cursive;
17
+ svg {
18
+ height: 50px;
19
+ width: 240px;
20
+ }
16
21
  }
17
22
 
18
23
  footer {
@@ -73,6 +78,7 @@ article {
73
78
  vertical-align: middle;
74
79
  &.icon {
75
80
  fill: $secondary;
81
+ filter: drop-shadow(1px 1px 0px $primary);
76
82
  width: 100%;
77
83
  }
78
84
  }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: darkade.github.io-theme
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.5.4
4
+ version: 1.7.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Anya Reyes
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-11-10 00:00:00.000000000 Z
11
+ date: 2023-09-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -143,6 +143,7 @@ extra_rdoc_files: []
143
143
  files:
144
144
  - LICENSE.txt
145
145
  - README.md
146
+ - _includes/comments.html
146
147
  - _includes/footer.html
147
148
  - _includes/head.html
148
149
  - _includes/header.html