Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 12 additions & 8 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,19 +1,23 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta charset="utf-8" />
<title>World driven</title>
<meta name="author" content="Tobias Wilken" />
<meta
name="description"
content="Worlddriven admin interface for managing repositories and configurations"
content="Community driven pull request automerge"
/>
<link rel="icon" href="/images/favicon-32x32.png" />
<title>Worlddriven Admin</title>
<link rel="stylesheet" href="/style.css" />
<link rel="stylesheet" href="/theme.css" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<link href="/style.css" rel="stylesheet" />
</head>

<body>
<div id="root"></div>
<div class="bg"></div>
<div id="app"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>
22 changes: 22 additions & 0 deletions public/admin.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>World driven</title>
<meta name="author" content="Tobias Wilken" />
<meta
name="description"
content="Community driven pull request automerge"
/>
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<link href="/static/css/style.css" rel="stylesheet" />
</head>

<body>
<div id="app"></div>
<script src="/static/js/main.js"></script>
</body>
</html>
23 changes: 23 additions & 0 deletions public/dashboard.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>World driven</title>
<meta name="author" content="Tobias Wilken" />
<meta
name="description"
content="Community driven pull request automerge"
/>
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<link href="/style.css" rel="stylesheet" />
</head>

<body>
<div class="bg"></div>
<div id="app"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>
106 changes: 106 additions & 0 deletions public/imprint.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,106 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>World Driven - Pull Request Auto-Merge</title>

<meta name="author" content="Tobias Wilken" />
<meta
name="description"
content="World driven introduces a contribution based weighted voting system
for automatic merging of pull requests. As soon as you contribute to a project, you get a share or
responsibility for the progress of the project."
/>
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<meta property="og:type" content="website" />
<meta property="og:title" content="World driven" />
<meta
property="og:description"
content="World driven introduces a contribution based weighted voting system
for automatic merging of pull requests. As soon as you contribute to a project, you get a share or
responsibility for the progress of the project."
/>
<meta property="og:url" content="https://www.worlddriven.org" />
<meta
property="og:image"
content="https://www.worlddriven.org/images/globe.svg"
/>
<meta name="twitter:card" content="summary" />
<meta name="twitter:title" content="World driven" />
<meta
name="twitter:description"
content="World driven introduces a contribution based weighted voting system
for automatic merging of pull requests. As soon as you contribute to a project, you get a share or
responsibility for the progress of the project."
/>
<meta
name="twitter:image"
content="https://www.worlddriven.org/images/globe.svg"
/>
<meta name="twitter:image:alt" content="World driven logo" />

<link rel="canonical" href="https://www.worlddriven.org" />

<link rel="stylesheet" type="text/css" href="static/style.css" />

<link
rel="alternate"
hreflang="x-default"
href="http://www.worlddriven.org"
/>

<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "Organization",
"url": "https://www.worlddriven.org",
"logo": "https://www.worlddriven.org/images/globe.svg"
}
</script>
</head>

<body>
<div class="bg"></div>
<article class="container">
<header>
<div class="login">
<p>
Login with
<a href="/login/">
<img
src="/images/GitHub-Mark-120px-plus.png"
alt="GitHub logo linked to login"
width="30"
/></a>
</p>
</div>
<a href="/" class="logo"
><img
src="/images/logo_world_driven.svg"
class="logo"
alt="World driven logo"
/></a>
<h4>Trustable service landscape</h4>
</header>

<h1>Imprint</h1>

<ul>
<li>Tobias Wilken</li>
<li>Ziegeleiweg 29</li>
<li>D-26203 Wardenburg</li>
<li><a href="mailto:tooangel@tooangel.de">tooangel@tooangel.de</a></li>
<li><a href="tel:+4916096657514">+49 160 96657514</a></li>
</ul>
</article>

<footer>
<span><a href="/imprint">Imprint</a></span>
<span><a href="/privacyPolicy">Privacy Policy</a></span>
<span><a href="/admin/logs">Public Admin</a></span>
</footer>
</body>
</html>
Loading