gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[taler-anastasis-www] 01/01: page layout


From: gnunet
Subject: [taler-anastasis-www] 01/01: page layout
Date: Tue, 18 Aug 2020 17:53:47 +0200

This is an automated email from the git hooks/post-receive script.

ds-meister pushed a commit to branch master
in repository anastasis-www.

commit d21ec77e7062142877ab853761a57d06b7a8bfd9
Author: Dominik Meister <dominiksamuel.meister@students.bfh.ch>
AuthorDate: Tue Aug 18 17:53:41 2020 +0200

    page layout
---
 css/style.css | 72 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 de/about.html | 40 +++++++++++++++++++++++++++++++++
 de/docs.html  | 40 +++++++++++++++++++++++++++++++++
 de/index.html | 40 +++++++++++++++++++++++++++++++++
 de/news.html  | 40 +++++++++++++++++++++++++++++++++
 en/about.html | 40 +++++++++++++++++++++++++++++++++
 en/docs.html  | 40 +++++++++++++++++++++++++++++++++
 en/index.html | 40 +++++++++++++++++++++++++++++++++
 en/news.html  | 40 +++++++++++++++++++++++++++++++++
 9 files changed, 392 insertions(+)

diff --git a/css/style.css b/css/style.css
new file mode 100644
index 0000000..bb97605
--- /dev/null
+++ b/css/style.css
@@ -0,0 +1,72 @@
+/*General style settings*/
+/******************************************/
+body {
+  margin: 0;
+  padding: 0;
+  font-family: 'Lato';
+}
+
+/* Page Layout*/
+/******************************************/
+#page-container {
+  position: relative;
+  min-height: 100vh;
+}
+
+#content-wrap {
+  padding-bottom: 4rem;
+}
+
+#footer {
+  position: absolute;
+  bottom: 0;
+  width: 100%;
+  height: 4rem;
+}
+
+/* Toolbar style*/
+/******************************************/
+ul {
+  list-style-type: none;
+  margin: 0;
+  padding: 0;
+  overflow: hidden;
+  background-color: #333;
+}
+li {
+  float: left;
+  border-right:1px solid #bbb;
+}
+li a {
+  display: block;
+  color: white;
+  text-align: center;
+  padding: 14px 16px;
+  text-decoration: none;
+}
+
+li a:hover:not(.active) {
+  background-color: #111;
+}
+
+.active {
+  background-color: #808080;
+}
+
+/* Div classes for different sections*/
+/******************************************/
+.main-title {
+  background-color: #3B77DB;
+  color: white;
+  height: 30vh;
+  display: flex;
+  align-items: center;
+  justify-content: center;
+}
+.content {
+  text-align: center;
+  padding: 20px;
+}
+footer {
+    background-color: #333;
+}
diff --git a/de/about.html b/de/about.html
new file mode 100644
index 0000000..6cef5d2
--- /dev/null
+++ b/de/about.html
@@ -0,0 +1,40 @@
+<!doctype html>
+<html lang="de">
+  <head>
+    <meta charset="utf-8">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link href='https://fonts.googleapis.com/css?family=Lato' rel='stylesheet'>
+    <link rel="stylesheet" href="../css/style.css">
+    <title>Anastasis</title>
+  </head>
+  <body>
+    <div id="page-container">
+      <div id="content-wrap">
+      <div class="main-title">
+        <h1>Anastasis</h1>
+      </div>
+      <div class="toolbar">
+        <ul>
+          <li><a href="index.html">Start</a></li>
+          <li><a href="news.html">Neuigkeiten</a></li>
+          <li><a class="active" href="about.html">Über uns</a></li>
+          <li><a href="docs.html">Dokumentation</a></li>
+          <li style="float:right"><a href="../en/index.html">EN</a></li>
+          <li style="float:right"><a class="active" 
href="index.html">DE</a></li>
+        </ul>
+      </div>
+      <div class="content">
+        <h1>Introducing Anastasis</h1>
+        Anastasis is a key recovery system that allows the user to securely 
deposit shares of a core secret with an open set of escrow providers,
+        and to recover it if the secret is lost. The core secret itself is 
protected from the escrow providers by giving each provider only part of
+        the information, and additionally by encrypting it with an 
identity-based key unknown to the providers.
+        The main objective of Anastasis is to ensure that the user can 
reliably recover the core secret,
+        while making this as difficult as possible for everyone else.
+        
<br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
+
+      </div>
+    </div>
+    <footer id="footer"></footer>
+  </div>
+  </body>
+</html>
diff --git a/de/docs.html b/de/docs.html
new file mode 100644
index 0000000..1ca112b
--- /dev/null
+++ b/de/docs.html
@@ -0,0 +1,40 @@
+<!doctype html>
+<html lang="de">
+  <head>
+    <meta charset="utf-8">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link href='https://fonts.googleapis.com/css?family=Lato' rel='stylesheet'>
+    <link rel="stylesheet" href="../css/style.css">
+    <title>Anastasis</title>
+  </head>
+  <body>
+    <div id="page-container">
+      <div id="content-wrap">
+      <div class="main-title">
+        <h1>Anastasis</h1>
+      </div>
+      <div class="toolbar">
+        <ul>
+          <li><a href="index.html">Start</a></li>
+          <li><a href="news.html">Neuigkeiten</a></li>
+          <li><a href="about.html">Über uns</a></li>
+          <li><a class="active" href="docs.html">Dokumentation</a></li>
+          <li style="float:right"><a href="../en/index.html">EN</a></li>
+          <li style="float:right"><a class="active" 
href="index.html">DE</a></li>
+        </ul>
+      </div>
+      <div class="content">
+        <h1>Introducing Anastasis</h1>
+        Anastasis is a key recovery system that allows the user to securely 
deposit shares of a core secret with an open set of escrow providers,
+        and to recover it if the secret is lost. The core secret itself is 
protected from the escrow providers by giving each provider only part of
+        the information, and additionally by encrypting it with an 
identity-based key unknown to the providers.
+        The main objective of Anastasis is to ensure that the user can 
reliably recover the core secret,
+        while making this as difficult as possible for everyone else.
+        
<br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
+
+      </div>
+    </div>
+    <footer id="footer"></footer>
+  </div>
+  </body>
+</html>
diff --git a/de/index.html b/de/index.html
new file mode 100644
index 0000000..c279f6a
--- /dev/null
+++ b/de/index.html
@@ -0,0 +1,40 @@
+<!doctype html>
+<html lang="de">
+  <head>
+    <meta charset="utf-8">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link href='https://fonts.googleapis.com/css?family=Lato' rel='stylesheet'>
+    <link rel="stylesheet" href="../css/style.css">
+    <title>Anastasis</title>
+  </head>
+  <body>
+    <div id="page-container">
+      <div id="content-wrap">
+      <div class="main-title">
+        <h1>Anastasis</h1>
+      </div>
+      <div class="toolbar">
+        <ul>
+          <li><a class="active" href="index.html">Start</a></li>
+          <li><a href="news.html">Neuigkeiten</a></li>
+          <li><a href="about.html">Über uns</a></li>
+          <li><a href="docs.html">Dokumentation</a></li>
+          <li style="float:right"><a href="../en/index.html">EN</a></li>
+          <li style="float:right"><a class="active" 
href="index.html">DE</a></li>
+        </ul>
+      </div>
+      <div class="content">
+        <h1>Introducing Anastasis</h1>
+        Anastasis is a key recovery system that allows the user to securely 
deposit shares of a core secret with an open set of escrow providers,
+        and to recover it if the secret is lost. The core secret itself is 
protected from the escrow providers by giving each provider only part of
+        the information, and additionally by encrypting it with an 
identity-based key unknown to the providers.
+        The main objective of Anastasis is to ensure that the user can 
reliably recover the core secret,
+        while making this as difficult as possible for everyone else.
+        
<br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
+
+      </div>
+    </div>
+    <footer id="footer"></footer>
+  </div>
+  </body>
+</html>
diff --git a/de/news.html b/de/news.html
new file mode 100644
index 0000000..8742676
--- /dev/null
+++ b/de/news.html
@@ -0,0 +1,40 @@
+<!doctype html>
+<html lang="de">
+  <head>
+    <meta charset="utf-8">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link href='https://fonts.googleapis.com/css?family=Lato' rel='stylesheet'>
+    <link rel="stylesheet" href="../css/style.css">
+    <title>Anastasis</title>
+  </head>
+  <body>
+    <div id="page-container">
+      <div id="content-wrap">
+      <div class="main-title">
+        <h1>Anastasis</h1>
+      </div>
+      <div class="toolbar">
+        <ul>
+          <li><a href="index.html">Start</a></li>
+          <li><a class="active" href="news.html">Neuigkeiten</a></li>
+          <li><a href="about.html">Über uns</a></li>
+          <li><a href="docs.html">Dokumentation</a></li>
+          <li style="float:right"><a href="../en/index.html">EN</a></li>
+          <li style="float:right"><a class="active" 
href="index.html">DE</a></li>
+        </ul>
+      </div>
+      <div class="content">
+        <h1>Introducing Anastasis</h1>
+        Anastasis is a key recovery system that allows the user to securely 
deposit shares of a core secret with an open set of escrow providers,
+        and to recover it if the secret is lost. The core secret itself is 
protected from the escrow providers by giving each provider only part of
+        the information, and additionally by encrypting it with an 
identity-based key unknown to the providers.
+        The main objective of Anastasis is to ensure that the user can 
reliably recover the core secret,
+        while making this as difficult as possible for everyone else.
+        
<br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
+
+      </div>
+    </div>
+    <footer id="footer"></footer>
+  </div>
+  </body>
+</html>
diff --git a/en/about.html b/en/about.html
new file mode 100644
index 0000000..6aeda41
--- /dev/null
+++ b/en/about.html
@@ -0,0 +1,40 @@
+<!doctype html>
+<html lang="de">
+  <head>
+    <meta charset="utf-8">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link href='https://fonts.googleapis.com/css?family=Lato' rel='stylesheet'>
+    <link rel="stylesheet" href="../css/style.css">
+    <title>Anastasis</title>
+  </head>
+  <body>
+    <div id="page-container">
+      <div id="content-wrap">
+      <div class="main-title">
+        <h1>Anastasis</h1>
+      </div>
+      <div class="toolbar">
+        <ul>
+          <li><a href="index.html">Home</a></li>
+          <li><a href="news.html">News</a></li>
+          <li><a class="active" href="about.html">About</a></li>
+          <li><a href="docs.html">Docs</a></li>
+          <li style="float:right"><a class="active" 
href="index.html">EN</a></li>
+          <li style="float:right"><a href="../de/index.html">DE</a></li>
+        </ul>
+      </div>
+      <div class="content">
+        <h1>Introducing Anastasis</h1>
+        Anastasis is a key recovery system that allows the user to securely 
deposit shares of a core secret with an open set of escrow providers,
+        and to recover it if the secret is lost. The core secret itself is 
protected from the escrow providers by giving each provider only part of
+        the information, and additionally by encrypting it with an 
identity-based key unknown to the providers.
+        The main objective of Anastasis is to ensure that the user can 
reliably recover the core secret,
+        while making this as difficult as possible for everyone else.
+        
<br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
+
+      </div>
+    </div>
+    <footer id="footer"></footer>
+  </div>
+  </body>
+</html>
diff --git a/en/docs.html b/en/docs.html
new file mode 100644
index 0000000..1d59894
--- /dev/null
+++ b/en/docs.html
@@ -0,0 +1,40 @@
+<!doctype html>
+<html lang="de">
+  <head>
+    <meta charset="utf-8">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link href='https://fonts.googleapis.com/css?family=Lato' rel='stylesheet'>
+    <link rel="stylesheet" href="../css/style.css">
+    <title>Anastasis</title>
+  </head>
+  <body>
+    <div id="page-container">
+      <div id="content-wrap">
+      <div class="main-title">
+        <h1>Anastasis</h1>
+      </div>
+      <div class="toolbar">
+        <ul>
+          <li><a href="index.html">Home</a></li>
+          <li><a href="news.html">News</a></li>
+          <li><a href="about.html">About</a></li>
+          <li><a class="active" href="docs.html">Docs</a></li>
+          <li style="float:right"><a class="active" 
href="index.html">EN</a></li>
+          <li style="float:right"><a href="../de/index.html">DE</a></li>
+        </ul>
+      </div>
+      <div class="content">
+        <h1>Introducing Anastasis</h1>
+        Anastasis is a key recovery system that allows the user to securely 
deposit shares of a core secret with an open set of escrow providers,
+        and to recover it if the secret is lost. The core secret itself is 
protected from the escrow providers by giving each provider only part of
+        the information, and additionally by encrypting it with an 
identity-based key unknown to the providers.
+        The main objective of Anastasis is to ensure that the user can 
reliably recover the core secret,
+        while making this as difficult as possible for everyone else.
+        
<br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
+
+      </div>
+    </div>
+    <footer id="footer"></footer>
+  </div>
+  </body>
+</html>
diff --git a/en/index.html b/en/index.html
new file mode 100644
index 0000000..48b4599
--- /dev/null
+++ b/en/index.html
@@ -0,0 +1,40 @@
+<!doctype html>
+<html lang="de">
+  <head>
+    <meta charset="utf-8">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link href='https://fonts.googleapis.com/css?family=Lato' rel='stylesheet'>
+    <link rel="stylesheet" href="../css/style.css">
+    <title>Anastasis</title>
+  </head>
+  <body>
+    <div id="page-container">
+      <div id="content-wrap">
+      <div class="main-title">
+        <h1>Anastasis</h1>
+      </div>
+      <div class="toolbar">
+        <ul>
+          <li><a class="active" href="index.html">Home</a></li>
+          <li><a href="news.html">News</a></li>
+          <li><a href="about.html">About</a></li>
+          <li><a href="docs.html">Docs</a></li>
+          <li style="float:right"><a class="active" 
href="index.html">EN</a></li>
+          <li style="float:right"><a href="../de/index.html">DE</a></li>
+        </ul>
+      </div>
+      <div class="content">
+        <h1>Introducing Anastasis</h1>
+        Anastasis is a key recovery system that allows the user to securely 
deposit shares of a core secret with an open set of escrow providers,
+        and to recover it if the secret is lost. The core secret itself is 
protected from the escrow providers by giving each provider only part of
+        the information, and additionally by encrypting it with an 
identity-based key unknown to the providers.
+        The main objective of Anastasis is to ensure that the user can 
reliably recover the core secret,
+        while making this as difficult as possible for everyone else.
+        
<br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
+
+      </div>
+    </div>
+    <footer id="footer"></footer>
+  </div>
+  </body>
+</html>
diff --git a/en/news.html b/en/news.html
new file mode 100644
index 0000000..4058b0c
--- /dev/null
+++ b/en/news.html
@@ -0,0 +1,40 @@
+<!doctype html>
+<html lang="de">
+  <head>
+    <meta charset="utf-8">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link href='https://fonts.googleapis.com/css?family=Lato' rel='stylesheet'>
+    <link rel="stylesheet" href="../css/style.css">
+    <title>Anastasis</title>
+  </head>
+  <body>
+    <div id="page-container">
+      <div id="content-wrap">
+      <div class="main-title">
+        <h1>Anastasis</h1>
+      </div>
+      <div class="toolbar">
+        <ul>
+          <li><a href="index.html">Home</a></li>
+          <li><a class="active" href="news.html">News</a></li>
+          <li><a href="about.html">About</a></li>
+          <li><a href="docs.html">Docs</a></li>
+          <li style="float:right"><a class="active" 
href="index.html">EN</a></li>
+          <li style="float:right"><a href="../de/index.html">DE</a></li>
+        </ul>
+      </div>
+      <div class="content">
+        <h1>Introducing Anastasis</h1>
+        Anastasis is a key recovery system that allows the user to securely 
deposit shares of a core secret with an open set of escrow providers,
+        and to recover it if the secret is lost. The core secret itself is 
protected from the escrow providers by giving each provider only part of
+        the information, and additionally by encrypting it with an 
identity-based key unknown to the providers.
+        The main objective of Anastasis is to ensure that the user can 
reliably recover the core secret,
+        while making this as difficult as possible for everyone else.
+        
<br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
+
+      </div>
+    </div>
+    <footer id="footer"></footer>
+  </div>
+  </body>
+</html>

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]