Files
libreevent/website/dist/download/thanks/index.html
2023-10-07 15:43:51 +02:00

71 lines
2.8 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Download libreevent, the free and open source event management solution">
<title>Download - libreǝvent</title>
<link rel="stylesheet" href="/css/style.css">
<style>
.download-buttons {
width: 100%;
margin-top: 2%;
margin-bottom: 2%;
display: flex;
flex-wrap: wrap;
height: fit-content;
}
.button {
display: block;
margin: 0;
width: 40%;
margin-right: 1%;
margin-bottom: 0.5%;
}
</style>
</head>
<body>
<div id="nav"></div>
<div id="backToTop" onclick="backToTop();"></div>
<div class="title-wrapper">
<h1>Thank you for downloading <i>libre</i>ǝvent</h1>
</div>
<div class="content">
<h3>Where to go from here?</h3>
<ul>
<li>Deploy libreevent on a webserver: <a href="/docs/setup/installation">Guide</a></li>
<li>Setup and configure libreevent: <a href="/docs/setup/setup">Guide</a></li>
<li>Help develop libreevent: <a href="/docs/contributing">Guidelines</a></li>
<li>Support libreevent's development: <a href="/docs/sponsoring">Sponsoring</a></li>
</ul>
</div>
<div id="footer"></div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.1/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.3/jquery-ui.min.js" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script>
let btn = document.getElementById( 'backToTop' );
$( document ).ready( function () {
$( '#nav' ).load( '/nav.html' );
$( '#footer' ).load( '/footer.html' );
} );
function backToTop () {
if ( document.body.scrollTop > 500 || document.documentElement.scrollTop > 500 ) {
window.scrollTo( { top: 0, behavior: 'smooth' } );
}
}
window.onscroll = function () {
if ( document.body.scrollTop > 500 || document.documentElement.scrollTop > 500 ) {
btn.style.opacity = '1';
btn.style.cursor = 'pointer';
} else {
btn.style.opacity = '0';
btn.style.cursor = 'default';
}
};
</script>
</body>
</html>