website: add basic landing page

Made with yunohosts' landing page design and altered to be a static site
This commit is contained in:
Johanna Dorothea Reichmann 2020-07-10 13:11:00 +02:00
commit 87fe27bf10
No known key found for this signature in database
GPG Key ID: 03624C433676E465
20 changed files with 884 additions and 0 deletions

799
assets/css/ynh_portal.css Normal file

File diff suppressed because one or more lines are too long

Binary file not shown.

After

Width:  |  Height:  |  Size: 35 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 37 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 42 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 45 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 47 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 61 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

BIN
assets/icons/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

BIN
assets/icons/favicon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 42 KiB

BIN
assets/img/background.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 489 KiB

BIN
assets/img/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 188 KiB

85
index.html Normal file
View File

@ -0,0 +1,85 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>finallycoffee.eu Portal</title>
<!-- Responsive -->
<meta name="format-detection" content="telephone=no" />
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1" />
<!-- Do not index SSOWat pages -->
<meta name="robots" content="noindex, nofollow">
<!-- Stylesheets -->
<link rel="stylesheet" href="assets/css/ynh_portal.css">
<link rel="stylesheet" href="assets/themes/default/custom_portal.css">
<!-- Icons -->
<link rel="shortcut icon" href="assets/icons/favicon.ico">
<link rel="apple-touch-icon" sizes="57x57" href="assets/icons/apple-touch-icon-57x57.png">
<link rel="apple-touch-icon" sizes="114x114" href="assets/icons/apple-touch-icon-114x114.png">
<link rel="apple-touch-icon" sizes="72x72" href="assets/icons/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="144x144" href="assets/icons/apple-touch-icon-144x144.png">
<link rel="apple-touch-icon" sizes="60x60" href="assets/icons/apple-touch-icon-60x60.png">
<link rel="apple-touch-icon" sizes="120x120" href="assets/icons/apple-touch-icon-120x120.png">
<link rel="apple-touch-icon" sizes="76x76" href="assets/icons/apple-touch-icon-76x76.png">
<link rel="apple-touch-icon" sizes="152x152" href="assets/icons/apple-touch-icon-152x152.png">
<link rel="icon" type="image/png" href="assets/icons/favicon-196x196.png" sizes="196x196">
<link rel="icon" type="image/png" href="assets/icons/favicon-160x160.png" sizes="160x160">
<link rel="icon" type="image/png" href="assets/icons/favicon-96x96.png" sizes="96x96">
<link rel="icon" type="image/png" href="assets/icons/favicon-16x16.png" sizes="16x16">
<link rel="icon" type="image/png" href="assets/icons/favicon-32x32.png" sizes="32x32">
<meta name="msapplication-TileColor" content="#41444f">
<meta name="msapplication-TileImage" content="assets/icons/mstile-144x144.png">
</head>
<body class="ynh-user-portal logged">
<div id="ynh-logo" class="ynh-logo">
<span class="element-invisible">finallycoffee.eu</span>
</div>
<div class="content">
<div class="ynh-wrapper user">
<a class="user-container user-container-info">
<h2 class="user-username">finallycoffee.eu</h2>
<span class="user-mail">support@finallycoffee.eu</span>
</a>
</div>
<div id="apps" class="wrapper apps">
<ul class="listing-apps">
<li>
<a class="app-tile" href="https://chat.finallycoffee.eu" data-appname="RiotIm" target="_blank">
<span class="first-letter">CHAT</span>
<span class="name">Riot.im matrix client</span>
</a>
</li>
<li>
<a class="app-tile" href="https://mail.finallycoffee.eu" data-appname="RainLoop" target="_blank">
<span class="first-letter">MAIL</span>
<span class="name">RainLoop webmail</span>
</a>
</li>
<li>
<a class="app-tile" href="https://cloud.finallycoffee.eu" data-appname="NextCloud" target="_blank">
<span class="first-letter">CLOUD</span>
<span class="name">NextCloud</span>
</a>
</li>
</ul>
</div>
<div class="ynh-wrapper footer"><nav>
<a class="link-documentation" href="//finallycoffee.eu/docs" target="_blank">Documentation</a>
<!-- <a class="link-documentation" href="//yunohost.org/help" target="_blank">Support</a> -->
</nav></div>
</div>
</body>
</html>