-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
91 lines (84 loc) · 2.68 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Wilman's Site | About</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="generator" content="DocPad v6.64.0" />
<meta name="google-site-verification" content="vCp-7TKy_QyUVRYUui3uOQVe8EQ1Hxbx6RuAm6GFbw8" />
<style >html.wait {
cursor: wait !important;
opacity: 0;
transition: opacity 0.5s ease;
}</style><link rel="stylesheet" href="/styles/style.css" />
<link href='http://fonts.googleapis.com/css?family=Lato:400,700' rel='stylesheet' type='text/css'>
</head>
<body>
<div class="wrapper">
<aside class="aside">
<header class="header">
<a href="/"><img src="images/avatar.png" alt="Wazaraki" class="avatar">
<h1 class="aside-name">Wazaraki</h1></a>
<span class="description">Front-endô - The path of the Front-end</span>
</header>
<nav class="nav">
</nav>
</aside>
<div class="main">
<h1>About</h1>
<div class="photo"></div>
<p>Hi, I'm Wilfredo.</p>
<p>I was born in Caracas, Venezuela and currently I am living in Montevideo, Uruguay.</p>
<p>I ❤: Web development, design, retro videogames and japanese culture.</p>
<p>Tools: GNU/Linux, HTML5, CSS3, JS, Ruby and many others.
</p>
</div>
<footer>Made with ❤ in Uruguay</footer>
</div>
<script >(function(){
/* Did we just livereload? */
var log = !!(localStorage && console && console.log && true);
if ( log && localStorage.getItem('/docpad-livereload/reloaded') === 'yes' ) {
localStorage.removeItem('/docpad-livereload/reloaded');
console.log('LiveReload completed at', new Date())
}
/* Listen for the regenerated event and perform a reload of the page when the event occurs */
var listen = function(){
var primus = new Primus('/docpad-livereload');
primus.on('data', function(data){
if ( data && data.message ) {
if ( data.message === 'generateBefore' ) {
if ( log ) {
console.log('LiveReload started at', new Date());
}
if ( typeof document.getElementsByTagName !== 'undefined' ) {
document.getElementsByTagName('html')[0].className += ' wait';
}
}
else if ( data.message === 'generateAfter' ) {
if ( log ) {
localStorage.setItem('/docpad-livereload/reloaded', 'yes');
}
document.location.reload();
}
}
});
};
/* Inject socket into our page */
var inject = function(){
var t = document.createElement('script');
t.type = 'text/javascript';
t.async = 'async';
t.src = '/primus/primus.js';
t.onload = listen;
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(t, s);
};
if ( typeof Primus !== 'undefined' ) {
listen();
} else {
inject();
}
})();</script>
</body>
</html>