Simplify, add initial website
This commit is contained in:
parent
1b2ca8eb87
commit
da95985e43
10 changed files with 391 additions and 37 deletions
33
template/_base_template.html
Normal file
33
template/_base_template.html
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="description" content="Dashboard" />
|
||||
<title>Baza Zasobów Hackerspace Trójmiasto</title>
|
||||
<link rel="shortcut icon" href="static/favicon.ico" />
|
||||
<!-- Font Awesome CSS -->
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css"/>
|
||||
<!-- Bootstrap CSS -->
|
||||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity=""/>
|
||||
<link rel="stylesheet" href="static/css/style.css" />
|
||||
<!-- DataTables CSS -->
|
||||
<link rel="stylesheet" href="https://cdn.datatables.net/1.13.6/css/jquery.dataTables.min.css"
|
||||
/>
|
||||
</head>
|
||||
<body>
|
||||
{% block body %}{% endblock body %}
|
||||
</body>
|
||||
<footer>
|
||||
Created by <a href="https://github.com/MartaSien">Marta Sienkiewicz</a>
|
||||
</footer>
|
||||
<!-- jQuery -->
|
||||
<script src="https://code.jquery.com/jquery-3.7.0.min.js"></script>
|
||||
<!-- DataTables JS -->
|
||||
<script src="https://cdn.datatables.net/1.13.6/js/jquery.dataTables.min.js"></script>
|
||||
<script>
|
||||
$(document).ready(function () {
|
||||
$('#dashboardTable').DataTable({paging: false});
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue