helldivers-theme 1.0.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.
data/contact.md ADDED
@@ -0,0 +1,55 @@
1
+ ---
2
+ layout: default
3
+ title: Comms
4
+ permalink: /contact/
5
+ ---
6
+
7
+ <div class="comms-container">
8
+
9
+ <div class="section-header">
10
+ <h2>// ESTABLISH CONTACT</h2>
11
+ <div class="line-accent"></div>
12
+ <p style="margin-top: 10px; color: #aaa;">
13
+ Secure channel open. Transmit your inquiry to Command.
14
+ </p>
15
+ </div>
16
+
17
+ <!-- FORM START -->
18
+ <!-- Replace the ACTION URL below with your actual Formspree URL -->
19
+ <form action="https://formspree.io/f/yoursecretcode" method="POST" class="terminal-form">
20
+
21
+ <div class="form-group">
22
+ <label for="name">// CODENAME</label>
23
+ <input type="text" id="name" name="name" placeholder="Enter your callsign..." required>
24
+ </div>
25
+
26
+ <div class="form-group">
27
+ <label for="email">// RETURN FREQUENCY (EMAIL)</label>
28
+ <input type="email" id="email" name="email" placeholder="user@superearth.gov" required>
29
+ </div>
30
+
31
+ <div class="form-group">
32
+ <label for="type">// TRANSMISSION TYPE</label>
33
+ <select id="type" name="type">
34
+ <option value="General Inquiry">General Inquiry</option>
35
+ <option value="Recruitment">Recruitment Question</option>
36
+ <option value="Mission Report">Mission Report</option>
37
+ <option value="Bug Report">Technical Issue</option>
38
+ </select>
39
+ </div>
40
+
41
+ <div class="form-group">
42
+ <label for="message">// MESSAGE DATA</label>
43
+ <textarea id="message" name="message" rows="6" placeholder="Type your transmission here..." required></textarea>
44
+ </div>
45
+
46
+ <!-- Hidden field to redirect back to your site after sending (Optional) -->
47
+ <input type="hidden" name="_next" value="{{ site.url }}{{ site.baseurl }}/contact/thanks/">
48
+
49
+ <button type="submit" class="enlist-btn" style="width: 100%; margin-top: 20px;">
50
+ >> TRANSMIT DATA <<
51
+ </button>
52
+ </form>
53
+ <!-- FORM END -->
54
+
55
+ </div>
data/index.html ADDED
@@ -0,0 +1,66 @@
1
+ ---
2
+ layout: default
3
+ title: Home
4
+ ---
5
+
6
+ <aside class="sidebar">
7
+
8
+ <!-- PANEL 1: BROADCAST -->
9
+ <div class="panel-box">
10
+ <h3>// EMERGENCY BROADCAST</h3>
11
+ <div class="alert-marquee">
12
+ <div class="marquee-content">
13
+ <span>DAGGER SQUAD MEETING: FRIDAY 2000 HOURS</span>
14
+ <span>NEW WARBOUND DETECTED IN SECTOR 7</span>
15
+ <span>DEFEND THE SUPER EARTH COLONIES</span>
16
+ <span>FOR MANAGED DEMOCRACY!</span>
17
+ <span>DAGGER SQUAD MEETING: FRIDAY 2000 HOURS</span>
18
+ </div>
19
+ </div>
20
+ </div>
21
+
22
+ <!-- PANEL 2: RSS FEED -->
23
+ <div class="panel-box">
24
+ <h3>// MINISTRY UPDATES</h3>
25
+ <div id="rss-feed" class="rss-container">
26
+ <p class="loading-text">ESTABLISHING UPLINK...</p>
27
+ </div>
28
+ </div>
29
+
30
+ <!-- PANEL 3: STRATAGEMS -->
31
+ <div class="panel-box">
32
+ <h3>// AVAILABLE STRATAGEMS</h3>
33
+ <div style="display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; margin-top: 10px;">
34
+ <img src="{{ '/assets/img/stratagems/eagle-strike.png' | relative_url }}" width="50" alt="Eagle" style="filter: drop-shadow(0 0 5px var(--hd-cyan));">
35
+ <img src="{{ '/assets/img/stratagems/orbital-laser.png' | relative_url }}" width="50" alt="Laser" style="filter: drop-shadow(0 0 5px var(--hd-cyan));">
36
+ <img src="{{ '/assets/img/stratagems/hellbomb.png' | relative_url }}" width="50" alt="Bomb" style="filter: drop-shadow(0 0 5px var(--hd-cyan));">
37
+ </div>
38
+ </div>
39
+ </aside>
40
+
41
+ <section class="content-area">
42
+ <div class="section-header" style="margin-bottom: 50px;">
43
+ <h2>// SQUAD COMMANDERS</h2>
44
+ <div class="line-accent"></div>
45
+ </div>
46
+
47
+ <div class="command-grid">
48
+ <!-- DYNAMIC LEADER LOOP -->
49
+ {% for leader in site.data.squad.leaders %}
50
+ <div class="leader-card">
51
+ <div class="octagon-mask">
52
+ <!-- Checks if image exists, otherwise uses a placeholder -->
53
+ {% if leader.image contains 'http' %}
54
+ <img src="{{ leader.image }}" alt="{{ leader.name }}">
55
+ {% else %}
56
+ <img src="{{ '/assets/img/leaders/' | append: leader.image | relative_url }}" alt="{{ leader.name }}">
57
+ {% endif %}
58
+ </div>
59
+ <div class="leader-info">
60
+ <h4>{{ leader.name }}</h4>
61
+ <span>{{ leader.role }}</span>
62
+ </div>
63
+ </div>
64
+ {% endfor %}
65
+ </div>
66
+ </section>
data/join.md ADDED
@@ -0,0 +1,75 @@
1
+ ---
2
+ layout: default
3
+ title: Enlist
4
+ permalink: /join/
5
+ ---
6
+
7
+ <div class="enlist-container">
8
+
9
+ <!-- STATUS BANNER -->
10
+ <div class="status-banner {% if site.data.squad.recruitment_status == 'OPEN' %}status-open{% elsif site.data.squad.recruitment_status == 'CLOSED' %}status-closed{% else %}status-limited{% endif %}">
11
+ <div class="banner-icon">
12
+ {% if site.data.squad.recruitment_status == 'OPEN' %}
13
+ <span>//</span>
14
+ {% elsif site.data.squad.recruitment_status == 'CLOSED' %}
15
+ <span>X</span>
16
+ {% else %}
17
+ <span>!</span>
18
+ {% endif %}
19
+ </div>
20
+ <div class="banner-text">
21
+ <h2>RECRUITMENT STATUS: {{ site.data.squad.recruitment_status | upcase }}</h2>
22
+ <p>
23
+ {% if site.data.squad.recruitment_status == 'OPEN' %}
24
+ Super Earth needs you! Drop pods are launching hourly.
25
+ {% elsif site.data.squad.recruitment_status == 'CLOSED' %}
26
+ Squad capacity reached. Check back later, Helldiver.
27
+ {% else %}
28
+ Limited slots available. Priority given to veterans.
29
+ {% endif %}
30
+ </p>
31
+ </div>
32
+ </div>
33
+
34
+ <!-- REQUIREMENTS GRID -->
35
+ <div class="section-header" style="margin-top: 40px;">
36
+ <h2>// CLEARANCE CRITERIA</h2>
37
+ <div class="line-accent"></div>
38
+ </div>
39
+
40
+ <div class="requirements-grid">
41
+ {% for req in site.data.squad.requirements %}
42
+ <div class="req-card status-{{ req.status }}">
43
+ <div class="req-label">{{ req.label }}</div>
44
+ <div class="req-value">{{ req.value }}</div>
45
+ <div class="req-status-indicator">
46
+ {% if req.status == 'verified' %}
47
+ <span>✓ VERIFIED</span>
48
+ {% elsif req.status == 'pending' %}
49
+ <span>⚠ REVIEW</span>
50
+ {% else %}
51
+ <span>✗ FAILED</span>
52
+ {% endif %}
53
+ </div>
54
+ </div>
55
+ {% endfor %}
56
+ </div>
57
+
58
+ <!-- FINAL CALL TO ACTION -->
59
+ <div class="launch-bay">
60
+ <p class="launch-text">// CONFIRMED? INITIATE DROP SEQUENCE //</p>
61
+
62
+ {% if site.data.squad.recruitment_status == 'OPEN' or site.data.squad.recruitment_status == 'LIMITED' %}
63
+ <a href="{{ site.data.squad.discord_link }}" target="_blank" class="enlist-btn launch-btn">
64
+ >> INITIATE DROP <<
65
+ </a>
66
+ <p class="disclaimer">* By clicking, you agree to serve Super Earth indefinitely.</p>
67
+ {% else %}
68
+ <button class="enlist-btn launch-btn disabled" disabled>
69
+ >> RECRUITMENT HALTED <<
70
+ </button>
71
+ <p class="disclaimer">Contact Command for exemption requests.</p>
72
+ {% endif %}
73
+ </div>
74
+
75
+ </div>
data/watch.md ADDED
@@ -0,0 +1,51 @@
1
+ ---
2
+ layout: default
3
+ title: Live Feed
4
+ permalink: /watch/
5
+ ---
6
+
7
+ <div class="watch-container">
8
+
9
+ <div class="section-header">
10
+ <h2>// LIVE BROADCAST</h2>
11
+ <div class="line-accent"></div>
12
+ <p style="margin-top: 10px; color: #aaa;">
13
+ Tuning into frequency: <span style="color: var(--hd-cyan); font-weight: bold;">{{ site.twitch_channel }}</span>
14
+ </p>
15
+ </div>
16
+
17
+ <!-- TWITCH EMBED CONTAINER -->
18
+ <div class="twitch-embed-wrapper" id="twitch-video-container">
19
+ <div id="twitch-embed"></div>
20
+ </div>
21
+
22
+ <div style="margin-top: 20px; text-align: center; font-size: 0.9rem; color: #888;">
23
+ <p>// IF STREAM IS OFFLINE, PLAYER WILL SHOW LAST ACTIVE CONTENT //</p>
24
+ </div>
25
+
26
+ </div>
27
+
28
+ <!-- TWITCH EMBED SCRIPT -->
29
+ <script src="https://embed.twitch.tv/embed/v1.js"></script>
30
+ <script type="text/javascript">
31
+ document.addEventListener('DOMContentLoaded', function() {
32
+
33
+ // Pulls the domain from config.
34
+ // IMPORTANT: Update 'twitch_parent_domain' in _config.yml before deploying!
35
+ var parentDomain = "{{ site.twitch_parent_domain }}";
36
+
37
+ // Fallback if config is empty
38
+ if (!parentDomain || parentDomain === "") {
39
+ parentDomain = window.location.hostname;
40
+ }
41
+
42
+ new Twitch.Embed("twitch-embed", {
43
+ width: "100%",
44
+ height: 650,
45
+ channel: "{{ site.twitch_channel }}",
46
+ layout: "video",
47
+ autoplay: false,
48
+ parent: [parentDomain]
49
+ });
50
+ });
51
+ </script>
metadata ADDED
@@ -0,0 +1,119 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: helldivers-theme
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0
5
+ platform: ruby
6
+ authors:
7
+ - DAR
8
+ bindir: bin
9
+ cert_chain: []
10
+ date: 1980-01-02 00:00:00.000000000 Z
11
+ dependencies:
12
+ - !ruby/object:Gem::Dependency
13
+ name: jekyll
14
+ requirement: !ruby/object:Gem::Requirement
15
+ requirements:
16
+ - - "~>"
17
+ - !ruby/object:Gem::Version
18
+ version: '4.3'
19
+ type: :runtime
20
+ prerelease: false
21
+ version_requirements: !ruby/object:Gem::Requirement
22
+ requirements:
23
+ - - "~>"
24
+ - !ruby/object:Gem::Version
25
+ version: '4.3'
26
+ - !ruby/object:Gem::Dependency
27
+ name: jekyll-feed
28
+ requirement: !ruby/object:Gem::Requirement
29
+ requirements:
30
+ - - "~>"
31
+ - !ruby/object:Gem::Version
32
+ version: '0.15'
33
+ type: :runtime
34
+ prerelease: false
35
+ version_requirements: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - "~>"
38
+ - !ruby/object:Gem::Version
39
+ version: '0.15'
40
+ - !ruby/object:Gem::Dependency
41
+ name: jekyll-sitemap
42
+ requirement: !ruby/object:Gem::Requirement
43
+ requirements:
44
+ - - "~>"
45
+ - !ruby/object:Gem::Version
46
+ version: '1.4'
47
+ type: :runtime
48
+ prerelease: false
49
+ version_requirements: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - "~>"
52
+ - !ruby/object:Gem::Version
53
+ version: '1.4'
54
+ - !ruby/object:Gem::Dependency
55
+ name: jekyll-seo-tag
56
+ requirement: !ruby/object:Gem::Requirement
57
+ requirements:
58
+ - - "~>"
59
+ - !ruby/object:Gem::Version
60
+ version: '2.8'
61
+ type: :runtime
62
+ prerelease: false
63
+ version_requirements: !ruby/object:Gem::Requirement
64
+ requirements:
65
+ - - "~>"
66
+ - !ruby/object:Gem::Version
67
+ version: '2.8'
68
+ description: A responsive, data-driven Jekyll theme designed for Helldivers 2 clans.
69
+ Includes dynamic leader profiles, Twitch integration, RSS feeds, and a sci-fi terminal
70
+ aesthetic.
71
+ email:
72
+ - darbookspub@gmail.com
73
+ executables: []
74
+ extensions: []
75
+ extra_rdoc_files: []
76
+ files:
77
+ - README.md
78
+ - _config.yml
79
+ - _data/squad.yaml
80
+ - _layouts/default.html
81
+ - _sass/_base.scss
82
+ - _sass/_components.scss
83
+ - _sass/_layout.scss
84
+ - _sass/_sidebar.scss
85
+ - _sass/_variables.scss
86
+ - about.md
87
+ - assets/css/style.scss
88
+ - assets/img/bg/space-deck.jpg
89
+ - assets/js/main.js
90
+ - assets/js/particles.js
91
+ - assets/js/profile-modal.js
92
+ - assets/main.scss
93
+ - contact.md
94
+ - index.html
95
+ - join.md
96
+ - watch.md
97
+ homepage: https://github.com/breakthebull/daggersquad
98
+ licenses:
99
+ - MIT
100
+ metadata: {}
101
+ rdoc_options: []
102
+ require_paths:
103
+ - lib
104
+ required_ruby_version: !ruby/object:Gem::Requirement
105
+ requirements:
106
+ - - ">="
107
+ - !ruby/object:Gem::Version
108
+ version: '0'
109
+ required_rubygems_version: !ruby/object:Gem::Requirement
110
+ requirements:
111
+ - - ">="
112
+ - !ruby/object:Gem::Version
113
+ version: '0'
114
+ requirements: []
115
+ rubygems_version: 4.0.8
116
+ specification_version: 4
117
+ summary: A Helldivers 2 inspired Jekyll theme featuring holographic UI, particle backgrounds,
118
+ and squad management.
119
+ test_files: []