apostrophe/index.html

89 lines
3.7 KiB
HTML

<!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",
interstitialSection : ".footer",
setHeights: false,
});
});
</script>
</head>
<body class="background-2">
<header>
<img class="logo" src="images/uberwriter_logo.svg" alt="logo">
<h1>berWriter</h1>
<div class="buttons">
<a href="https://www.paypal.me/WolfVollprecht">
<button class="donate">Donate</button>
</a>
<a id="download" href="https://flathub.org/apps/details/de.wolfvollprecht.UberWriter">
<button class="download">Download!</button>
</a>
</div>
</header>
<main>
<section class="section" id="MainApp">
<img src="images/main_web.svg#MainApp" alt="">
</section>
<section class="section" id="DarkMode">
<img src="images/main_web.svg#MainAppDark" alt="">
</section>
<section class="section" id="InlinePreview">
<img src="images/main_web.svg#InlinePreview" alt="">
</section>
<section class="section" id="InlinePreview-2">
<img src="images/main_web.svg#InlinePrevi2w" alt="">
</section>
<section class="section" id="InlinePreview-3">
<img src="images/main_web.svg#InlinePrevi3w" alt="">
</section>
<section class="section" id="FocusMode">
<img src="images/main_web.svg#FocusMode" alt="">
</section>
<section class="section programmers">
<div class="programmer left">
<img src="images/Wolf.jpeg" alt="Wolf Vollprecht">
<p>Wolf started UberWriter as part of the Ubuntu App Showdown a long time ago.
Then a Master degree in Robotics at ETH Zurich got in the way of fulltime development on UberWriter.
Now he works full time on interactive computing and open source HPC libraries at QuantStack in Paris: check out xtensor, xsimd and xframe! ;)</p>
</div>
<div class="programmer right">
<img src="images/Manu.jpg" alt="Manuel Genovés">
<p>Manuel started colaborating in UberWriter after its development stopped a couple years ago, finishing its
migration to the latest libraries and contributing to package it with Flatpak.
Currently he is a student finishing a degree in Physics at the University of Valencia, doing
research into the holographic microscopy field.
</p>
</div>
</section>
</main>
<footer id="footer">
<div id="about">
<p>UberWriter©, a GPL program</p>
</div>
<div id="links">
<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>
</div>
</footer>
</body>
</html>