|
| 1 | +<html lang="EN"> |
| 2 | +<meta charset="UTF-8"> |
| 3 | +<!--HEADERS--> |
| 4 | +<head> |
| 5 | +<!--TITLE--> |
| 6 | +<link rel="shortcut icon" type="image/png" href="res/DE/cereus-icon.png"> |
| 7 | +<title>Cereus Linux</title> |
| 8 | +<meta name="description" content="Cereus Linux it's a Gnu/Linux distribution derived from Void Linux thar focuses on delivering a user friendly experience."> |
| 9 | +<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| 10 | +<link rel="stylesheet" href="css.css"> |
| 11 | +<script src="translations.js"></script> |
| 12 | +<script src="https://itzselenux.github.io/SJTSW/sjtsw.js"></script> |
| 13 | +<link rel="preconnect" href="https://fonts.googleapis.com"> |
| 14 | +<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> |
| 15 | +<link href="https://fonts.googleapis.com/css2?family=Cantarell&display=swap" rel="stylesheet"> |
| 16 | +</head> |
| 17 | + |
| 18 | +<!--NAVBAR--> |
| 19 | +<body> |
| 20 | + <iframe src="navbar.html" frameborder="0" width="100%" height="70px" scrolling="no"></iframe> |
| 21 | + |
| 22 | +<!--BANNER--> |
| 23 | + <section class="header"> |
| 24 | + <div class="weltext"> |
| 25 | + <h1 id="str-extratitle"> Extra resources</h1> |
| 26 | + <p id="str-extrasubtitle">This page contains extra resources about Cereus Linux</p> |
| 27 | + |
| 28 | + <ul class="nav" border: 1px solid white;> |
| 29 | + <li><a target="_parent" id="str-extras-artwork" href="#artwork">Artwork</a></li><br> |
| 30 | + <li><a target="_parent" id="str-extras-mirrorlist" href="#mirrorlist">Cereus mirrorlist</a></li><br> |
| 31 | + |
| 32 | + </ul> |
| 33 | + |
| 34 | + </div> |
| 35 | + </section> |
| 36 | +<center> |
| 37 | + <section id="artwork"> <h1> Cereus Artwork</h1> |
| 38 | + |
| 39 | + <img width="33%" src="https://raw.githubusercontent.com/CereusLinuxProject/Cereus-Artwork/main/Branding/cereus-logo-1024x1024.svg"> |
| 40 | + <img width="33%" src="https://raw.githubusercontent.com/CereusLinuxProject/Cereus-Artwork/main/Branding/cereus-logo-dark-1024x1024.svg"> |
| 41 | + <img width="33%" src="https://raw.githubusercontent.com/CereusLinuxProject/Cereus-Artwork/main/Branding/cereus-logo-light-1024x1024.svg"> |
| 42 | + <img width="33%" src="https://raw.githubusercontent.com/CereusLinuxProject/Cereus-Artwork/main/Branding/cereus-logo-complete.svg"> |
| 43 | + <img width="33%" src="https://raw.githubusercontent.com/CereusLinuxProject/Cereus-Artwork/main/calamares-branding/svg/cereus-logo-letters.svg"> |
| 44 | + <img width="33%" src="https://raw.githubusercontent.com/CereusLinuxProject/Cereus-Artwork/main/wallpapers/wallpaper1.png"> |
| 45 | + <img width="33%" src="https://raw.githubusercontent.com/CereusLinuxProject/Cereus-Artwork/main/wallpapers/wallpaper2.png"> |
| 46 | + <img width="33%" src="https://raw.githubusercontent.com/CereusLinuxProject/Cereus-Artwork/main/wallpapers/wallpaper3.png"> |
| 47 | + <img width="33%" src="https://raw.githubusercontent.com/CereusLinuxProject/Cereus-Artwork/main/wallpapers/wallpaper4.png"> |
| 48 | + <img width="33%" src="https://raw.githubusercontent.com/CereusLinuxProject/Cereus-Artwork/main/calamares-branding/cereus-slogan.png"> |
| 49 | + <img width="33%" src="https://raw.githubusercontent.com/CereusLinuxProject/Cereus-Artwork/main/calamares-branding/keep-updated.png"> |
| 50 | + <img width="33%" src="https://raw.githubusercontent.com/CereusLinuxProject/Cereus-Artwork/main/calamares-branding/no-bloatware.png"> |
| 51 | + <img width="33%" src="https://raw.githubusercontent.com/CereusLinuxProject/Cereus-Artwork/main/calamares-branding/runit.png"> |
| 52 | + <img width="33%" src="https://raw.githubusercontent.com/CereusLinuxProject/Cereus-Artwork/main/calamares-branding/software.png"> |
| 53 | + <img width="33%" src="https://raw.githubusercontent.com/CereusLinuxProject/Cereus-Artwork/main/calamares-branding/void-based.png"> |
| 54 | + |
| 55 | + <section id="mirrorlist"> <h1> Cereus repo mirrorlist</h1> |
| 56 | + <h4 id="str-extra-repotitle">Cereus Linux uses Void Linux repos, but complemented with Cereus Linux repos that contains extra software</h4> |
| 57 | + <h4 id="str-extra-reposubtitle">if you can't see the content, you can open <a href="https://cereuslinuxproject.github.io/xrankmirrors/mirrorlist.lst">https://cereuslinuxproject.github.io/xrankmirrors/mirrorlist.lst</a><h4> |
| 58 | + <div class="wikilist"id="content" style="white-space: pre-wrap; font-family: monospace;"></div> |
| 59 | + |
| 60 | + <h4 id="str-extra-reposubtitle2">you can find srcpkg files in <a href="https://github.com/CereusLinuxProject/cereus-packages">https://github.com/CereusLinuxProject/cereus-packages</a></h4> |
| 61 | + |
| 62 | + <script> |
| 63 | + const url = 'https://raw.githubusercontent.com/CereusLinuxProject/xrankmirrors/main/mirrorlist.lst'; |
| 64 | + fetch(url) |
| 65 | + .then(response => response.text()) |
| 66 | + .then(text => { |
| 67 | + document.getElementById('content').textContent = text; |
| 68 | + }) |
| 69 | + .catch(error => { |
| 70 | + console.error('Error fetching the file:', error); |
| 71 | + }); |
| 72 | + </script> |
| 73 | + |
| 74 | +</center> |
| 75 | +<script>SJTSW_TranslatePage();</script> |
| 76 | + <section class="footer"> |
| 77 | + <h2>Cereus Linux</h2> |
| 78 | + <h5 id="str-copyright">Copyright 2024 Cereus Linux. All rights reserved.</h5> |
| 79 | + <h6 id="str-cereusteam">Cereus is backed up by the Cereus Team.</h6> |
| 80 | + </section> |
| 81 | +</body> |
| 82 | +</html> |
0 commit comments