-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (25 loc) · 1.15 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Personal Website of Gernot Feichter</title>
<meta name="description" content="Articles on Intelligence and the P vs NP problem.">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="google-site-verification" content="3tylvGt6mREaj19YHtZ4pwQ0a-48Wb-bbkLYx9qnRHc" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css/custom.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular-route.js"></script>
<script src="js/myApp.js"></script>
<style>
</style>
</head>
<body data-ng-app="myApp">
<div data-ng-include="'html/nav_bar.html'"></div>
<div class="container-fluid">
<div data-ng-view></div>
</div>
</body>
</html>