Skip to content

Commit b688ba8

Browse files
committed
Auto overwrite: 2025-05-04_11-35
0 parents  commit b688ba8

75 files changed

Lines changed: 2324 additions & 0 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

DEPLOY.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# web github pages theme V10 Deployment Guide
2+
3+
## GitHub Pages
4+
1. Create repository: /
5+
2. Push this project:
6+
```bash
7+
git init
8+
git add .
9+
git commit -m "web github pages theme V10 Initial Commit"
10+
git remote add origin https://github.com/username//.git
11+
git push -u origin main
12+
```
13+
3. Enable GitHub Pages in repo settings
14+
15+
## Local Testing
16+
```bash
17+
python -m http.server 8000
18+
```

assets/css/main.css

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
/* web github pages theme V10 - Dynamic Theming */
2+
:root {
3+
--primary: #4a6fa5;
4+
--accent: #6a1b9a;
5+
--text: #333;
6+
--bg: #f8f9fa;
7+
--card: #fff;
8+
--border: #e0e0e0;
9+
}
10+
11+
[data-theme="dark"] {
12+
--primary: #6a8fc7;
13+
--text: #f0f0f0;
14+
--bg: #121212;
15+
--card: #1e1e1e;
16+
--border: #333;
17+
}
18+
19+
/* Base Styles */
20+
body {
21+
font-family: 'Segoe UI', system-ui, sans-serif;
22+
margin: 0;
23+
line-height: 1.6;
24+
background: var(--bg);
25+
color: var(--text);
26+
transition: background 0.3s, color 0.2s;
27+
}
28+
29+
/* Grid System */
30+
.grid {
31+
display: grid;
32+
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
33+
gap: 1.5rem;
34+
padding: 1.5rem;
35+
max-width: 1200px;
36+
margin: 0 auto;
37+
}
38+
39+
/* Cards */
40+
.card {
41+
background: var(--card);
42+
border-radius: 12px;
43+
padding: 1.5rem;
44+
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
45+
transition: transform 0.3s, box-shadow 0.3s;
46+
border-left: 4px solid var(--accent);
47+
}
48+
49+
.card:hover {
50+
transform: translateY(-5px);
51+
box-shadow: 0 5px 15px rgba(0,0,0,0.15);
52+
}
53+
54+
/* Responsive Design */
55+
@media (max-width: 768px) {
56+
.grid {
57+
grid-template-columns: 1fr;
58+
padding: 1rem;
59+
}
60+
}

assets/js/main.js

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
// web github pages theme V10 - Core Functionality
2+
document.addEventListener('DOMContentLoaded', () => {
3+
// Theme Management
4+
const themeToggle = document.getElementById('theme-toggle');
5+
const savedTheme = localStorage.getItem('theme') || 'dark';
6+
7+
// Apply saved theme
8+
document.documentElement.setAttribute('data-theme',
9+
savedTheme === 'system' ?
10+
(window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light') :
11+
savedTheme
12+
);
13+
14+
// Setup toggle if exists
15+
if (themeToggle) {
16+
themeToggle.checked = savedTheme === 'dark';
17+
themeToggle.addEventListener('change', (e) => {
18+
const theme = e.target.checked ? 'dark' : 'light';
19+
document.documentElement.setAttribute('data-theme', theme);
20+
localStorage.setItem('theme', theme);
21+
});
22+
}
23+
24+
// Service Worker Registration
25+
if ('serviceWorker' in navigator) {
26+
navigator.serviceWorker.register('/sw.js')
27+
.then(reg => console.log('Service Worker registered'))
28+
.catch(err => console.log('SW registration failed:', err));
29+
}
30+
});

index.html

Lines changed: 99 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,99 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>full sample design free bug</title>
7+
<link rel="stylesheet" href="assets/css/main.css">
8+
<style>
9+
.hero {
10+
background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
11+
color: white;
12+
padding: 4rem 1rem;
13+
text-align: center;
14+
}
15+
.theme-toggle {
16+
position: absolute;
17+
top: 1rem;
18+
right: 1rem;
19+
}
20+
</style>
21+
</head>
22+
<body>
23+
<div class="theme-toggle">
24+
<label class="switch">
25+
<input type="checkbox" id="theme-toggle">
26+
<span class="slider">🌓</span>
27+
</label>
28+
</div>
29+
30+
<header class="hero">
31+
<h1>full sample design free bug</h1>
32+
<p>Your Complete Security template Portal</p>
33+
</header>
34+
35+
<main>
36+
<div class="grid">
37+
<h2 style="grid-column:1/-1">Featured Tools</h2>
38+
<div class='card'>
39+
<h3>Security Tool 1</h3>
40+
<p>Essential for Termux security</p>
41+
<a href='tools/tool1/'>Learn More →</a>
42+
</div>
43+
<div class='card'>
44+
<h3>Security Tool 2</h3>
45+
<p>Essential for Termux security</p>
46+
<a href='tools/tool2/'>Learn More →</a>
47+
</div>
48+
<div class='card'>
49+
<h3>Security Tool 3</h3>
50+
<p>Essential for Termux security</p>
51+
<a href='tools/tool3/'>Learn More →</a>
52+
</div>
53+
<div class='card'>
54+
<h3>Security Tool 4</h3>
55+
<p>Essential for Termux security</p>
56+
<a href='tools/tool4/'>Learn More →</a>
57+
</div>
58+
<div class='card'>
59+
<h3>Security Tool 5</h3>
60+
<p>Essential for Termux security</p>
61+
<a href='tools/tool5/'>Learn More →</a>
62+
</div>
63+
64+
<h2 style="grid-column:1/-1;margin-top:2rem">Latest Posts</h2>
65+
<div class='card'>
66+
<h3>Post 1</h3>
67+
<p></p>
68+
<a href='posts/post1/'>Read Post →</a>
69+
</div>
70+
<div class='card'>
71+
<h3>Post 2</h3>
72+
<p></p>
73+
<a href='posts/post2/'>Read Post →</a>
74+
</div>
75+
<div class='card'>
76+
<h3>Post 3</h3>
77+
<p></p>
78+
<a href='posts/post3/'>Read Post →</a>
79+
</div>
80+
<div class='card'>
81+
<h3>Post 4</h3>
82+
<p></p>
83+
<a href='posts/post4/'>Read Post →</a>
84+
</div>
85+
<div class='card'>
86+
<h3>Post 5</h3>
87+
<p></p>
88+
<a href='posts/post5/'>Read Post →</a>
89+
</div>
90+
</div>
91+
</main>
92+
93+
<footer style="text-align:center;padding:2rem;margin-top:2rem;border-top:1px solid var(--border)">
94+
<p>Built with ♥ powered b453zsh</p>
95+
</footer>
96+
97+
<script src="assets/js/main.js"></script>
98+
</body>
99+
</html>

posts/post1/index.html

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
<!DOCTYPE html>
2+
<html><head>
3+
<meta charset="UTF-8">
4+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
5+
<title></title>
6+
<link rel="stylesheet" href="../../assets/css/main.css">
7+
</head><body>
8+
<div class="grid">
9+
<article class="card" style="grid-column:1/-1">
10+
<p>---</p>
11+
<p>title: "Post 1 - 2025-05-05"</p>
12+
<p>date: 2025-05-05</p>
13+
<p>author: "b453zsh"</p>
14+
<p>tags: [security, termux, tutorial]</p>
15+
<p>---</p>
16+
<p></p>
17+
<h1>Advanced Security Technique 1</h1>
18+
<p></p>
19+
<h2>Introduction</h2>
20+
<p>This post covers cutting-edge security methods optimized for Termux.</p>
21+
<p></p>
22+
<h2>Key Features</h2>
23+
<p>- Feature A</p>
24+
<p>- Feature B</p>
25+
<p>- Feature C</p>
26+
<p></p>
27+
<h2>Code Example</h2>
28+
<pre><code>
29+
<h1>Sample code</h1>
30+
echo "Secure operation 1"
31+
</code></pre>
32+
<footer><time>2025-05-05</time></footer>
33+
</article></div>
34+
<script src="../../assets/js/main.js"></script>
35+
</body></html>

posts/post1/post.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
---
2+
title: "Post 1 - 2025-05-05"
3+
date: 2025-05-05
4+
author: "b453zsh"
5+
tags: [security, termux, tutorial]
6+
---
7+
8+
# Advanced Security Technique 1
9+
10+
## Introduction
11+
This post covers cutting-edge security methods optimized for Termux.
12+
13+
## Key Features
14+
- Feature A
15+
- Feature B
16+
- Feature C
17+
18+
## Code Example
19+
```bash
20+
# Sample code
21+
echo "Secure operation 1"
22+
```

posts/post10/index.html

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
<!DOCTYPE html>
2+
<html><head>
3+
<meta charset="UTF-8">
4+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
5+
<title></title>
6+
<link rel="stylesheet" href="../../assets/css/main.css">
7+
</head><body>
8+
<div class="grid">
9+
<article class="card" style="grid-column:1/-1">
10+
<p>---</p>
11+
<p>title: "Post 10 - 2025-05-14"</p>
12+
<p>date: 2025-05-14</p>
13+
<p>author: "b453zsh"</p>
14+
<p>tags: [security, termux, tutorial]</p>
15+
<p>---</p>
16+
<p></p>
17+
<h1>Advanced Security Technique 10</h1>
18+
<p></p>
19+
<h2>Introduction</h2>
20+
<p>This post covers cutting-edge security methods optimized for Termux.</p>
21+
<p></p>
22+
<h2>Key Features</h2>
23+
<p>- Feature A</p>
24+
<p>- Feature B</p>
25+
<p>- Feature C</p>
26+
<p></p>
27+
<h2>Code Example</h2>
28+
<pre><code>
29+
<h1>Sample code</h1>
30+
echo "Secure operation 10"
31+
</code></pre>
32+
<footer><time>2025-05-14</time></footer>
33+
</article></div>
34+
<script src="../../assets/js/main.js"></script>
35+
</body></html>

posts/post10/post.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
---
2+
title: "Post 10 - 2025-05-14"
3+
date: 2025-05-14
4+
author: "b453zsh"
5+
tags: [security, termux, tutorial]
6+
---
7+
8+
# Advanced Security Technique 10
9+
10+
## Introduction
11+
This post covers cutting-edge security methods optimized for Termux.
12+
13+
## Key Features
14+
- Feature A
15+
- Feature B
16+
- Feature C
17+
18+
## Code Example
19+
```bash
20+
# Sample code
21+
echo "Secure operation 10"
22+
```

posts/post11/index.html

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
<!DOCTYPE html>
2+
<html><head>
3+
<meta charset="UTF-8">
4+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
5+
<title></title>
6+
<link rel="stylesheet" href="../../assets/css/main.css">
7+
</head><body>
8+
<div class="grid">
9+
<article class="card" style="grid-column:1/-1">
10+
<p>---</p>
11+
<p>title: "Post 11 - 2025-05-15"</p>
12+
<p>date: 2025-05-15</p>
13+
<p>author: "b453zsh"</p>
14+
<p>tags: [security, termux, tutorial]</p>
15+
<p>---</p>
16+
<p></p>
17+
<h1>Advanced Security Technique 11</h1>
18+
<p></p>
19+
<h2>Introduction</h2>
20+
<p>This post covers cutting-edge security methods optimized for Termux.</p>
21+
<p></p>
22+
<h2>Key Features</h2>
23+
<p>- Feature A</p>
24+
<p>- Feature B</p>
25+
<p>- Feature C</p>
26+
<p></p>
27+
<h2>Code Example</h2>
28+
<pre><code>
29+
<h1>Sample code</h1>
30+
echo "Secure operation 11"
31+
</code></pre>
32+
<footer><time>2025-05-15</time></footer>
33+
</article></div>
34+
<script src="../../assets/js/main.js"></script>
35+
</body></html>

posts/post11/post.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
---
2+
title: "Post 11 - 2025-05-15"
3+
date: 2025-05-15
4+
author: "b453zsh"
5+
tags: [security, termux, tutorial]
6+
---
7+
8+
# Advanced Security Technique 11
9+
10+
## Introduction
11+
This post covers cutting-edge security methods optimized for Termux.
12+
13+
## Key Features
14+
- Feature A
15+
- Feature B
16+
- Feature C
17+
18+
## Code Example
19+
```bash
20+
# Sample code
21+
echo "Secure operation 11"
22+
```

0 commit comments

Comments
 (0)