-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.html
More file actions
32 lines (30 loc) · 1.29 KB
/
Copy pathtemplate.html
File metadata and controls
32 lines (30 loc) · 1.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="utf-8">
<title>Oldschool Verwaltung</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<div class="d-flex" id="wrapper">
<!-- sidebar -->
<div class="bg-light border-right" id="sidebar-wrapper">
<div class="sidebar-heading">Menü</div>
<div class="list-group list-group-flush">
<a href="#" class="list-group-item list-group-item-action bg-light">Home</a>
<a href="#" class="list-group-item list-group-item-action bg-light">Unterseite</a>
<a href="#" class="list-group-item list-group-item-action bg-light">Kontakt</a>
</div>
</div>
<!-- /sidebar -->
<!-- page content -->
<div class="page-content-wrapper">
<div class="container-fluid">
<h1>Willkommen</h1>
</div>
</div>
<!-- /page content -->
</div>
</body>
</html>