This commit is contained in:
Liam Waldron 2023-12-20 10:06:34 -05:00
commit 058746d042
14 changed files with 813 additions and 0 deletions

269
css/k2.css Normal file
View File

@ -0,0 +1,269 @@
/* css/everest.css - stylesheet for everest-web */
/*
Copyright (C) 2023 Everest Linux.
Permission is granted to copy, distribute and/or modify this document
under the terms of the GNU Free Documentation License, Version 1.3
or any later version published by the Free Software Foundation;
with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.
A copy of the license is included in the section entitled "GNU
Free Documentation License".
*/
/* Sidebar menu */
.sidenav {
height: 100%;
width: 160px;
position: fixed;
z-index: 1;
top: 0;
left: 0;
background-color: #131313;
overflow-x: hidden;
padding-top: 20px;
}
/* Menu links */
.sidenav a {
padding: 6px 8px 6px 16px;
text-decoration: none;
font-size: 20px;
color: #818181;
display: block;
}
.sidenav a:hover {
color: #4a86e8ff;
}
html {
background-color: #1E1E1E;
color: #bfbfbf;
}
.main {
margin-left: 160px;
padding: 0px 10px;
background-color: #1E1E1E;
}
.file {
font-family: monospace;
background-color: #0F0F0F;
border-left-style: solid;
border-left-color: MediumSeaGreen;
border-width: 4px;
border-radius: 2px;
padding: 4px;
width: 50%;
color: #bfbfbf;
}
.kernel {
font-family: monospace;
background-color: #0F0F0F;
border-left-style: solid;
border-left-color: SlateBlue;
border-width: 4px;
border-radius: 2px;
padding: 4px;
width: 50%;
color: #bfbfbf;
}
.warning {
background-color: #330000;
border-left-style: solid;
border-left-color: #e60000;
border-width: 4px;
border-radius: 2px;
padding: 4px;
width: 50%;
color: #e60000;
}
.news {
background-color: #131313;
border-left-style: solid;
border-left-color: #4a86e8ff;
border-width: 4px;
border-radius: 2px;
padding: 4px;
width: 50%;
color: #bfbfbf;
}
fhead {
background-color: #0F0F0F;
border-left-style: solid;
border-left-color: MediumSeaGreen;
border-width: 4px;
border-radius: 2px;
padding: 6px;
width: 50%;
color: MediumSeaGreen;
}
khead {
background-color: #0F0F0F;
border-left-style: solid;
border-left-color: SlateBlue;
border-width: 4px;
border-radius: 2px;
padding: 6px;
width: 50%;
color: Slateblue;
}
warnhead {
background-color: #330000;
border-left-style: solid;
border-left-color: #e60000;
border-width: 4px;
border-radius: 2px;
padding: 6px;
width: 50%;
color: #e60000;
}
newshead {
background-color: #131313;
border-left-style: solid;
border-left-color: #4a86e8ff;
border-width: 4px;
border-radius: 2px;
padding: 4px;
width: 50%;
color: #4a86e8ff;
}
wikihead {
border-left-style: solid;
border-left-color: Tomato;
border-width: 4px;
border-radius: 2px;
padding: 6px;
color: Tomato;
}
@media screen and (max-height: 450px) {
.sidenav {padding-top: 15px;}
.sidenav a{font-size: 18px;}
}
body {
font-family: sans-serif;
background-color: #1E1E1E;
color: #bfbfbf;
}
code {
font-family: monospace;
background-color: #0F0F0F;
border-left-style: solid;
border-left-width: 4px;
border-radius: 2px;
padding: 2px;
color: #bfbfbf;
}
wiki {
border-left-style: solid;
border-left-width: 4px;
border-radius: 2px;
padding: 6px;
border-color: Tomato;
}
/* file {
border-style: solid;
border-width: 4px;
border-radius: 2px;
padding: 2px;
border-color: black;
} */
h2 {
border-left-style: solid;
border-color: #4a86e8ff;
padding-left: 4px;
border-left-width: 6px;
border-radius: 5px;
color: #bfbfbf;
}
button {
font-size: 24px;
border-style: none;
border-left-style: solid;
border-width: 8px;
padding: 12px 28px;
border-color: #4a86e8ff;
border-radius: 5px;
background-color: #2C2C2C;
color: #e6e6e6;
}
button:hover {
background-color: #252525;
}
hr.dotted {
border-top: 3px dotted #bbb;
}
/* p {
color: #e6e6e6;
} */
/* strong {
color: #4a86e8ff;
} */
/* i {
color: #e6e6e6;
} */
footer {
text-align: center;
font-size: 10px;
padding: 20px;
}
#myInput {
width: 378px;
font-size: 16px;
padding: 10px;
border: 2px solid #4a86e8ff;
border-radius: 2px;
margin-bottom: 12px;
background-color: #2C2C2C;
color: #e6e6e6;
}
#myUL {
width: 400px;
list-style-type: none;
padding: 0;
margin: 0;
}
#myUL li a {
border-left-width: 2px;
border-left-style: solid;
border-left-color: #4a86e8ff;
margin-top: -1px;
background-color: #2C2C2C;
padding: 12px;
text-decoration: none;
font-size: 18px;
color: #e6e6e6;
display: block;
}
#myUL li a:hover:not(.header) {
background-color: #1E1E1E;
}
img {
padding: 8px;
}

387
css/nord.css Normal file
View File

@ -0,0 +1,387 @@
/* css/everest.css - stylesheet for everest-web */
/*
Copyright (C) 2023 Everest Linux.
Permission is granted to copy, distribute and/or modify this document
under the terms of the GNU Free Documentation License, Version 1.3
or any later version published by the Free Software Foundation;
with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.
A copy of the license is included in the section entitled "GNU
Free Documentation License".
*/
/* Sidebar menu */
.sidenav {
height: 100%;
width: 200px;
position: fixed;
z-index: 1;
top: 0;
left: 0;
background-color: #2E3440;
overflow-x: hidden;
padding-top: 20px;
}
/* Menu links */
.sidenav a {
padding: 6px 8px 6px 16px;
text-decoration: none;
font-size: 20px;
color: #D8DEE9;
display: block;
}
.sidenav a:hover {
color: #88c0d0;
}
html {
background-color: #3B4252;
color: #ECEFF4;
}
.main {
margin-left: 200px;
padding: 0px 10px;
background-color: #3B4252;
}
.file {
font-family: monospace;
background-color: #2E3440;
border-left-style: solid;
border-left-color: #A3BE8C;
border-width: 4px;
border-radius: 2px;
padding: 4px;
width: 50%;
color: #ECEFF4;
}
.kernel {
font-family: monospace;
background-color: #2E3440;
border-left-style: solid;
border-left-color: #B48EAD;
border-width: 4px;
border-radius: 2px;
padding: 4px;
width: 50%;
color: #ECEFF4;
}
.note {
background-color: #88C0D0;
border-left-style: solid;
border-left-color: #88C0D0;
border-width: 4px;
border-radius: 2px;
padding: 4px;
width: 50%;
color: #2E3440;
}
.caution {
background-color: #EBCB8B;
border-left-style: solid;
border-left-color: #EBCB8B;
border-width: 4px;
border-radius: 2px;
padding: 4px;
width: 50%;
color: #2E3440;
}
.warning {
background-color: #BF616A;
border-left-style: solid;
border-left-color: #BF616A;
border-width: 4px;
border-radius: 2px;
padding: 4px;
width: 50%;
color: #2E3440;
}
.news {
background-color: #2E3440;
border-left-style: solid;
border-left-color: #88C0D0;
border-width: 4px;
border-radius: 2px;
padding: 4px;
width: 50%;
color: #ECEFF4;
}
table, td {
border: 2px solid;
border-color: #ECEFF4;
border-collapse: collapse;
padding: 4px;
background-color: #2E3440;
}
th {
border: 2px solid;
background-color: #88C0D0;
color: #2E3440;
border-color: #ECEFF4;
}
notehead {
background-color: #88C0D0;
border-left-style: solid;
border-left-color: #88C0D0;
border-width: 4px;
border-radius: 2px;
padding: 6px;
width: 50%;
color: #2E3440;
}
fhead {
background-color: #2E3440;
border-left-style: solid;
border-left-color: #A3BE8C;
border-width: 4px;
border-radius: 2px;
padding: 6px;
width: 50%;
color: #A3BE8C;
}
khead {
background-color: #2E3440;
border-left-style: solid;
border-left-color: #B48EAD;
border-width: 4px;
border-radius: 2px;
padding: 6px;
width: 50%;
color: #B48EAD;
}
cautionhead {
background-color: #EBCB8B;
border-left-style: solid;
border-left-color: #EBCB8B;
border-width: 4px;
border-radius: 2px;
padding: 6px;
width: 50%;
color: #2E3440;
}
warnhead {
background-color: #BF616A;
border-left-style: solid;
border-left-color: #BF616A;
border-width: 4px;
border-radius: 2px;
padding: 6px;
width: 50%;
color: #2E3440;
}
newshead {
background-color: #2E3440;
border-left-style: solid;
border-left-color: #88C0D0;
border-width: 4px;
border-radius: 2px;
padding: 4px;
width: 50%;
color: #88C0D0;
}
wikihead {
border-left-style: solid;
border-left-color: #D08770;
border-width: 4px;
border-radius: 2px;
padding: 6px;
color: #D08770;
}
bigcodehead {
background-color: #2E3440;
border-left-style: solid;
border-left-color: #ECEFF4;
border-width: 4px;
border-radius: 2px;
padding: 4px;
width: 50%;
color: #ECEFF4;
}
@media screen and (max-height: 450px) {
.sidenav {padding-top: 15px;}
.sidenav a{font-size: 18px;}
}
body {
font-family: sans-serif;
background-color: #3B4252;
color: #ECEFF4;
}
code {
font-family: monospace;
background-color: #2E3440;
border-left-style: solid;
border-left-width: 4px;
border-radius: 2px;
padding: 2px;
color: #ECEFF4;
}
.bigcode {
font-family: monospace;
background-color: #2E3440;
border-left-style: solid;
border-left-width: 4px;
border-radius: 2px;
padding: 6px;
border-color: #ECEFF4;
width: 50%;
}
cil {
font-family: monospace;
background-color: #2E3440;
padding: 2px;
}
wiki {
border-left-style: solid;
border-left-width: 4px;
border-radius: 2px;
padding: 6px;
border-color: #D08770;
}
/* file {
border-style: solid;
border-width: 4px;
border-radius: 2px;
padding: 2px;
border-color: black;
} */
h2 {
border-left-style: solid;
border-color: #88C0D0;
padding-left: 4px;
border-left-width: 6px;
border-radius: 5px;
color: #ECEFF4;
}
button {
font-size: 24px;
border-style: none;
border-left-style: solid;
border-width: 8px;
padding: 12px 28px;
border-color: #88C0D0;
border-radius: 5px;
background-color: #434C5E;
color: #ECEFF4;
}
button:hover {
background-color: #4C566A;
}
hr.dotted {
border-top: 3px dotted #bbb;
}
/* p {
color: #e6e6e6;
} */
/* strong {
color: #4a86e8ff;
} */
/* i {
color: #e6e6e6;
} */
footer {
text-align: center;
font-size: 10px;
padding: 20px;
}
#myInput {
width: 378px;
font-size: 16px;
padding: 10px;
border: 2px solid #88C0D0;
border-radius: 2px;
margin-bottom: 12px;
background-color: #434C5E;
color: #ECEFF4;
}
#myUL {
width: 400px;
list-style-type: none;
padding: 0;
margin: 0;
}
#myUL li a {
border-left-width: 2px;
border-left-style: solid;
border-left-color: #88C0D0;
margin-top: -1px;
background-color: #434C5E;
padding: 12px;
text-decoration: none;
font-size: 18px;
color: #ECEFF4;
display: block;
}
#myUL li a:hover:not(.header) {
background-color: #4C566A;
}
img {
padding: 8px;
}
/* */
body, html {
height: 100%;
}
/* The hero image */
.hero-image {
background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/banner.jpg");
height: 55%;
background-position: 20% 50%;
background-repeat: no-repeat;
background-size: cover;
position: relative;
padding-top: 0px;
padding-right: 0px;
margin-right: -8px;
margin-top: -8px;
}
.hero-text {
text-align: center;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: white;
}

61
download.html Normal file
View File

@ -0,0 +1,61 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Glacier - Download</title>
<link type="text/css" rel="stylesheet" href="css/nord.css"/>
</head>
<body>
<!-- Navbar -->
<div class="sidenav">
<img src="img/glacier-nord.svg" alt="glacier-logo">
<a href="index.html">Home</a>
<a href="download.html">Downloads</a>
<a href="https://git.everestlinux.org/EverestLinux/glacier">Git ↗</a>
</div>
<!-- Rest of page -->
<div class="hero-image">
<div class="hero-text">
<h1>Download</h1>
</div>
</div>
<div class="main">
<h2>Download and Install Glacier</h2>
<p>Glacier is relatively easy to install and set up, and there are multiple ways to do so. Choose the way you prefer.</p>
<h2>Everest Linux</h2>
<p>On an Everest system, Glacier is already installed. Since the entire package management system is so deeply rooted on an Everest system compared to other distributions, uninstalling or reinstalling Glacier is not recommended.</p>
<p>If, for some reason, you require a new version of Glacier, this can be done by pulling in a new base system from Git:</p>
<code>(user)$ cd /</code>
<p></p>
<code>(root)# git pull</code>
<h2>Stable Release</h2>
<p>The preferred way to get Glacier is through a stable release. These have been tried and tested, and have proven to work.</p>
<p>Download a release tarball:</p>
<code>DO THIS LATER</code>
<p>Unpack the tarball:</p>
<code>(user)$ tar xf glacier-X.X.X.tar.xz</code>
<p>Change directory into glacier-X.X.X/install:</p>
<p>Change <cil>config.mk</cil> to suit your needs:</p>
<code>(user)$ $EDITOR config.mk</code>
<p>Install:</p>
<code>(root)# make install</code>
<h2>Git Release</h2>
<p>Git releases are typically more unstable than stable tarball releases, but provide experimental features.</p>
<p>The steps for installing from a Git release are practically the same as installing from a tarball.</p>
<p>Instead of downloading a tarball, run the following:</p>
<code>(user)$ git clone https://git.everestlinux.org/EverestLinux/glacier</code>
<p></p>
<notehead><strong>NOTE:</strong></notehead>
<div class="note">
<p>Glacier v4 is currently in development. To use this release instead:</p>
<code>(user)$ git clone https://git.everestlinux.org/EverestLinux/glacier4</code>
<p>This release is highly experimental. Use at your own risk.</p>
</div>
</div>
<footer>
<p>Copyright (C) 2021-2023 Everest Linux</p>
<p>Linux (R) is a registered trademark of Linus Torvalds.</p>
<p>Glacier is provided AS IS, WITHOUT WARRANTY.</p>
</footer>

BIN
img/banner.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 648 KiB

BIN
img/everest-k2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

1
img/everest-k2.svg Normal file
View File

@ -0,0 +1 @@
<svg version="1.1" viewBox="0.0 0.0 649.0 485.0" fill="none" stroke="none" stroke-linecap="square" stroke-miterlimit="10" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg"><clipPath id="p.0"><path d="m0 0l649.0 0l0 485.0l-649.0 0l0 -485.0z" clip-rule="nonzero"/></clipPath><g clip-path="url(#p.0)"><path fill="#000000" fill-opacity="0.0" d="m0 0l649.0 0l0 485.0l-649.0 0z" fill-rule="evenodd"/><path fill="#4a86e8" d="m31.519686 468.3622l194.38202 -378.26773l133.83844 378.26773z" fill-rule="evenodd"/><path stroke="#4a86e8" stroke-width="4.0" stroke-linejoin="round" stroke-linecap="butt" d="m31.519686 468.3622l194.38202 -378.26773l133.83844 378.26773z" fill-rule="evenodd"/><path fill="#282828" d="m412.7575 222.75516l-135.9685 261.5433l-135.9685 -261.5433z" fill-rule="evenodd"/><path stroke="#282828" stroke-width="4.0" stroke-linejoin="round" stroke-linecap="butt" d="m412.7575 222.75516l-135.9685 261.5433l-135.9685 -261.5433z" fill-rule="evenodd"/><path fill="#282828" d="m0 484.29922l130.77936 -246.89764l98.44899 246.89764z" fill-rule="evenodd"/><path stroke="#282828" stroke-width="4.0" stroke-linejoin="round" stroke-linecap="butt" d="m0 484.29922l130.77936 -246.89764l98.44899 246.89764z" fill-rule="evenodd"/><path fill="#282828" d="m278.13385 485.0l185.43307 -378.2677l185.43307 378.2677z" fill-rule="evenodd"/><path stroke="#282828" stroke-width="4.0" stroke-linejoin="round" stroke-linecap="butt" d="m278.13385 485.0l185.43307 -378.2677l185.43307 378.2677z" fill-rule="evenodd"/><path fill="#4a86e8" d="m205.22047 134.99213l71.574814 -134.99213l71.5748 134.99213z" fill-rule="evenodd"/><path stroke="#4a86e8" stroke-width="4.0" stroke-linejoin="round" stroke-linecap="butt" d="m205.22047 134.99213l71.574814 -134.99213l71.5748 134.99213z" fill-rule="evenodd"/><path fill="#282828" d="m140.82677 222.7559l70.13112 -134.99213l131.67477 0l70.131134 134.99213z" fill-rule="evenodd"/><path stroke="#282828" stroke-width="4.0" stroke-linejoin="round" stroke-linecap="butt" d="m140.82677 222.7559l70.13112 -134.99213l131.67477 0l70.131134 134.99213z" fill-rule="evenodd"/><path fill="#282828" d="m205.21523 99.13386l30.761414 -63.27559l112.3882 63.27559z" fill-rule="evenodd"/><path stroke="#282828" stroke-width="4.0" stroke-linejoin="round" stroke-linecap="butt" d="m205.21523 99.13386l30.761414 -63.27559l112.3882 63.27559z" fill-rule="evenodd"/></g></svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

1
img/everest-logo.svg Normal file
View File

@ -0,0 +1 @@
<svg version="1.1" viewBox="0.0 0.0 649.0 485.0" fill="none" stroke="none" stroke-linecap="square" stroke-miterlimit="10" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg"><clipPath id="p.0"><path d="m0 0l649.0 0l0 485.0l-649.0 0l0 -485.0z" clip-rule="nonzero"/></clipPath><g clip-path="url(#p.0)"><path fill="#000000" fill-opacity="0.0" d="m0 0l649.0 0l0 485.0l-649.0 0z" fill-rule="evenodd"/><path fill="#4a86e8" d="m31.519686 468.3622l194.38202 -378.26773l133.83844 378.26773z" fill-rule="evenodd"/><path stroke="#4a86e8" stroke-width="2.0" stroke-linejoin="round" stroke-linecap="butt" d="m31.519686 468.3622l194.38202 -378.26773l133.83844 378.26773z" fill-rule="evenodd"/><path fill="#434343" d="m412.7575 222.75516l-135.9685 261.5433l-135.9685 -261.5433z" fill-rule="evenodd"/><path stroke="#434343" stroke-width="2.0" stroke-linejoin="round" stroke-linecap="butt" d="m412.7575 222.75516l-135.9685 261.5433l-135.9685 -261.5433z" fill-rule="evenodd"/><path fill="#666666" d="m276.48984 484.30145l135.9685 -261.5433l135.96854 261.5433z" fill-rule="evenodd"/><path stroke="#666666" stroke-width="2.0" stroke-linejoin="round" stroke-linecap="butt" d="m276.48984 484.30145l135.9685 -261.5433l135.96854 261.5433z" fill-rule="evenodd"/><path fill="#434343" d="m0 484.29922l130.77936 -246.89764l98.44899 246.89764z" fill-rule="evenodd"/><path stroke="#434343" stroke-width="2.0" stroke-linejoin="round" stroke-linecap="butt" d="m0 484.29922l130.77936 -246.89764l98.44899 246.89764z" fill-rule="evenodd"/><path fill="#434343" d="m276.4908 484.3176l185.43307 -378.26773l185.43304 378.26773z" fill-rule="evenodd"/><path stroke="#434343" stroke-width="2.0" stroke-linejoin="round" stroke-linecap="butt" d="m276.4908 484.3176l185.43307 -378.26773l185.43304 378.26773z" fill-rule="evenodd"/><path fill="#4a86e8" d="m205.22047 134.99213l71.574814 -134.99213l71.5748 134.99213z" fill-rule="evenodd"/><path stroke="#4a86e8" stroke-width="1.0" stroke-linejoin="round" stroke-linecap="butt" d="m205.22047 134.99213l71.574814 -134.99213l71.5748 134.99213z" fill-rule="evenodd"/><path fill="#434343" d="m140.82677 222.7559l70.13112 -134.99213l131.67477 0l70.131134 134.99213z" fill-rule="evenodd"/><path stroke="#434343" stroke-width="2.0" stroke-linejoin="round" stroke-linecap="butt" d="m140.82677 222.7559l70.13112 -134.99213l131.67477 0l70.131134 134.99213z" fill-rule="evenodd"/><path fill="#434343" d="m205.21523 99.13386l30.761414 -63.27559l112.3882 63.27559z" fill-rule="evenodd"/><path stroke="#434343" stroke-width="1.0" stroke-linejoin="round" stroke-linecap="butt" d="m205.21523 99.13386l30.761414 -63.27559l112.3882 63.27559z" fill-rule="evenodd"/></g></svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

BIN
img/everest-nord.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

1
img/everest-nord.svg Normal file
View File

@ -0,0 +1 @@
<svg version="1.1" viewBox="0.0 0.0 649.0 485.0" fill="none" stroke="none" stroke-linecap="square" stroke-miterlimit="10" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg"><clipPath id="p.0"><path d="m0 0l649.0 0l0 485.0l-649.0 0l0 -485.0z" clip-rule="nonzero"/></clipPath><g clip-path="url(#p.0)"><path fill="#000000" fill-opacity="0.0" d="m0 0l649.0 0l0 485.0l-649.0 0z" fill-rule="evenodd"/><path fill="#88c0d0" d="m31.519686 468.3622l194.38202 -378.26773l133.83844 378.26773z" fill-rule="evenodd"/><path stroke="#88c0d0" stroke-width="2.0" stroke-linejoin="round" stroke-linecap="butt" d="m31.519686 468.3622l194.38202 -378.26773l133.83844 378.26773z" fill-rule="evenodd"/><path fill="#5e81ac" d="m412.7575 222.75516l-135.9685 261.5433l-135.9685 -261.5433z" fill-rule="evenodd"/><path stroke="#5e81ac" stroke-width="2.0" stroke-linejoin="round" stroke-linecap="butt" d="m412.7575 222.75516l-135.9685 261.5433l-135.9685 -261.5433z" fill-rule="evenodd"/><path fill="#666666" d="m276.48984 484.30145l135.9685 -261.5433l135.96854 261.5433z" fill-rule="evenodd"/><path stroke="#666666" stroke-width="2.0" stroke-linejoin="round" stroke-linecap="butt" d="m276.48984 484.30145l135.9685 -261.5433l135.96854 261.5433z" fill-rule="evenodd"/><path fill="#5e81ac" d="m0 484.29922l130.77936 -246.89764l98.44899 246.89764z" fill-rule="evenodd"/><path stroke="#5e81ac" stroke-width="2.0" stroke-linejoin="round" stroke-linecap="butt" d="m0 484.29922l130.77936 -246.89764l98.44899 246.89764z" fill-rule="evenodd"/><path fill="#5e81ac" d="m276.4908 484.3176l185.43307 -378.26773l185.43304 378.26773z" fill-rule="evenodd"/><path stroke="#5e81ac" stroke-width="2.0" stroke-linejoin="round" stroke-linecap="butt" d="m276.4908 484.3176l185.43307 -378.26773l185.43304 378.26773z" fill-rule="evenodd"/><path fill="#88c0d0" d="m205.22047 134.99213l71.574814 -134.99213l71.5748 134.99213z" fill-rule="evenodd"/><path stroke="#88c0d0" stroke-width="1.0" stroke-linejoin="round" stroke-linecap="butt" d="m205.22047 134.99213l71.574814 -134.99213l71.5748 134.99213z" fill-rule="evenodd"/><path fill="#5e81ac" d="m140.82677 222.7559l70.13112 -134.99213l131.67477 0l70.131134 134.99213z" fill-rule="evenodd"/><path stroke="#5e81ac" stroke-width="2.0" stroke-linejoin="round" stroke-linecap="butt" d="m140.82677 222.7559l70.13112 -134.99213l131.67477 0l70.131134 134.99213z" fill-rule="evenodd"/><path fill="#5e81ac" d="m205.21523 99.13386l30.761414 -63.27559l112.3882 63.27559z" fill-rule="evenodd"/><path stroke="#5e81ac" stroke-width="1.0" stroke-linejoin="round" stroke-linecap="butt" d="m205.21523 99.13386l30.761414 -63.27559l112.3882 63.27559z" fill-rule="evenodd"/><path fill="#5e81ac" d="m205.22047 199.58267l195.68504 0l0 110.77167l-195.68504 0z" fill-rule="evenodd"/><path stroke="#5e81ac" stroke-width="1.0" stroke-linejoin="round" stroke-linecap="butt" d="m205.22047 199.58267l195.68504 0l0 110.77167l-195.68504 0z" fill-rule="evenodd"/><path fill="#5e81ac" d="m385.25198 283.9475l-106.83533 198.3937l-97.82611 -198.3937z" fill-rule="evenodd"/><path stroke="#5e81ac" stroke-width="1.0" stroke-linejoin="round" stroke-linecap="butt" d="m385.25198 283.9475l-106.83533 198.3937l-97.82611 -198.3937z" fill-rule="evenodd"/></g></svg>

After

Width:  |  Height:  |  Size: 3.2 KiB

1
img/favicon.svg Normal file
View File

@ -0,0 +1 @@
<svg version="1.1" viewBox="0.0 0.0 649.0 485.0" fill="none" stroke="none" stroke-linecap="square" stroke-miterlimit="10" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg"><clipPath id="p.0"><path d="m0 0l649.0 0l0 485.0l-649.0 0l0 -485.0z" clip-rule="nonzero"/></clipPath><g clip-path="url(#p.0)"><path fill="#000000" fill-opacity="0.0" d="m0 0l649.0 0l0 485.0l-649.0 0z" fill-rule="evenodd"/><path fill="#4a86e8" d="m31.519686 468.3622l194.38202 -378.26773l133.83844 378.26773z" fill-rule="evenodd"/><path stroke="#4a86e8" stroke-width="2.0" stroke-linejoin="round" stroke-linecap="butt" d="m31.519686 468.3622l194.38202 -378.26773l133.83844 378.26773z" fill-rule="evenodd"/><path fill="#434343" d="m412.7575 222.75516l-135.9685 261.5433l-135.9685 -261.5433z" fill-rule="evenodd"/><path stroke="#434343" stroke-width="2.0" stroke-linejoin="round" stroke-linecap="butt" d="m412.7575 222.75516l-135.9685 261.5433l-135.9685 -261.5433z" fill-rule="evenodd"/><path fill="#666666" d="m276.48984 484.30145l135.9685 -261.5433l135.96854 261.5433z" fill-rule="evenodd"/><path stroke="#666666" stroke-width="2.0" stroke-linejoin="round" stroke-linecap="butt" d="m276.48984 484.30145l135.9685 -261.5433l135.96854 261.5433z" fill-rule="evenodd"/><path fill="#434343" d="m0 478.92914l85.87449 -165.16534l64.645195 165.16534z" fill-rule="evenodd"/><path stroke="#434343" stroke-width="2.0" stroke-linejoin="round" stroke-linecap="butt" d="m0 478.92914l85.87449 -165.16534l64.645195 165.16534z" fill-rule="evenodd"/><path fill="#434343" d="m276.4908 484.3176l185.43307 -378.26773l185.43304 378.26773z" fill-rule="evenodd"/><path stroke="#434343" stroke-width="2.0" stroke-linejoin="round" stroke-linecap="butt" d="m276.4908 484.3176l185.43307 -378.26773l185.43304 378.26773z" fill-rule="evenodd"/><path fill="#4a86e8" d="m188.13387 157.10236l85.79527 -157.10236l85.79526 157.10236z" fill-rule="evenodd"/><path stroke="#4a86e8" stroke-width="1.0" stroke-linejoin="round" stroke-linecap="butt" d="m188.13387 157.10236l85.79527 -157.10236l85.79526 157.10236z" fill-rule="evenodd"/><path fill="#434343" d="m140.82152 222.77165l35.20926 -65.6693l194.84135 0l35.20923 65.6693z" fill-rule="evenodd"/></g></svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

1
img/glacier-nord.svg Normal file
View File

@ -0,0 +1 @@
<svg version="1.1" viewBox="0.0 0.0 433.41207349081367 433.5275590551181" fill="none" stroke="none" stroke-linecap="square" stroke-miterlimit="10" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg"><clipPath id="p.0"><path d="m0 0l433.41208 0l0 433.52756l-433.41208 0l0 -433.52756z" clip-rule="nonzero"/></clipPath><g clip-path="url(#p.0)"><path fill="#000000" fill-opacity="0.0" d="m0 0l433.41208 0l0 433.52756l-433.41208 0z" fill-rule="evenodd"/><path fill="#88c0d0" d="m0 433.38583l392.89893 -433.38583l40.486908 0l-392.89893 433.38583z" fill-rule="evenodd"/><path fill="#88c0d0" d="m433.38583 433.38583l-392.89893 -433.38583l-40.486904 0l392.89893 433.38583z" fill-rule="evenodd"/><path fill="#5e81ac" d="m199.2126 0l34.960632 0l0 433.38583l-34.960632 0z" fill-rule="evenodd"/><path fill="#5e81ac" d="m433.38583 199.2126l0 34.960632l-433.38583 0l0 -34.960632z" fill-rule="evenodd"/></g></svg>

After

Width:  |  Height:  |  Size: 923 B

47
index.html Normal file
View File

@ -0,0 +1,47 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Glacier - Home</title>
<link type="text/css" rel="stylesheet" href="css/nord.css"/>
<link rel="icon" type="image/x-icon" href="img/favicon.svg"/>
</head>
<body>
<!-- Navbar -->
<div class="sidenav">
<img src="img/glacier-nord.svg" alt="glacier-logo">
<a href="index.html">Home</a>
<a href="download.html">Downloads</a>
<a href="https://git.everestlinux.org/EverestLinux/glacier">Git ↗</a>
</div>
<!-- Rest of page -->
<div class="hero-image">
<div class="hero-text">
<h1>Home</h1>
</div>
</div>
<div class="main">
<h2>Glacier</h2>
<p>A source-based package manager with emphasis on scripting and manual packaging.</p>
<h2>Advantages of Glacier</h2>
<strong>Complete control over performance: </strong><p>Through customizable <cil>make</cil> options, programs can be optimized at compile time to run at peak performance.</p>
<strong>Enhanced security: </strong><p>Unlike binary-based package managers, in which the user relies on upstream to fix vulnerabilities, Glacier packages can be patched by the user. Extra security features, such as stack-smashing protection, can be compiled as well. Additionally, Glacier tries to minimize connections to external servers by storing a local package database on the system.</p>
<strong>Concise syntax: </strong><p>Glacier's command-line and package file syntax is designed to be concise and memorable.</p>
<strong>Easy to package: </strong><p>Packaging software for Glacier is very easy, should you know shell scripting already. Simply create a package file, define its variables and functions, and you're all set.</p>
<h2>Get Glacier</h2>
<p>Glacier can be installed on any Linux system. While not tested, it likely works on the BSDs as well.</p>
<button onclick="window.location.href='download.html';">
Download
</button>
<h2>Copyright</h2>
<p>Glacier is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the license, or (at your option) any later version.</p>
<p>Glacier is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.</p>
<p>You should have recieved a copy of the GNU General Public License along with Glacier. If not, see &lt;https://www.gnu.org/licenses&gt;.</p>
</div>
<footer>
<p>Copyright (C) 2021-2023 Everest Linux</p>
<p>Linux (R) is a registered trademark of Linus Torvalds.</p>
<p>Glacier is provided AS IS, WITHOUT WARRANTY.</p>
</footer>

14
mkpage.sh Executable file
View File

@ -0,0 +1,14 @@
#!/bin/sh
usage() {
printf "usage: ${0} NEW_PAGE_NAME\n"
}
if [ "${1}" == "" ]; then
usage "$@"
exit 1
fi
printf "Creating new page...\n"
cp -v template.html ${1}
printf "Done.\n"

30
template.html Normal file
View File

@ -0,0 +1,30 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Glacier - Home</title>
<link type="text/css" rel="stylesheet" href="css/nord.css"/>
</head>
<body>
<!-- Navbar -->
<div class="sidenav">
<img src="img/everest-nord.svg" alt="everest-logo">
<a href="index.html">Home</a>
<a href="download.html">Downloads</a>
<a href="https://git.everestlinux.org">Git ↗</a>
</div>
<!-- Rest of page -->
<div class="hero-image">
<div class="hero-text">
<h1>Template</h1>
</div>
</div>
<div class="main">
</div>
<footer>
<p>Copyright (C) 2021-2023 Everest Linux</p>
<p>Linux (R) is a registered trademark of Linus Torvalds.</p>
<p>Glacier is provided AS IS, WITHOUT WARRANTY.</p>
</footer>