-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
149 lines (130 loc) · 5.07 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Antoine Abt, skier & web developer</title>
<link rel="stylesheet" media="screen" href="screen.css">
<link rel="openid.server" href="http://www.myopenid.com/server"/>
<link rel="openid.delegate" href="http://tonio.myopenid.com"/>
<meta name="geo.country" content="FR" />
<meta name="geo.position" content="45.628,5.8699" />
<meta name="viewport" content="initial-scale=1.0">
<link rel="icon" type="image/png" href="favicon.png" />
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
</head>
<body>
<div id=wrapper>
<header>
<h1>Antoine Abt, skier & web<sup>(geo)</sup>developer</h1>
</header>
<section>
<p>
I build websites, &
mobile ones, with Open Source technologies. I’m experienced in
<a href="http://en.wikipedia.org/wiki/Web_mapping">webmapping</a>.
</p>
<p>
I like simple, usable and accessible websites.
</p>
<p>
Currently working for <a href="http://camptocamp.com">camptocamp</a>.
</p>
</section>
<section>
<h2 id="work">work</h2>
<p>
As a web developer for more than 15 years, I've been working for:
<ul>
<li><a href="http://skipass.com">skipass.com</a> — Grenoble,
<li><a href="http://agenceinteractive.com">Agence Interactive</a> — Lyon.
</ul>
</p>
<p>
See my profiles on :
<a href="https://github.com/tonio">github (@tonio)</a>,
<a href="https://twitter.com/brankgnol">twitter (@brankgnol)</a>.
</p>
</section>
<div id="map">
<span id="load">map is loading… </span>
<a href="/contact" id="closemap">close</a>
</div>
<img src="dessin.png" width="300" height="300" alt="dessin" id="logo"/>
</div>
<footer>
<div class="footer">
<a href="#map" id="small">
<span>+</span>
</a>
<div id="hcard-Antoine-Abt" class="vcard">
<span class="fn">Antoine Abt</span>
<br/>
<div class="adr">
<span class="street-address">1115, route de l’école du Tremblay</span><br/>
<span class="postal-code">F-73290</span><br/>
<span class="locality">La Motte Servolex</span>
</div>
<a class="email" href="mailto:[email protected]">[email protected]</a>
</div>
<p>
All content under <a href="http://creativecommons.org/licenses/by-nc-sa/3.0/">
CC BY-NC-SA</a>.
</p>
</div>
</footer>
<script src="require.js"></script>
<script>
require.ready(function(){
var $ = function(i){ return document.getElementById(i) },
mapDiv = $('map'),
txt = $('load').innerHTML,
hash = null;
var showMap = function() {
mapDiv.style.display = 'block';
mapDiv.style.height = '120%';
require(['OpenLayers.js'], function(){
$('load').innerHTML = '';
$('closemap').className = 'btn';
var o = OpenLayers;
var map = new o.Map({div: 'map', theme: null, controls: []});
map.addLayer(new o.Layer.XYZ('OSM',
[
'http://a.tile.openstreetmap.org/${z}/${x}/${y}.png',
'http://b.tile.openstreetmap.org/${z}/${x}/${y}.png',
'http://c.tile.openstreetmap.org/${z}/${x}/${y}.png'
],
{
buffer: 0,
sphericalMercator: true,
transitionEffect: 'resize'
}
));
map.addControl(new o.Control.Navigation());
map.setCenter(new o.LonLat(653464,5720928), 13);
});
}
if (window.location.hash==='#map') {
showMap();
}
$('small').onclick = showMap;
$('closemap').onclick = function() {
$('load').innerHTML = txt;
$('closemap').className = '';
mapDiv.style.display = 'none';
window.location.hash = '#';
return false;
}
});
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-157281-3']);
_gaq.push(['_setDomainName', '.tonio.biz']);
_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>