Add bootstrap and index.html
This commit is contained in:
32
templates/index.tmpl.html
Normal file
32
templates/index.tmpl.html
Normal file
@ -0,0 +1,32 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta http-equiv="Content-Security-Policy" content="default-src 'self' 'unsafe-inline' data: ;">
|
||||
|
||||
<title></title>
|
||||
|
||||
<!-- Diable favicon requests: https://stackoverflow.com/a/13416784 -->
|
||||
<link rel="icon" href="data:;base64,iVBORw0KGgo=">
|
||||
<link href="assets/bootstrap.min.css" rel="stylesheet" >
|
||||
|
||||
<script src="assets/bootstrap.min.js" defer></script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<nav>
|
||||
<ul>
|
||||
<li><a href="/"> Home </a></li>
|
||||
<li><a href="/blog"> Blog </a></li>
|
||||
<li><a href="/projects"> Projects </a></li>
|
||||
<li><a href="/source"> Source </a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
<main>
|
||||
</main>
|
||||
|
||||
</body>
|
||||
</html>
|
Reference in New Issue
Block a user