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

Commit 5bc4887

Browse files
authored
Add files via upload
1 parent 2109f81 commit 5bc4887

34 files changed

+3086
-1
lines changed

FONTAWESOME.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Theme Button
2+
3+
Dark/Light Mode Icons made by <a href="https://fontawesome.com" title="Font Awesome">Font Awesome</a> under <a href="https://creativecommons.org/licenses/by/4.0/" title="Creative Commons BY 4.0">CC BY 4.0</a>.</p>

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

IMPRESSUM.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# D&I Projects - Impressum
2+
3+
## [Impressum](https://d-i-projects.github.io/website/impressum/)
4+
5+
---
6+
7+
### Cookie Banner
8+
9+
We collect data to remember your preferences for dark and light mode, ensuring you have the best possible experience on our website.
10+
11+
---
12+
13+
## Impressum
14+
15+
**D&I Projects**
16+
17+
**E-mail:** [projectsdi02@gmail.com](mailto:projectsdi02@gmail.com)
18+
19+
We will not provide more information due to privacy reasons. For complaints or suggestions of any kind feel free to contact us via email.
20+
21+
This "Impressum," as defined in Germany, is not fully filled out because we believe we do not fall under the legal requirements specified by law.
22+
23+
This website is a raw information page. If you have any complaints, please contact us.
24+
25+
[**DDG § 5**](https://www.gesetze-im-internet.de/ddg/__5.html)
26+
27+
Entsprechend DDG § 5(1)* liegt für diese Seite keine Impressumspflicht vor. Dennoch stellen wir die folgende Emailadresse für etwaige Anfragen und Anregungen zur Verfügung.
28+
29+
*DDG § 5(1) Diensteanbieter haben für [geschäftsmäßige](https://d-i-projects.github.io/website/geschäftsmäßig), in der Regel [gegen Entgelt](https://d-i-projects.github.io/website/profit) angebotene digitale Dienste folgende Informationen, die leicht erkennbar und unmittelbar erreichbar sein müssen, ständig verfügbar zu halten ([](https://www.gesetze-im-internet.de/ddg/__5.html))*

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/cookie.js

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
document.addEventListener("DOMContentLoaded", function() {
2+
const cookieBanner = document.getElementById('cookie-banner');
3+
const acceptCookiesButton = document.getElementById('accept-cookies');
4+
5+
if (localStorage.getItem('cookiesAccepted')) {
6+
cookieBanner.style.display = 'none';
7+
} else {
8+
cookieBanner.style.display = 'block';
9+
}
10+
11+
acceptCookiesButton.addEventListener('click', function() {
12+
localStorage.setItem('cookiesAccepted', true);
13+
cookieBanner.style.display = 'none';
14+
});
15+
});

JS/welcome_console_message.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
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.23-DI-(4)")
5+
console.log("THIS WEBSITE IS NOT WORKING PROPERLY, THIS IS JUST A PREVIEW!")
6+
console.log("-------------------------")

PROFIT.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Profit Statement
2+
3+
This project is not created for the purpose of generating revenue or making money. It is purely a non-profit initiative aimed at contributing to the community and advancing knowledge.
4+
5+
**Key Points:**
6+
- This project is open source and freely available for educational and non-commercial use.
7+
- No funds are generated or sought through this project.
8+
- Our primary goal is to foster learning, collaboration, and innovation without financial motivations.
9+
10+
We encourage contributions from the community to enhance the project's capabilities and reach.
11+
12+
We thank all people that use and like our Software!

0 commit comments

Comments
 (0)