darkhack 1.0.9 → 1.1.0
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/LICENSE.md +1 -1
- data/_config.yml +5 -3
- data/_includes/footer.html +8 -2
- data/_includes/head.html +5 -2
- 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: cc4ff05db75e43ac6be56d731f1a68565c238158dad8a75ba5960a2ad3091ded
|
4
|
+
data.tar.gz: 7d61ce34af8c89a65ffe15beed64e9485d42d4c1fe2fdefd79d4f28657f21cba
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8246a086f982da57c4cc89c8f125af437c679b1559134bbd418d00b03a4c543417ff4a27312bd2f5982eae0aa888dada32c36b87feb07b77f6c739075912d90e
|
7
|
+
data.tar.gz: 78d2779c60f952c920b7a2a31515ee3ffcfbf4a48b0eb19fa7487c84338f115b254525bfa35841300b075f4a927fb907ceada5d3665e4e9d6b1db2bc057a86e2
|
data/LICENSE.md
CHANGED
data/_config.yml
CHANGED
@@ -1,8 +1,10 @@
|
|
1
|
-
title: Dark Hacking Site
|
1
|
+
title: Dark Hacking Site
|
2
2
|
author:
|
3
3
|
name: root
|
4
4
|
email: root@sudo.net
|
5
5
|
twitter: daulpavid
|
6
|
+
mastodon_instance: infosec.exchange
|
7
|
+
mastodon_handle: daulpavid
|
6
8
|
github: daulpavid
|
7
9
|
linkedin: daulpavid
|
8
10
|
description:
|
@@ -11,8 +13,8 @@ tagline:
|
|
11
13
|
Hack the planet!
|
12
14
|
|
13
15
|
darkhack:
|
14
|
-
date_format:
|
15
|
-
|
16
|
+
date_format: "%x"
|
17
|
+
font_awesome: "357d91f838"
|
16
18
|
|
17
19
|
theme: darkhack
|
18
20
|
|
data/_includes/footer.html
CHANGED
@@ -3,15 +3,21 @@
|
|
3
3
|
<ul>
|
4
4
|
<li>$ socials: </li>
|
5
5
|
{% if site.author.github != nil %}
|
6
|
-
<li><a href="https://github.com/{{ site.author.github }}"
|
6
|
+
<li><a href="https://github.com/{{ site.author.github }}"
|
7
7
|
class="fa fa-github-square"></a></li>
|
8
8
|
{% endif %}
|
9
|
+
{% assign mastodon_instance = site.author.mastodon_instance %}
|
10
|
+
{% assign mastodon_handle = site.author.mastodon_handle %}
|
11
|
+
{% if mastodon_instance != nil and mastodon_handle != nil %}
|
12
|
+
<li><a href="https://{{ mastodon_instance }}/@{{ mastodon_handle }}"
|
13
|
+
class="fa-brands fa-mastodon"></a></li>
|
14
|
+
{% endif %}
|
9
15
|
{% if site.author.twitter != nil %}
|
10
16
|
<li><a href="https://twitter.com/{{ site.author.twitter }}"
|
11
17
|
class="fa fa-twitter"></a></li>
|
12
18
|
{% endif %}
|
13
19
|
{% if site.author.linkedin != nil %}
|
14
|
-
<li><a href="https://linkedin.com/in/{{ site.author.linkedin }}"
|
20
|
+
<li><a href="https://linkedin.com/in/{{ site.author.linkedin }}"
|
15
21
|
class="fa fa-linkedin"></a></li>
|
16
22
|
{% endif %}
|
17
23
|
</ul>
|
data/_includes/head.html
CHANGED
@@ -29,7 +29,7 @@
|
|
29
29
|
</script>
|
30
30
|
{% endif %}
|
31
31
|
{% if page_type contains "mermaid" %}
|
32
|
-
<script type="text/javascript"
|
32
|
+
<script type="text/javascript"
|
33
33
|
src="https://cdn.jsdelivr.net/npm/mermaid/dist/mermaid.min.js">
|
34
34
|
</script>
|
35
35
|
<script>
|
@@ -39,5 +39,8 @@
|
|
39
39
|
});
|
40
40
|
</script>
|
41
41
|
{% endif %}
|
42
|
-
|
42
|
+
{% assign font_awesome = site.darkhack.font_awesome %}
|
43
|
+
{% if font_awesome != nil %}
|
44
|
+
<script src="https://kit.fontawesome.com/{{ font_awesome }}.js" crossorigin="anonymous"></script>
|
45
|
+
{% endif %}
|
43
46
|
</head>
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: darkhack
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0
|
4
|
+
version: 1.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Paul David
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-12-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|