apostrophe/index.html

82 lines
3.0 KiB
HTML
Raw Normal View History

2018-05-30 16:41:16 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="assets/sass/styles.css">
<link href="https://fonts.googleapis.com/css?family=Fira+Sans" rel="stylesheet">
<title>UberWriter</title>
<script
src="https://code.jquery.com/jquery-3.3.1.min.js"
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
crossorigin="anonymous"></script>
<script src="assets/js/jquery.scrollify.js"></script>
<script>
$(function() {
$.scrollify({
section : ".section",
2018-05-31 23:22:49 +00:00
interstitialSection : ".footer",
setHeights: false,
2018-05-30 16:41:16 +00:00
});
});
</script>
</head>
2018-05-30 19:52:26 +00:00
<body class="background-2">
2018-05-30 16:41:16 +00:00
<header>
<img class="logo" src="images/uberwriter_logo.svg" alt="logo"></img>
<h1>berWriter</h1>
<div class="buttons">
<a href="https://www.paypal.me/WolfVollprecht">
<button class="donate">Donate</button>
</a>
2018-05-30 23:13:49 +00:00
<a id="download" href="https://flathub.org/apps/details/de.wolfvollprecht.UberWriter">
2018-05-30 16:41:16 +00:00
<button class="download">Download!</button>
</a>
</div>
</header>
<main>
2018-05-31 23:22:49 +00:00
<section class="section" id="MainApp">
2018-05-30 16:41:16 +00:00
<img src="images/main_web.svg#MainApp" alt="">
</section>
2018-05-31 23:22:49 +00:00
<section class="section" id="DarkMode">
2018-05-30 16:41:16 +00:00
<img src="images/main_web.svg#MainAppDark" alt=""></img>
</section>
2018-05-31 23:22:49 +00:00
<section class="section" id="InlinePreview">
2018-05-30 16:41:16 +00:00
<img src="images/main_web.svg#InlinePreview" alt=""></img>
</section>
2018-05-31 23:22:49 +00:00
<section class="section" id="InlinePreview-2">
2018-05-30 16:41:16 +00:00
<img src="images/main_web.svg#InlinePrevi2w" alt=""></img>
</section>
2018-05-31 23:22:49 +00:00
<section class="section" id="InlinePreview-3">
2018-05-30 16:41:16 +00:00
<img src="images/main_web.svg#InlinePrevi3w" alt=""></img>
</section>
2018-05-31 00:49:11 +00:00
<section class="section dark" id="footer">
<div id="programmers">
2018-05-31 23:22:49 +00:00
<div class="programmer left">
2018-06-01 15:19:54 +00:00
<img src="images/Wolf.jpeg" alt="Wolf Vollprecht">
2018-05-31 23:22:49 +00:00
<p>Blablabla</p>
</div>
<div class="programmer right">
2018-06-01 15:19:54 +00:00
<img src="images/Manu.jpeg" alt="Manuel Genovés">
2018-05-31 23:22:49 +00:00
<p>Blebleble</p>
</div>
2018-05-31 00:49:11 +00:00
</div>
<div id="footer">
<div id="about">
<p>UberWriter©, a GPL program</p>
</div>
<div id="links">
2018-05-31 23:22:49 +00:00
<a href="https://github.com/UberWriter">Github</a>
<a href="https://poeditor.com/join/project/gxVzFyXb2x">Localization</a>
<a href="https://flathub.org/apps/details/de.wolfvollprecht.UberWriter">Flathub</a>
<a href="https://www.paypal.me/WolfVollprecht">Donate</a>
2018-05-31 00:49:11 +00:00
</div>
</div>
</section>
2018-05-30 16:41:16 +00:00
</main>
</body>
</html>