forked from a2ad/ModularHTML
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
77 lines (68 loc) · 2.48 KB
/
index.php
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
<!DOCTYPE html>
<head>
<meta charset="iso-8859-1">
<meta name="description" content="ModularHTML é um guia de estilo para código HTML semântico e padronizado">
<meta name="keywords" content="html, css, js, jQuery, web, modular, grid, framework, código, standards, semântico, estilo, desenvolvimento, front-end, design">
<meta name="author" content="A2Comunicação">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<title>ModularHTML</title>
<script type="text/javascript" src="js/libs/modernizr-2.0.6.min.js"></script>
<link rel="stylesheet" href="reset.css">
<link rel="stylesheet" href="global.css">
</head>
<body>
<?php include ('header.php'); ?>
<div id="intro">
<p>ModularHTML é um guia de estilo para código HTML semântico e padronizado</p>
<div class="links">
<ul>
<li><a class="acessar" title="Acessar" href="demo.php">Acessar</a></li>
<li><a class="download" title="Download" href="https://github.com/a2comunicacao/ModularHTML">Download</a></li>
</ul>
</div>
</div>
<?php include ('footer.php'); ?>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$('.links a:first-child').addClass('first');
});
</script>
<script src="/js/modulos/jquery.sharrre-1.2.0.min.js"></script>
<script>
$('#shareme').sharrre({
share: {
googlePlus: true,
facebook: true,
twitter: true
},
buttons: {
googlePlus: {size: 'small', annotation: 'none' },
facebook: {layout: 'button_count'},
twitter: {count: 'none' }
},
enableHover: false,
enableCounter: false,
enableTracking: true
});
</script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-23940018-5']);
_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>
<script type="text/javascript">
var uvOptions = {};
(function() {
var uv = document.createElement('script'); uv.type = 'text/javascript'; uv.async = true;
uv.src = ('https:' == document.location.protocol ? 'https://' : 'http://') + 'widget.uservoice.com/o4eOwYZ3zcPxhUGm9YH7w.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(uv, s);
})();
</script>
</body>
</html>