|
| 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&I - diec</title> |
| 7 | + <meta name="description" content="diec/D&I Projects"> |
| 8 | + <meta name="keywords" content="D&I, projects, status, contributors, licenses, development, open-source, collaboration, technology, innovation"> |
| 9 | + <meta name="author" content="D&I"> |
| 10 | + <link rel="stylesheet" href="style_project_diec.css"> |
| 11 | + <link rel="icon" type="image/x-icon" href="https://d-i-projects.github.io/IMG/icon_bg.png"> |
| 12 | + <script src="https://d-i-projects.github.io/JS/cookie.js"></script> |
| 13 | + <script src="https://d-i-projects.github.io/JS/check_accessable.js" defer></script> |
| 14 | + <script src="https://d-i-projects.github.io/JS/welcome_console_message.js"></script> |
| 15 | + <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css"> |
| 16 | + <meta property="og:title" content="D&I - diec"> |
| 17 | + <meta property="og:description" content="This is the diec project page of D&I Projects!"> |
| 18 | + <meta property="og:image" content="https://d-i-projects.github.io/IMG/banner.png"> |
| 19 | + <meta property="og:url" content="https://d-i-projects.github.io/"> |
| 20 | + <meta property="og:type" content="website"> |
| 21 | +</head> |
| 22 | +<body> |
| 23 | + <div id="cookie-banner" class="cookie-banner"> |
| 24 | + <div class="cookie-content"> |
| 25 | + <p>We collect data to remember your preferences for light and dark mode, ensuring you have the best possible experience on our website.</p> |
| 26 | + <button class="button_accept" id="accept-cookies">Accept</button> |
| 27 | + <a href="https://d-i-projects.github.io/leave"><button class="button_leave">Leave</button></a> |
| 28 | + </div> |
| 29 | + </div> |
| 30 | + <div class="topbar"> |
| 31 | + <div class="topbar-content"> |
| 32 | + <nav> |
| 33 | + <img class="top-pic-dark" src="https://d-i-projects.github.io/IMG/light_transparent.png"> |
| 34 | + <img class="top-pic-light" src="https://d-i-projects.github.io/IMG/dark_transparent.png"> |
| 35 | + <a href="https://d-i-projects.github.io/home"><button>Home</button></a> |
| 36 | + <a href="https://d-i-projects.github.io/projects"><button>Projects</button></a> |
| 37 | + <a href="https://d-i-projects.github.io/people"><button>People</button></a> |
| 38 | + </nav> |
| 39 | + </div> |
| 40 | + </div> |
| 41 | + <div class="sidebar"> |
| 42 | + <h1>diec</h1> |
| 43 | + <a href="https://d-i-projects.github.io/project/diec/"><button>Overview</button></a> |
| 44 | + <a href="https://d-i-projects.github.io/project/diec/version-history"><button>Version History</button></a> |
| 45 | + <a href="https://d-i-projects.github.io/project/diec/documentation"><button>Documentation</button></a> |
| 46 | + <a href="https://d-i-projects.github.io/project/diec/source-code"><button>Source Code</button></a> |
| 47 | + </div> |
| 48 | + <div class="page-content"> |
| 49 | + <div class="overview"> |
| 50 | + <h1>Version Hisotry</h1> |
| 51 | + <div class="table_t"> |
| 52 | + <table> |
| 53 | + <tr> |
| 54 | + <th>Language</th> |
| 55 | + <th>Contributors</th> |
| 56 | + <th>Latest Version</th> |
| 57 | + </tr> |
| 58 | + <tr> |
| 59 | + <td>Python</td> |
| 60 | + <td>@wfxey, @ivole32</td> |
| 61 | + <td>v1.8</td> |
| 62 | + </tr> |
| 63 | + </table> |
| 64 | + </div> |
| 65 | + </div> |
| 66 | + <footer> |
| 67 | + <div class="footer-container"> |
| 68 | + <div class="footer-left"> |
| 69 | + <a href="https://d-i-projects.github.io/home">Home</a> |
| 70 | + <a href="https://d-i-projects.github.io/projects">Projects</a> |
| 71 | + <a href="https://d-i-projects.github.io/people">People</a> |
| 72 | + <p> </p> |
| 73 | + </div> |
| 74 | + <div class="footer-right"> |
| 75 | + <a href="https://d-i-projects.github.io/impressum">Impressum</a> |
| 76 | + <a href="https://d-i-projects.github.io/profit">Profit</a> |
| 77 | + <a href="https://d-i-projects.github.io/geschäftsmäßig">Geschäftsmäßig</a> |
| 78 | + </div> |
| 79 | + </div> |
| 80 | + </footer> |
| 81 | + </div> |
| 82 | + <button id="toggle-light-mode" class="light-mode-btn" aria-label="Light Mode"> |
| 83 | + <i class="fas fa-moon"></i> |
| 84 | + <i class="fas fa-sun"></i> |
| 85 | + </button> |
| 86 | + <script> |
| 87 | + document.addEventListener('DOMContentLoaded', () => { |
| 88 | + const toggleLightMode = () => { |
| 89 | + document.body.classList.toggle('light-mode'); |
| 90 | + const isLightMode = document.body.classList.contains('light-mode'); |
| 91 | + localStorage.setItem('lightMode', isLightMode); |
| 92 | + }; |
| 93 | + |
| 94 | + document.getElementById('toggle-light-mode').addEventListener('click', toggleLightMode); |
| 95 | + |
| 96 | + if (localStorage.getItem('lightMode') === 'true') { |
| 97 | + document.body.classList.add('light-mode'); |
| 98 | + } |
| 99 | + }); |
| 100 | + </script> |
| 101 | +</body> |
| 102 | +</html> |
0 commit comments