mirror of
https://github.com/janishutz/libreevent.git
synced 2025-11-25 05:14:23 +00:00
basic setup & first text for website
This commit is contained in:
0
apps/iOS/README.md
Normal file
0
apps/iOS/README.md
Normal file
@@ -1,12 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<title>myevent - Free & Open Source event management solution</title>
|
|
||||||
<link rel="stylesheet" href="/css/style.css">
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta name="description" content="Looking for a free and open source event management solution you can host yourself? myevent is a project that does exactly that.">
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<h1></h1>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
0
server/admin/pwdmanager.js
Normal file
0
server/admin/pwdmanager.js
Normal file
0
server/admin/routes.js
Normal file
0
server/admin/routes.js
Normal file
0
server/backend/db/interact.js
Normal file
0
server/backend/db/interact.js
Normal file
0
server/backend/routes.js
Normal file
0
server/backend/routes.js
Normal file
0
server/ui/css/style.css
Normal file
0
server/ui/css/style.css
Normal file
0
server/ui/html/index.html
Normal file
0
server/ui/html/index.html
Normal file
0
server/ui/js/index.js
Normal file
0
server/ui/js/index.js
Normal file
0
website/css/style.css
Normal file
0
website/css/style.css
Normal file
0
website/docs/index.html
Normal file
0
website/docs/index.html
Normal file
0
website/docs/js/index.js
Normal file
0
website/docs/js/index.js
Normal file
48
website/index.html
Normal file
48
website/index.html
Normal file
@@ -0,0 +1,48 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>myevent - Free & Open Source event management solution</title>
|
||||||
|
<link rel="stylesheet" href="/css/style.css">
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta name="description" content="Looking for a free and open source event management solution you can host yourself? myevent is a project that does exactly that.">
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="nav"></div>
|
||||||
|
<div class="title-wrapper">
|
||||||
|
<h1>myevent</h1>
|
||||||
|
<footer>Free & Open Source self-hosted event management solution</footer>
|
||||||
|
</div>
|
||||||
|
<div class="content">
|
||||||
|
<div class="feature-overview">
|
||||||
|
<div class="feature">
|
||||||
|
<h4>Simple to set up</h4>
|
||||||
|
<p>This project is simple to set up on your own web-server. Follow our tutorial on how to install it!</p>
|
||||||
|
<a href="/docs/tutorial" class="button">Tutorial</a>
|
||||||
|
</div>
|
||||||
|
<div class="feature">
|
||||||
|
<h4>Low system requirements</h4>
|
||||||
|
<p>This project does not require high-end hardware to run. You may start out with a cheap webhosting account and scale if there's need.</p>
|
||||||
|
<a href="/docs/systemrequirements" class="button">System requirements</a>
|
||||||
|
</div>
|
||||||
|
<div class="feature">
|
||||||
|
<h4>Based on a variant of the MEVN tech stack</h4>
|
||||||
|
<p>This project can (but does not have to) use a MySQL database, it uses express.js for interaction, Vue.js as the front-end framework and Node.js for the server.</p>
|
||||||
|
<a href="/docs/how-it-works" class="button">How it works</a>
|
||||||
|
</div>
|
||||||
|
<div class="feature">
|
||||||
|
<h4>Free & Open Source</h4>
|
||||||
|
<p>You may use this project entirely for free or donate some money to keep it alive! You may also help contributing to the project to make it even better!</p>
|
||||||
|
<a href="/docs/sponsor" class="button">Donate</a>
|
||||||
|
<a href="/docs/contributing" class="button">Contributing</a>
|
||||||
|
</div>
|
||||||
|
<div class="feature">
|
||||||
|
<h4>Plugins</h4>
|
||||||
|
<p>You may expand the project's capabilities by using plugins or by developing your own plugin.</p>
|
||||||
|
<a href="/docs/plugins" class="button">Existing plugins</a>
|
||||||
|
<a href="/docs/contributing/plugins" class="button">Build your own plugin</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="footer"></div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
0
website/js/index.js
Normal file
0
website/js/index.js
Normal file
Reference in New Issue
Block a user