mirror of
https://github.com/janishutz/libreevent.git
synced 2025-11-25 13:24:24 +00:00
updates to website
This commit is contained in:
71
website/dist/download/thanks/index.html
vendored
Normal file
71
website/dist/download/thanks/index.html
vendored
Normal file
@@ -0,0 +1,71 @@
|
||||
<!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>
|
||||
Reference in New Issue
Block a user