Skip to content

Commit 2953a37

Browse files
committed
wip
1 parent d79ce6a commit 2953a37

File tree

4 files changed

+0
-95
lines changed

4 files changed

+0
-95
lines changed

_includes/footer.html

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,6 @@
11
<footer class="site-footer">
22
<div class="footer-content">
3-
<div class="visitor-counter"></div>
4-
<p class="blink">⚠️ CLASSIFIED MATERIAL ⚠️</p>
53
<p>&copy; {{ "now" | date: "%Y" }} {{ site.title }}. POWERED BY QUANTUM PROCESSORS & NEURAL NETWORKS.</p>
64
<p>{{ site.description }}</p>
7-
<div class="under-construction">
8-
🚧 UNDER CONSTRUCTION - REALITY.EXE HAS STOPPED WORKING 🚧
9-
</div>
10-
<p><small>Best viewed in Netscape Navigator 4.0 on a 56k modem while jacked into the Matrix</small></p>
115
</div>
126
</footer>

_includes/header.html

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,6 @@
11
<header class="site-header">
22
<div class="header-content">
3-
<h1 class="glitch" data-text="{{ site.title | default: 'NEURAL MATRIX ARCHIVES' }}">
4-
<a href="{{ '/' | relative_url }}">{{ site.title | default: "NEURAL MATRIX ARCHIVES" }}</a>
5-
</h1>
63
{% if site.tagline %}<p class="site-tagline">{{ site.tagline }}</p>{% endif %}
7-
<div class="marquee">
8-
⚡ ACCESSING CLASSIFIED RESEARCH DATABASES ⚡ QUANTUM ENCRYPTION ACTIVE ⚡ UNAUTHORIZED ACCESS WILL BE TRACED ⚡
9-
</div>
104
<nav class="site-nav">
115
<a href="{{ '/' | relative_url }}">Home</a>
126
<a href="{{ 'social/' | relative_url }}">Social Hacking</a>

_includes/neural_network.html

Lines changed: 0 additions & 34 deletions
This file was deleted.

_layouts/default.html

Lines changed: 0 additions & 49 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@
88
<link rel="icon" type="image/x-icon" href="{{ 'favicon.ico' | relative_url }}">
99
</head>
1010
<body>
11-
<!-- Matrix Rain Effect -->
12-
<div class="matrix-rain" id="matrixRain"></div>
1311
<!-- Floating Particles -->
1412
<div class="particle-field" id="particleField"></div>
1513

@@ -20,53 +18,6 @@
2018
{% include footer.html %}
2119
<!-- JavaScript for Effects -->
2220
<script>
23-
// Matrix Rain Effect
24-
function createMatrixRain() {
25-
const matrixContainer = document.getElementById('matrixRain');
26-
if (!matrixContainer) return;
27-
// Clear any existing content
28-
matrixContainer.innerHTML = '';
29-
30-
31-
const chars = '01アイウエオカキクケコサシスセソタチツテトナニヌネノハヒフヘホマミムメモヤユヨラリルレロワヲン';
32-
33-
34-
35-
// Calculate number of columns based on screen width
36-
const numColumns = Math.floor(window.innerWidth / 20);
37-
38-
for (let i = 0; i < numColumns; i++) {
39-
const column = document.createElement('div');
40-
column.className = 'matrix-column';
41-
42-
column.style.left = (i * 20) + 'px';
43-
column.style.animationDuration = (Math.random() * 4 + 3) + 's';
44-
column.style.animationDelay = Math.random() * 2 + 's';
45-
46-
let text = '';
47-
const numChars = Math.floor(window.innerHeight / 20);
48-
for (let j = 0; j < numChars; j++) {
49-
text += chars[Math.floor(Math.random() * chars.length)] + '\n';
50-
}
51-
column.textContent = text;
52-
matrixContainer.appendChild(column);
53-
}
54-
55-
// Refresh columns periodically
56-
setInterval(() => {
57-
const columns = matrixContainer.querySelectorAll('.matrix-column');
58-
columns.forEach(column => {
59-
if (Math.random() > 0.95) {
60-
let text = '';
61-
const numChars = Math.floor(window.innerHeight / 20);
62-
for (let j = 0; j < numChars; j++) {
63-
text += chars[Math.floor(Math.random() * chars.length)] + '\n';
64-
}
65-
column.textContent = text;
66-
}
67-
});
68-
}, 150);
69-
}
7021
// Floating Particles
7122
function createParticles() {
7223
const particleContainer = document.getElementById('particleField');

0 commit comments

Comments
 (0)