-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (32 loc) · 1.32 KB
/
Copy pathindex.html
File metadata and controls
32 lines (32 loc) · 1.32 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 ng-app="portfolioApp">
<head>
<title>ThingMakery</title>
<meta charset="UTF-8">
<link type="text/css" rel="stylesheet" href="css/normalize.css">
<link type="text/css" rel="stylesheet" href="css/animate.css">
<link type="text/css" rel="stylesheet" href="css/layout.css">
<link type="text/css" rel="stylesheet" href="css/style.css">
<link type="text/css" rel="stylesheet" href="http://fonts.googleapis.com/css?family=Montserrat:700|Raleway:600,300|Quattrocento+Sans:400">
<link rel="shortcut icon" href="img/T.ico">
</head>
<body background="img/woodgrain.png">
<div id="canvas">
<header ng-controller="HeaderController">
<a id="headerLogo" href="#main"></a>
<img id="borderTop" src="img/borderTop.png">
<nav id="nav">
<a ng-repeat="field in fields"
ng-href="#{{field.toLowerCase()}}"
ng-class="{sbOrange: url.field === field.toLowerCase()}">
{{field}}
</a>
</nav>
</header>
<main ng-view></main>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.1/angular.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.1/angular-route.js"></script>
<script src="js/portfolio.js"></script>
</body>
</html>