Skip to content
This repository was archived by the owner on Feb 18, 2025. It is now read-only.

Commit a49c03d

Browse files
authored
Add files via upload
1 parent 35166d9 commit a49c03d

Some content is hidden

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

46 files changed

+9466
-0
lines changed

IMG/banner.png

37.2 KB
Loading

IMG/dark_transparent.png

24.5 KB
Loading

IMG/icon_bg.png

18.1 KB
Loading

IMG/light_transparent.png

30.4 KB
Loading

JS/check_accessable.js

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
var shouldRedirect = true;
2+
3+
window.onload = function() {
4+
if (!shouldRedirect) {
5+
document.body.innerHTML = '';
6+
7+
var centerContentDiv = document.createElement('div');
8+
centerContentDiv.className = 'center-content';
9+
10+
centerContentDiv.innerHTML = `
11+
<div class="status-box">
12+
<p><span>&#9888;</span> Diese Website ist momentan nicht erreichbar.</p>
13+
<p>Grund: Die Website wird gerade aktualisiert.</p>
14+
<p>Weitere Informationen finden Sie auf unserem Discord-Server.</p>
15+
</div>
16+
`;
17+
18+
document.body.appendChild(centerContentDiv);
19+
20+
}
21+
}

JS/welcome_console_message.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
console.log("This Website is hosted with GHP (GitHub Pages)")
2+
console.log("Note: This page contains raw information only. There are no external links or redirections, and no downloads or additional content are provided. This is purely raw text.");
3+
console.log("Made by D&I")
4+
console.log("Version : v2024.07.29-DI")
5+
console.log("-------------------------")

contact/index.html

Whitespace-only changes.

geschäftsmäßig/index.html

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
<!DOCTYPE html>
2+
<html lang="de">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
6+
<title>D&amp;I - Geschäftsmäßig</title>
7+
<meta name="description" content="Geschäftsmäßig Page of D&amp;I Projects">
8+
<meta name="keywords" content="D&amp;I, projects, status, contributors, licenses, development, open-source, collaboration, technology, innovation">
9+
<meta name="author" content="D&I">
10+
<script src="showsidebar.js"></script>
11+
<link rel="stylesheet" href="style_profit.css">
12+
<link rel="icon" type="image/x-icon" href="https://d-i-projects.github.io/IMG/icon_bg.png">
13+
<script src="https://d-i-projects.github.io/JS/cookie.js"></script>
14+
<script src="https://d-i-projects.github.io/JS/check_accessable.js" defer></script>
15+
<script src="https://d-i-projects.github.io/JS/welcome_console_message.js"></script>
16+
17+
<meta property="og:title" content="D&amp;I - Geschäftsmäßig">
18+
<meta property="og:description" content="This is a page dedicated to informations of if this all here is *Geschäftsmäßig*.">
19+
<meta property="og:image" content="https://d-i-projects.github.io/IMG/banner.png">
20+
<meta property="og:url" content="https://d-i-projects.github.io/">
21+
<meta property="og:type" content="website">
22+
</head>
23+
24+
<div class="topbar">
25+
<div class="topbar-content">
26+
<nav>
27+
<img class="top-pic-dark" src="https://d-i-projects.github.io/IMG/light_transparent.png">
28+
<img class="top-pic-light" src="https://d-i-projects.github.io/IMG/dark_transparent.png">
29+
<a href="https://d-i-projects.github.io/home"><button>Home</button></a>
30+
<a href="https://d-i-projects.github.io/projects"><button>Projects</button></a>
31+
<a href="https://d-i-projects.github.io/people"><button>People</button></a>
32+
</nav>
33+
</div>
34+
</div>
35+
<div class="page-content">
36+
<h1>Geschäftsmäßig</h1>
37+
<p>The projects on GitHub under D&I Projects are deliberately developed as open source and non-commercial.</p>
38+
<p>They are intended solely for educational and informational purposes. Our goal is to promote knowledge and impart practical skills without pursuing commercial interests.</p>
39+
<p>We believe in free access to knowledge and technology for everyone, regardless of financial or business motives.</p>
40+
<p>Through this approach, we aim to support an open and collaborative community dedicated to the improvement and advancement of technology.</p>
41+
<footer>
42+
<div class="footer-container">
43+
<div class="footer-left">
44+
<a href="https://d-i-projects.github.io/home">Home</a>
45+
<a href="https://d-i-projects.github.io/projects">Projects</a>
46+
<a href="https://d-i-projects.github.io/people">People</a>
47+
</div>
48+
<div class="footer-right">
49+
<a href="https://d-i-projects.github.io/impressum">Impressum</a>
50+
<a href="https://d-i-projects.github.io/profit">Profit</a>
51+
<a href="https://d-i-projects.github.io/geschäftsmäßig">Geschäftsmäßig</a>
52+
</div>
53+
</div>
54+
</footer>
55+
</div>
56+
57+
</body>
58+
</html>

0 commit comments

Comments
 (0)