-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
62 lines (58 loc) · 2.35 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html ng-app="App" lang="en">
<head>
<title>PhilCorbett.net</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="css/main.css" rel="stylesheet" type="text/css" media="all" />
<script src="js/lib/angular.min.js"></script>
<script src="js/lib/angular-route.js"></script>
<script src="js/app/app.js"></script>
</head>
<body class="h-card">
<header>
<a class="p-name u-url" href="http://philcorbett.net" rel="me">Phil Corbett</a>
</header>
<div class="hero">
<p class="left lightBox">
I believe that technology is about connecting with people and inspiring them; it is about sharing experiences and
sharing knowledge. My goal is to improve my relationships and help others do the same through the use,
propagation, and
expansion of technology in a way that is smart, tactful, and positive.
</p>
<div class="image"></div>
</div>
<div class="body">
<div ng-controller="FeedCtrl" class="contentBox">
<h2>What have I been up to?</h2>
<a ng-href="{{item.url}}" ng-repeat="item in items">
<div class="contentItem">
<img ng-src="{{item.imgSrc}}" ng-if="item.imgSrc" alt="{{item.title}}" />
<img ng-src="./images/media/{{item.media}}.png" ng-if="!item.imgSrc" alt="{{tiem.title}}" />
<div>
<div style="font-weight: bold;">{{item.title}}</div>
<div>{{item.description}}</div>
</div>
</div>
</a>
</div>
<div ng-controller="MicroCtrl" class="contentBox">
<h2>Micro Feed</h2>
<p class="microItem">I've been playing around with <a rel="me" href="https://indieweb.social/@PhilCorbettLive">Mastodon</a> latetly since the other site is burning.</p>
<p class="microItem" ng-repeat="item in items">
{{item}}
</p>
</div>
</div>
<app-footer></app-footer>
<script>
(function (i, s, o, g, r, a, m) {
i['GoogleAnalyticsObject'] = r; i[r] = i[r] || function () {
(i[r].q = i[r].q || []).push(arguments)
}, i[r].l = 1 * new Date(); a = s.createElement(o),
m = s.getElementsByTagName(o)[0]; a.async = 1; a.src = g; m.parentNode.insertBefore(a, m)
})(window, document, 'script', '//www.google-analytics.com/analytics.js', 'ga');
ga('create', 'UA-20328842-6', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>