-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathabout.html
78 lines (62 loc) · 3.1 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Mapa do Acordeon Diatônico</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="A reference map for diatonic accordion">
<meta name="author" content="Leandro Nunes">
<!-- Le styles -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<style>
body {
padding-top: 60px; /* 60px to make the container go all the way to the bottom of the topbar */
}
</style>
<!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="../assets/js/html5shiv.js"></script>
<![endif]-->
</head>
<body>
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<a class="brand" href="index.html"><img style="padding:0;" src="img/mini.png"> Mapa do Acordeon Diatônico</a>
<div class="nav-collapse collapse">
<ul class="nav">
<li><a href="about.html">Sobre</a></li>
</ul>
</div><!--/.nav-collapse -->
</div>
</div>
</div>
<div class="container">
<h3>Sobre</h3>
<p>Este projeto foi criado com o intuito de ser uma ferramenta de apoio no aprendizado da arte de tocar acordeon diatônico.</p>
<p>O Mapa do Acordeon Diatônico é um projeto de código aberto, implementado por <a href="http://leandron.wordpress.com"><strong>Leandro Nunes</strong></a>. O código-fonte está disponível no <a href="https://github.com/leandron/accordion-map">GitHub</a>.</p>
<h3>Agradecimentos</h3>
<table class="table table-bordered">
<tr><td><a href="http://www.youtube.com/watch?v=6_moobqpyyY"><strong>Prof. Cezar Ferreira</strong></a>, que forneceu o material necessário para criação dos layouts e mapeamento dos acordes.</td></tr>
<tr><td><strong>Flávio Vani</strong>, que implementou uma versão inicial do suporte a afinação Club e das escalas.</td></tr>
</table>
<h3>Participe!</h3>
<p>Sua sugestão é sempre bem vinda. Entre em contato pelo e-mail leandron85 [arroba] gmail [ponto] com.</p>
</div> <!-- /container -->
<footer style="text-align:center; padding-top:30px">
<p>Esta obra é distribuida sob uma Licença <a rel="license" href="http://creativecommons.org/licenses/by/3.0/br/deed.pt_BR">Creative Commons Atribuição 3.0 Brasil</a>.</p>
</footer>
<script src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/bootstrap-dropdown.js"></script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-4797390-3']);
_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>