Initial Commit

This commit is contained in:
Timothy Rogers 2020-03-06 20:40:46 -05:00
commit 67767e3faa
11 changed files with 343 additions and 0 deletions

54
guides.php Normal file
View file

@ -0,0 +1,54 @@
<?php include('views/https.php'); ?>
<!DOCTYPE html>
<html lang="en">
<head>
<title>HACK13 Site</title>
<link rel="stylesheet" type="text/css" href="assets/bootstrap.min.css"/>
</head>
<body>
<?php include('views/navbar.php'); ?>
<main role="main">
<div class="container">
<h1 class="mt-5">Guides</h1>
<div class="container">
<div class="row">
<table class="table table-hover">
<thead>
<tr>
<th scope="col">Name</th>
<th scope="col">About</th>
<th scope="col">Download</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Load Balancing OpenSimulator</th>
<td>This is a simple guide to breaking apart your OpenSimulator Robust and load balancing between the multiple instances.</td>
<td>
<a href="#" target="_blank" class="btn btn-secondary"><i class="fab fa-markdown"></i></a>
</td>
</tr>
<tr>
<th scope="row">Automated Borg Backups</th>
<td>Simple guide to setting up backups with borg backup software on your server.</td>
<td>
<a href="#" target="_blank" class="btn btn-secondary"><i class="fab fa-markdown"></i></a>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</main>
</body>
<footer class="footer mt-auto py-3">
<div class="container">
<span class="text-muted"><i class="far fa-copyright"></i>HACK13<i>(Timothy Rogers)</i></span>
</div>
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
<script defer src="https://use.fontawesome.com/releases/v5.8.1/js/all.js" integrity="sha384-g5uSoOSBd7KkhAMlnQILrecXvzst9TdC09/VM+pjDTCM+1il8RHz5fKANTFFb+gQ" crossorigin="anonymous"></script>
</footer>
</html>