add bling

This commit is contained in:
XGQT 2020-02-02 21:55:48 +01:00
parent 23c906769f
commit 0bb1395a5a
No known key found for this signature in database
GPG Key ID: 2089DEC77862433A
7 changed files with 870 additions and 20 deletions

138
public/assets/css/main.css Normal file
View File

@ -0,0 +1,138 @@
/*
___ _ __ ___ _ __ _ __ ___ _ __ __ _ _ __ ___
/ __| '__/ __| | '_ \| '__/ _ \ '_ \ / _` | '__/ _ \
\__ \ | | (__ | |_) | | | __/ |_) | (_| | | | __/
|___/_| \___|____| .__/|_| \___| .__/ \__,_|_| \___|
|_____|_| |_|
*/
/* General */
* {
background-repeat: no-repeat;
}
html,
body {
height: 100%;
margin: 0;
padding: 0;
width: 100%;
}
body {
font-family: Arial, Helvetica, sans-serif;
}
/* Menu */
#top {
background-color: rgba(51, 51, 51, 1);
height: 6%;
overflow: hidden;
}
#top ul {
list-style-type: none;
margin: 0;
overflow: hidden;
padding: 0.5%;
}
#top li {
float: left;
}
#top li a {
color: rgba(255, 255, 255, 1);
display: block;
height: 100%;
padding: 14px 16px;
text-align: center;
text-decoration: none;
}
#top li a:hover {
background-color: rgba(1, 1, 1, 1);
}
/* Logo */
#src_prepare, #src, #prepare {
background-color: RGBA(88, 86, 86, 1);
margin: 0;
padding: 0;
text-align: center;
}
#src_prepare {
height: 30%;
}
#src {
font-size: 1000%;
}
#prepare {
font-size: 3vw;
}
/* About */
#about {
background-color: rgba(43, 40, 40, 1);
color: rgba(153, 156, 150, 1) ;
height: 60%;
padding: 1% 5% 1% 5%;
}
#about a {
text-decoration: none;
}
#about a:link {
color: rgba(42, 161, 152, 1);
}
#about a:visited {
color: rgba(133, 153, 0, 1);
}
/* Footer */
footer {
background-color: rgba(0, 0, 0, 1);
color: rgba(255, 255, 255, 1);
font-size: 1.1vh;
height: 20%;
padding: 1% 5% 1% 5%;
text-align: center;
}
.fcol {
float: left;
height: 50%;
text-align: center;
width: 33%;
}
.fcol ul {
list-style-type: none;
}
.fcol a {
text-decoration: none;
}
.fcol a:link {
color: rgba(42, 161, 152, 1);
}
.fcol a:visited {
color: rgba(133, 153, 0, 1);
}

171
public/devs.html Normal file
View File

@ -0,0 +1,171 @@
<!DOCTYPE html>
<!--
___ _ __ ___ _ __ _ __ ___ _ __ __ _ _ __ ___
/ __| '__/ __| | '_ \| '__/ _ \ '_ \ / _` | '__/ _ \
\__ \ | | (__ | |_) | | | __/ |_) | (_| | | | __/
|___/_| \___|____| .__/|_| \___| .__/ \__,_|_| \___|
|_____|_| |_|
-->
<html>
<head>
<meta charset="utf-8" />
<meta name="generator" content="GitLab Pages" />
<meta name="description" content="src_prepare" />
<meta name="keywords" content="src_prepare gentoo overlay" />
<meta name="author" content="src_prepare" />
<title>Developers (src_prepare)</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" />
<link rel="stylesheet" href="assets/css/main.css" />
</head>
<body>
<div id="top">
<ul>
<li>
<a href="index.html">Home</a>
</li>
<li>
<a href="why.html">Why</a>
</li>
<li>
<a href="devs.html">Developers</a>
</li>
<li>
<a href="shoutouts.html">Shoutouts</a>
</li>
<li>
<a href="packages.html">Packages</a>
</li>
</ul>
</div>
<div id="src_prepare">
<p id="src">SRC</p>
<p id="prepare">prepare</p>
</div>
<div id="about">
<h2>
Developers
</h2>
<ul>
<li>
<a href="https://gitlab.com/xgqt">
XGQT (lead)
</a>
</li>
<li>
<a href="https://gitlab.com/XenHat">
Xenhat Hex
</a>
</li>
<li>
<a href="https://gitlab.com/TheMainOne">
TheMainOne
</a>
</li>
<li>
<a href="https://gitlab.com/lramage94">
Lucas Ramage
</a>
</li>
<li>
<a href="https://gitlab.com/akater">
akater
</a>
</li>
</ul>
</div>
<footer>
<div class="fcol">
<ul>
<li>
Development <i class="fa fa-gitlab"></i>
</li>
<li>
<a href="https://gitlab.com/src_prepare">
About Us
</a>
</li>
<li>
<a href="https://gitlab.com/src_prepare">
Gitlab
</a>
</li>
<li>
<a href="https://gitlab.com/src_prepare/src_prepare-overlay">
Overlay
</a>
</li>
</ul>
</div>
<div class="fcol">
<ul>
<li>
Social <i class="fa fa-share-alt-square"></i>
</li>
<li>
<a href="https://t.me/joinchat/Mjt_wUusNGlvMJUHRenLBQ">
Telegram
</a>
</li>
</ul>
</div>
<div class="fcol">
<ul>
<li>
Documentation <i class="fa fa-file-text"></i>
</li>
<li>
<a href="https://gitlab.com/src_prepare/src_prepare-overlay/blob/master/README.md">
Portage Overlay
</a>
</li>
</ul>
</div>
<div>
<p>
Unless otherwise stated, content on this page is licensed under a ISC License.
</p>
<p>
Linux is a registered trademark of Linus Torvalds.</p>
<p>
All other trademarks are the property of their respective owners.
</p>
</div>
</footer>
</body>
</html>

View File

@ -1,28 +1,159 @@
<!DOCTYPE html>
<!--
___ _ __ ___ _ __ _ __ ___ _ __ __ _ _ __ ___
/ __| '__/ __| | '_ \| '__/ _ \ '_ \ / _` | '__/ _ \
\__ \ | | (__ | |_) | | | __/ |_) | (_| | | | __/
|___/_| \___|____| .__/|_| \___| .__/ \__,_|_| \___|
|_____|_| |_|
-->
<html>
<head>
<meta charset="utf-8"/>
<meta name="generator" content="GitLab Pages"/>
<meta charset="utf-8" />
<meta name="generator" content="GitLab Pages" />
<meta name="description" content="src_prepare" />
<meta name="keywords" content="src_prepare gentoo overlay"/>
<meta name="author" content="src_prepare"/>
<meta name="keywords" content="src_prepare gentoo overlay" />
<meta name="author" content="src_prepare" />
<title>src_prepare</title>
<title>Home (src_prepare)</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"/>
<link rel="stylesheet" href="style.css"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" />
<link rel="stylesheet" href="assets/css/main.css" />
</head>
<body>
<p>Test</p>
<div id="top">
<ul>
<li>
<a href="index.html">Home</a>
</li>
<li>
<a href="why.html">Why</a>
</li>
<li>
<a href="devs.html">Developers</a>
</li>
<li>
<a href="shoutouts.html">Shoutouts</a>
</li>
<li>
<a href="packages.html">Packages</a>
</li>
</ul>
</div>
<div id="src_prepare">
<p id="src">SRC</p>
<p id="prepare">prepare</p>
</div>
<div id="about">
<h2>
About Us
</h2>
<p>
The src_prepare group is a community of developers who happen to use the Gentoo GNU/Linux
operating system.
</p>
<p>
We focus on making our developement fun, comfortable and reproducible.
</p>
<p>
The name comes from a ebuild function called "src_prepare".
</p>
<p>
Check out our projects on <a href="https://gitlab.com/src_prepare">Gitlab <i class="fa fa-gitlab"></i> </a>
</p>
<p>
Join our community on <a href="https://t.me/joinchat/Mjt_wUusNGlvMJUHRenLBQ">Telegram <i
class="fa fa-telegram"></i> </a>
</p>
</div>
<footer>
<div class="fcol">
<ul>
<li>
Development <i class="fa fa-gitlab"></i>
</li>
<li>
<a href="https://gitlab.com/src_prepare">
About Us
</a>
</li>
<li>
<a href="https://gitlab.com/src_prepare">
Gitlab
</a>
</li>
<li>
<a href="https://gitlab.com/src_prepare/src_prepare-overlay">
Overlay
</a>
</li>
</ul>
</div>
<div class="fcol">
<ul>
<li>
Social <i class="fa fa-share-alt-square"></i>
</li>
<li>
<a href="https://t.me/joinchat/Mjt_wUusNGlvMJUHRenLBQ">
Telegram
</a>
</li>
</ul>
</div>
<div class="fcol">
<ul>
<li>
Documentation <i class="fa fa-file-text"></i>
</li>
<li>
<a href="https://gitlab.com/src_prepare/src_prepare-overlay/blob/master/README.md">
Portage Overlay
</a>
</li>
</ul>
</div>
<div>
<p>
Unless otherwise stated, content on this page is licensed under a ISC License.
</p>
<p>
Linux is a registered trademark of Linus Torvalds.</p>
<p>
All other trademarks are the property of their respective owners.
</p>
</div>
</footer>
</body>

39
public/packages.html Normal file
View File

@ -0,0 +1,39 @@
<!DOCTYPE html>
<!--
___ _ __ ___ _ __ _ __ ___ _ __ __ _ _ __ ___
/ __| '__/ __| | '_ \| '__/ _ \ '_ \ / _` | '__/ _ \
\__ \ | | (__ | |_) | | | __/ |_) | (_| | | | __/
|___/_| \___|____| .__/|_| \___| .__/ \__,_|_| \___|
|_____|_| |_|
-->
<html>
<head>
<meta charset="utf-8" />
<meta name="generator" content="GitLab Pages" />
<meta name="description" content="src_prepare" />
<meta name="keywords" content="src_prepare gentoo overlay" />
<meta name="author" content="src_prepare" />
<title>Packages (src_prepare)</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" />
<link rel="stylesheet" href="assets/css/main.css" />
</head>
<body>
Working on this...
</body>
</html>

211
public/shoutouts.html Normal file
View File

@ -0,0 +1,211 @@
<!DOCTYPE html>
<!--
___ _ __ ___ _ __ _ __ ___ _ __ __ _ _ __ ___
/ __| '__/ __| | '_ \| '__/ _ \ '_ \ / _` | '__/ _ \
\__ \ | | (__ | |_) | | | __/ |_) | (_| | | | __/
|___/_| \___|____| .__/|_| \___| .__/ \__,_|_| \___|
|_____|_| |_|
-->
<html>
<head>
<meta charset="utf-8" />
<meta name="generator" content="GitLab Pages" />
<meta name="description" content="src_prepare" />
<meta name="keywords" content="src_prepare gentoo overlay" />
<meta name="author" content="src_prepare" />
<title>Shoutouts (src_prepare)</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" />
<link rel="stylesheet" href="assets/css/main.css" />
</head>
<body>
<div id="top">
<ul>
<li>
<a href="index.html">Home</a>
</li>
<li>
<a href="why.html">Why</a>
</li>
<li>
<a href="devs.html">Developers</a>
</li>
<li>
<a href="shoutouts.html">Shoutouts</a>
</li>
<li>
<a href="packages.html">Packages</a>
</li>
</ul>
</div>
<div id="src_prepare">
<p id="src">SRC</p>
<p id="prepare">prepare</p>
</div>
<div id="about">
<h2>
Shoutouts to:
</h2>
<ul>
<li>
<a href="https://www.linuxfoundation.org">
Linux
</a>
</li>
<li>
<a href="https://www.gnu.org/">
GNU
</a>
</li>
<li>
<a href="https://www.phoronix.com">
Phoronix
</a>
</li>
<li>
<a href="https://www.gitlab.com">
Gitlab
</a>
</li>
<li>
<a href="https://gitweb.gentoo.org/proj/portage.git">
Portage
</a>
</li>
<li>
<a href="https://github.com/OpenRC">
OpenRC
</a>
</li>
<li>
<a href="https://www.busybox.net">
BusyBox
</a>
</li>
<li>
<a href="https://www.gentoo.org">
Gentoo
</a>
</li>
<li>
<a href="https://www.funtoo.org">
Funtoo
</a>
</li>
<li>
<a href="https://www.alpinelinux.org">
Alpine
</a>
</li>
<li>
<a href="https://voidlinux.org">
Void
</a>
</li>
<li>
<a href="https://nixos.org">
NixOS
</a>
</li>
<li>
<a href="https://guix.gnu.org">
GuixSD
</a>
</li>
</ul>
</div>
<footer>
<div class="fcol">
<ul>
<li>
Development <i class="fa fa-gitlab"></i>
</li>
<li>
<a href="https://gitlab.com/src_prepare">
About Us
</a>
</li>
<li>
<a href="https://gitlab.com/src_prepare">
Gitlab
</a>
</li>
<li>
<a href="https://gitlab.com/src_prepare/src_prepare-overlay">
Overlay
</a>
</li>
</ul>
</div>
<div class="fcol">
<ul>
<li>
Social <i class="fa fa-share-alt-square"></i>
</li>
<li>
<a href="https://t.me/joinchat/Mjt_wUusNGlvMJUHRenLBQ">
Telegram
</a>
</li>
</ul>
</div>
<div class="fcol">
<ul>
<li>
Documentation <i class="fa fa-file-text"></i>
</li>
<li>
<a href="https://gitlab.com/src_prepare/src_prepare-overlay/blob/master/README.md">
Portage Overlay
</a>
</li>
</ul>
</div>
<div>
<p>
Unless otherwise stated, content on this page is licensed under a ISC License.
</p>
<p>
Linux is a registered trademark of Linus Torvalds.</p>
<p>
All other trademarks are the property of their respective owners.
</p>
</div>
</footer>
</body>
</html>

View File

@ -1,12 +0,0 @@
* {
background-repeat: no-repeat;
overflow: hidden;
}
html,
body {
height: 100%;
margin: 0;
padding: 0;
width: 100%;
}

172
public/why.html Normal file
View File

@ -0,0 +1,172 @@
<!DOCTYPE html>
<!--
___ _ __ ___ _ __ _ __ ___ _ __ __ _ _ __ ___
/ __| '__/ __| | '_ \| '__/ _ \ '_ \ / _` | '__/ _ \
\__ \ | | (__ | |_) | | | __/ |_) | (_| | | | __/
|___/_| \___|____| .__/|_| \___| .__/ \__,_|_| \___|
|_____|_| |_|
-->
<html>
<head>
<meta charset="utf-8" />
<meta name="generator" content="GitLab Pages" />
<meta name="description" content="src_prepare" />
<meta name="keywords" content="src_prepare gentoo overlay" />
<meta name="author" content="src_prepare" />
<title>Why (src_prepare)</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" />
<link rel="stylesheet" href="assets/css/main.css" />
</head>
<body>
<div id="top">
<ul>
<li>
<a href="index.html">Home</a>
</li>
<li>
<a href="why.html">Why</a>
</li>
<li>
<a href="devs.html">Developers</a>
</li>
<li>
<a href="shoutouts.html">Shoutouts</a>
</li>
<li>
<a href="packages.html">Packages</a>
</li>
</ul>
</div>
<div id="src_prepare">
<p id="src">SRC</p>
<p id="prepare">prepare</p>
</div>
<div id="about">
<h2>
Why use Gentoo?
</h2>
<ul>
<li>
Optimization (pkgs can be compiled for a specific CPU, ex.: -march=haswell)
</li>
<li>
Customizaton (USE flags)
</li>
<li>
Lack of trust towards binary packages provided by a binary distro
</li>
<li>
Ability to "package" almost anything (ebuilds)
</li>
<li>
Recompiling software from git when new changes are pushed ("live" 9999 ebuilds)
</li>
<li>
OpenRC (lightweight and flexible init system)
</li>
<li>
Free as in freedom (ACCEPT_LICENSE can exclude nonfree software)
</li>
<li>
Is a Linux (not necessarly GNU) distribution
</li>
<li>
Hobby
</li>
</ul>
</div>
<footer>
<div class="fcol">
<ul>
<li>
Development <i class="fa fa-gitlab"></i>
</li>
<li>
<a href="https://gitlab.com/src_prepare">
About Us
</a>
</li>
<li>
<a href="https://gitlab.com/src_prepare">
Gitlab
</a>
</li>
<li>
<a href="https://gitlab.com/src_prepare/src_prepare-overlay">
Overlay
</a>
</li>
</ul>
</div>
<div class="fcol">
<ul>
<li>
Social <i class="fa fa-share-alt-square"></i>
</li>
<li>
<a href="https://t.me/joinchat/Mjt_wUusNGlvMJUHRenLBQ">
Telegram
</a>
</li>
</ul>
</div>
<div class="fcol">
<ul>
<li>
Documentation <i class="fa fa-file-text"></i>
</li>
<li>
<a href="https://gitlab.com/src_prepare/src_prepare-overlay/blob/master/README.md">
Portage Overlay
</a>
</li>
</ul>
</div>
<div>
<p>
Unless otherwise stated, content on this page is licensed under a ISC License.
</p>
<p>
Linux is a registered trademark of Linus Torvalds.</p>
<p>
All other trademarks are the property of their respective owners.
</p>
</div>
</footer>
</body>
</html>