2023-04-04 13:36:31 -04:00
<!DOCTYPE html>
< html >
< head >
2023-05-01 10:42:27 -04:00
< meta charset = "UTF-8" >
< meta name = "viewport" content = "width=device-width, initial-scale=1.0" >
< title > Everest Linux - Docs< / title >
2023-09-29 09:18:06 -04:00
< link type = "text/css" rel = "stylesheet" href = "../css/nord.css" / >
2023-05-01 10:42:27 -04:00
< link rel = "icon" type = "image/x-icon" href = "../img/favicon.svg" / >
2023-04-04 13:36:31 -04:00
< / head >
< body >
<!-- Navbar -->
< div class = "sidenav" >
2023-09-29 09:18:06 -04:00
< img src = "../img/everest-nord.svg" alt = "everest-logo" >
2023-04-04 13:36:31 -04:00
< a href = "../index.html" > Home< / a >
< a href = "../about.html" > About< / a >
< a href = "../install.html" > Install< / a >
< a href = "https://git.everestlinux.org/EverestLinux/glacier-pkgs" > Packages< / a >
< a href = "../download.html" > Downloads< / a >
< a href = "home.html" > Docs< / a >
< a href = "https://git.everestlinux.org/EverestLinux/wiki" > Wiki< / a >
< a href = "../errata.html" > Errata< / a >
< a href = "https://git.everestlinux.org" > Git< / a >
< / div >
<!-- Rest of page -->
< div class = "main" >
< h2 > Docs< / h2 >
2023-09-05 22:03:29 -04:00
< p > < strong > Welcome to the Everest Linux documentation homepage!< / strong > < / p >
< p > Pages listed here are frequently updated. If you wish to make a correction, or submit a new page, please contact me at liamwaldron@everestlinux.org.< / p >
2023-04-04 13:36:31 -04:00
< script >
function myFunction() {
var input, filter, ul, li, a, i, txtValue;
input = document.getElementById('myInput');
filter = input.value.toUpperCase();
ul = document.getElementById("myUL");
li = ul.getElementsByTagName('li');
for (i = 0; i < li.length ; i + + ) {
a = li[i].getElementsByTagName("a")[0];
txtValue = a.textContent || a.innerText;
if (txtValue.toUpperCase().indexOf(filter) > -1) {
li[i].style.display = "";
} else {
li[i].style.display = "none";
}
}
}
< / script >
2023-05-25 08:47:57 -04:00
< input type = "text" id = "myInput" onKeyup = "myFunction()" placeholder = "Search documentation..." >
2023-04-04 13:36:31 -04:00
< ul id = "myUL" >
< li > < a href = "general-recommendations.html" > General Recommendations< / a > < / li >
< li > < a href = "intro-to-glacier.html" > Introduction to Glacier< / a > < / li >
2023-05-24 13:19:24 -04:00
< li > < a href = "musl-or-glibc.html" > musl or glibc?< / a > < / li >
2023-04-04 13:36:31 -04:00
< / ul >
< / div >
< footer >
< p > Copyright (C) 2021-2023 Everest Linux< / p >
< p > Linux (R) is a registered trademark of Linus Torvalds.< / p >
< p > Everest Linux is provided AS IS, WITHOUT WARRANTY.< / p >
< / footer >