-
Notifications
You must be signed in to change notification settings - Fork 0
/
index_test.html
100 lines (93 loc) · 3.87 KB
/
index_test.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<!DOCTYPE html>
<head>
<meta name="viewport" content="width=device-width; initial-scale=1.0">
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
<title>Portfolio - Morten Høfft</title>
<link rel="stylesheet" type="text/css" href="stylesheets/style.css" />
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.13/angular.min.js"></script>
</head>
<body class="bg-color">
<header class="">
<div class="videoheader">
<video id="big-video-vid_html5_api" preload="auto" webkit-playsinline="" autoplay="" src="slet.mp4"></video>
<div class="content header" style="position:relative">
<div class="center">
<span class="inline portfolio">A</span>
</div>
<div class="center">
<span class="inline headline">
<h1>Portfolio</h1>
</span>
</div>
<div class="center serif">
<h3>by</h3>
</div>
<div class="center"></div>
<div>
<div class="center bold green">Morten Høfft</div>
</div>
</div>
</div>
</header>
<nav class="content marbot">
<ul>
<li>
<a href="..">Home</a>
</li>
<li>
<a href="https://www.facebook.com/hoefft" target="_blank" class="fi-social-facebook icon" title="Facebook"></a>
</li>
<li>
<a href="https://github.com/MortenHofft" target="_blank" class="fi-social-github icon" title="Github"></a>
</li>
<li>
<a href="http://dk.linkedin.com/pub/morten-h%C3%B8fft/5/155/811" target="_blank" class="fi-social-linkedin icon" title="LinkedIn"></a>
</li>
<li>
<a href="about/">About</a>
</li>
</ul>
</nav>
<div class="content" ng-app="posts">
<!--h1>
<a class="intro-post" href="about/">About</a>
</h1>
<div class="columns">
<p>
This site works as documentation and motivation to complete undertakings, which – in my experience – all to often end up half-baked and eventually lost. It is primarily for learning and the joy of it, but some projects might turn out to have the interest of other people.
</p>
</div-->
<div id="posts" ng-controller="postCtrl">
<div ng-include src="'posts.html'"></div>
</div>
</div>
<script>
function populate(data){
angular.module('posts', [])
.controller('postCtrl', function($scope) {
$scope.types = ["Projects", "Miscellaneous"];
$scope.data = {posts: data.feed.entry};
$scope.deepFilter = function(type) {
return function( item ) {
return item.gsx$type.$t === type;
};
};
$scope.dateSort = function(item) {
return item.gsx$date.$t;
}
});
};
</script>
<script src="https://spreadsheets.google.com/feeds/list/0AopignMyNhAgdHlHTmdvOEdaa21sTXdJbm9kME5hY1E/od6/public/values?alt=json-in-script&callback=populate"></script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-48466800-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</body>
</html>