-
Notifications
You must be signed in to change notification settings - Fork 0
/
authors.html
85 lines (74 loc) · 3.5 KB
/
authors.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
<!DOCTYPE html>
<html lang="pt">
<link rel="shortcut icon" href="favicon.ico"/>
<head>
<title>eu, Paulo - Authors</title>
<!-- Fonts -->
<link href='http://fonts.googleapis.com/css?family=Inconsolata' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=The+Girl+Next+Door' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Marcellus' rel='stylesheet' type='text/css'>
<!-- CSS -->
<link rel="stylesheet" href="./theme/css/main.css" type="text/css" />
<link rel="stylesheet" href="./theme/css/pygments.css" type="text/css" />
<link rel="stylesheet" href="./theme/css/font-awesome.css" type="text/css" />
<meta charset="utf-8" />
<!-- Javascript-->
<script async src="http://ajax.googleapis.com/ajax/libs/jquery/1.8/jquery.min.js"></script>
<script async type="text/javascript">
$(function() {
function invisibleMenu() {
var now = 0;
var pixels = 300;
var opacity = -1;
var move = function() {
now = $(window).scrollTop();
if (now > pixels && opacity !== 0)
opacity = 0;
else if (now < pixels){
// Depends on the position not if scrolls down or up
opacity = (1 - now/pixels);
}
$("div.navigation").css({"opacity": opacity});
}
$(window).scroll(move);
move();
}
invisibleMenu();
});
</script>
</head>
<body id="index" class="home">
<div class="navigation">
<ol class="nav">
<li class="current"><a href=".">Blog</a> </li>
<li><a href="./archives.html">Arquivo</a></li>
<li><a href="./tags.html">Tags</a> </li>
<!-- <li><a href="./">RSS</a> </li> -->
<li><a href="./pages/sobre-mim.html">Sobre</a> </li>
</ol>
</div>
<header id="banner" class="body">
<div style="line-height: 1" class="banner"><a href=".">eu, Paulo <p></p> <strong>Programação, estatística e vida...</strong></a></div>
<!-- <div class="banner"> <strong>Programação, estatística e vida...</strong></div> -->
</header><!-- /#banner -->
<!-- <nav id="menu"><ul>
<li><a href="./category/artigos.html">Artigos</a></li>
</ul></nav><!-- /#menu -->
<div class="box">
<h1>Authors on eu, Paulo</h1>
<ul> <li><a href="./author/paulo-miranda-moreira.html">Paulo Miranda Moreira</a> (7)</li>
</ul>
<hr/>
<footer id="contentinfo" class="footer">
<div class="social">
<a href="https://twitter.com/paulomiramor"><i class="icon-twitter"></i> </a>
<a href="https://br.linkedin.com/pub/paulo-moreira/9a/868/81"><i class="icon-linkedin"></i> </a>
<a href="https://github.com/EuPaulo"><i class="icon-github"></i> </a>
<a href="http://stackoverflow.com/users/1930564/paulo-miramor?tab=profile"><i class="icon-stackoverflow"></i> </a>
<a href="mailto:paulomiramor@gmail.com"><i class="icon-envelope"></i> </a>
</div>
</footer><!-- /#contentinfo -->
</div>
<!--Add statistycs-->
</body>
</html>