-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·76 lines (59 loc) · 2.67 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
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js ie-6 lt-ie7 lt-ie8 lt-ie9" lang="pt"> <![endif]-->
<!--[if IE 7]> <html class="no-js ie-7 lt-ie8 lt-ie9" lang="pt"> <![endif]-->
<!--[if IE 8]> <html class="no-js ie-8 lt-ie9" lang="pt"> <![endif]-->
<!--[if gt IE 8]><!--> <html lang="pt"> <!--<![endif]-->
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<title></title>
<meta name="description" content="" />
<script> document.getElementsByTagName('html')[0].className += 'js' </script>
<!-- 114x114 for iPhone+retina+iPad, link necessário para Android -->
<link rel="apple-touch-icon-precomposed" href="apple-touch-icon-precomposed.png" />
<link rel="stylesheet" href="styles/main.css" />
<!-- Windows without Cakefile
<link rel="stylesheet" href="_less/main.less" />
<script src="scripts/vendor/less-1.2.1.min.js"></script>
-->
<!-- Substituir por custom build: http://www.modernizr.com/download/ -->
<script src="scripts/vendor/modernizr-2.5.3.min.js"></script>
<script src="scripts/vendor/respond.min.js"></script>
</head>
<body>
<div id="skiplinks">
<a href="#nav">Pular para a navegação</a>
<a href="#content">Pular para o conteúdo</a>
</div>
<div id="header">
<div role="banner">
<h1 class="logo">Título do site</h1>
</div>
<ul id="nav" role="navigation">
<li><a href="#">Home</a></li>
</ul>
</div>
<div id="sidebar" role="complementary">
</div>
<div id="content" role="main">
</div>
<div id="footer" role="contentinfo">
</div>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script> window.jQuery || document.write('<script src="scripts/vendor/jquery-1.7.1.min.js"><\/script>') </script>
<script src="scripts/plugins.js"></script>
<script src="scripts/base.js"></script>
<!-- Prompt IE 6 users to install Chrome Frame. -->
<!--[if lt IE 7 ]>
<script src="//ajax.googleapis.com/ajax/libs/chrome-frame/1.0.3/CFInstall.min.js"></script>
<script>window.attachEvent('onload',function(){CFInstall.check({mode:'overlay'})})</script>
<![endif]-->
<!-- Google Analytics assíncrono. Troque UA-XXXXX-X pelo ID do site. -->
<script>
var _gaq=[['_setAccount','UA-XXXXX-X'],['_trackPageview']];
(function(d,t){var g=d.createElement(t),s=d.getElementsByTagName(t)[0];
g.src=('https:'==location.protocol?'//ssl':'//www')+'.google-analytics.com/ga.js';
s.parentNode.insertBefore(g,s)}(document,'script'));
</script>
</body>
</html>