-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·99 lines (96 loc) · 3.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
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
<!DOCTYPE HTML>
<html lang="en">
<head>
<link rel="stylesheet" type="text/css" media="all" href="css/bootstrap/css/bootstrap.min.css" />
<link rel="stylesheet" type="text/css" media="all" href="css/base.css" />
<meta name="name" content="content">
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-33924132-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>
</head>
<body>
<div class="container">
<div class="row">
<div class="span3 offset2">
<ul class="thumbnails">
<li>
<img src="img/self.JPG" alt="leanucci" class="mugshot"/>
</li>
</ul>
</div>
<div class="span5 profile">
<div class="extract">
<h1>
Leandro Marcucci
</h1>
<div class="subtext">
<p>
<i class="icon-hand-right"></i>
You have successfully reached Leandro Marcucci <span class="red">¶</span>
</p>
<p>
<i class="icon-user"></i>
I am a photography enthusiast, a sports fan and a geek <span class="red">¶</span>
</p>
<p>
<i class="icon-cog"></i>
I write code for myself and others <span class="red">¶</span>
</p>
<p>
<i class="icon-envelope"></i>
Want to hire me? write to leanucci at gmail dot com or any of the social networks I participate in <span class="red">¶</span>
</p>
</div>
</div>
</div>
</div>
<div class="row" ng-app="Leanucci">
<div class="span4 border offset2 repos" ng-controller="ReposCtrl">
<h3>My github repositories</h3>
<dl>
<span ng-repeat="repo in repos | orderBy: '-updated_at'">
<dt><h4><a href="{{repo.html_url}}">{{repo.name}}</a></h5></dt>
<dd>{{repo.description | default:"no description"}}</dd>
<dd>I last worked on this on {{ repo.updated_at | date : "MMMM d, yyyy" }}
</span>
</dl>
</div>
<div class="span5 about">
<h3>Other ways to contact me</h3>
<dl>
<dt><a href="http://facebook.com/leanucci.ar/" target="_blank">Facebook</a></dt>
<dt><a href="http://twitter.com/leanucci/" target="_blank">Twitter</a></dt>
<dt><a href="http://www.flickr.com/people/leanucci/" target="_blank">Flickr</a></dt>
<dt>In Skype as leandromarcucci</dt>
<dt><a href="http://ar.linkedin.com/in/leanucci/" target="_blank">Linkedin</a></dt>
</dl>
</div>
</div>
</div>
<div class="row footer">
<div class="span11 offset1">
<div class="span3 column right_border">
<h3>Built With</h3>
<ul class="unstyled">
<li><a href="http://angularjs.org" target="_blank">Angularjs</a></li>
<li><a href="http://twitter.github.com/bootstrap/" target="_blank">Twitter Bootstrap</a></li>
<li><a href="http://github.com/" target="_blank">Github</a></li>
</ul>
</div>
<div class="span3 column right_border">
</div>
<div class="span3 column">
</div>
</div>
</div>
<script src="js/angular-1.0.1.min.js"></script>
<script src="js/controller.js"></script>
</body>
</html>