-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (40 loc) · 1.59 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
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>christoffee</title>
<link rel="stylesheet" href="vendor/css/bootstrap.css">
<link rel="stylesheet" href="app/css/styles.css">
<link rel="shortcut icon" href="app/images/christoffeeLogo.png">
</head>
<body ng-app="myApp">
<div id="main" ng-controller="BlogController">
<div id="logo">
<img src='app/images/christoffeeLogo.png' />
</div>
<div class='item'>
</div>
<div class='item' id="tags">
<p>game<span>designer</span> / game<span>developer</span> / web<span>developer</span> / story<span>maker</span> / data<span>analysis</span> / cake<span>eater</span></p>
</div>
<div class='item'>
<h3>Search</h3>
<input ng-model="searchText.title" ng-click="minimiseAll()">
</div>
<div class="{{item.type}}" ng-repeat="item in items | orderBy:'order':true | filter:searchText" ng-click="togglecontent({{item.id}})">
<h3>{{item.title}}</h3>
<div ng-hide="item.unselected" data-ng-animate="'fade'" ng-bind-html-unsafe="item.content"></div>
</div>
<div class='item' id='angularjs'>
<img src='app/images/angularjs-logo.png' />
<p>Built in angularjs.</p>
</div>
</div>
<div id="footer">
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.1.5/angular.js"></script>
<script src="app/js/app.js"></script>
</body>
</html>