-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
104 lines (101 loc) · 4.36 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
92
93
94
95
96
97
98
99
100
101
102
103
104
<!DOCTYPE html>
<!--[if lt IE 7]><html lang="es" class="lt-ie10 lt-ie9 lt-ie8 lt-ie7"><![endif]-->
<!--[if IE 7]><html lang="es" class="lt-ie10 lt-ie9 lt-ie8"><![endif]-->
<!--[if IE 8]><html lang="es" class="lt-ie10 lt-ie9"> <![endif]-->
<!--[if IE 9]><html lang="es" class="lt-ie10"> <![endif]-->
<!--[if gt IE 9]><!--> <html lang="es"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Sitio externo del Gobierno de la Ciudad de Buenos Aires.">
<meta name="author" content="Gobierno de la Ciudad de Buenos Aires">
<title>ptf-cmd Club de Programación</title>
<link rel="shortcut icon" href="css/favicon.ico">
<link rel="apple-touch-icon-precomposed" href="css/favicon-mobile.png">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/bastrap.css">
<!-- ESTILOS EXTRA -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="jumbotron jumbotron-misc jumbotron-main" style="background-image: url(css/cmd.jpeg);">
<!-- NAVEGACIÓN PRINCIPAL -->
<nav class="navbar navbar-default" role="navigation">
<div class="container">
<div class="row">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#main-nav">
<span class="sr-only">Cambiar navegación</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#" title="Gobierno Electrónico">Programá tu Futuro - Club CMD</a>
</div>
<div class="collapse navbar-collapse" id="main-nav">
<ul class="nav navbar-nav navbar-right">
<li><a href="base.html">Inicio</a></li>
<li class="active"><a href="base_landing.html">Landing</a></li>
<li><a href="base_panel.html">Panel</a></li>
</ul>
</div>
</div>
</div>
</nav>
<!-- FIN DE NAVEGACIÓN PRINCIPAL -->
<div class="container">
<h1>Programá tu futuro</h1>
<p>Descubrí los talleres y cursos a cargo de desarrolladores y la posibilidad de realizar cursos online gratuitos.</p>
<p><a class="btn btn-primary btn-xl" role="button" href="#">Comenzá un curso</a></p>
</div>
</div>
<!-- CONTENIDO -->
<main class="main-container" role="main">
<section class="big-heading">
<div class="container">
<div class="col-md-8 col-md-offset-2 text-center">
<h1>¿Querés aprender a programar?</h1>
<p>Sumate a nuestro club de programación.</p>
</div>
</div>
</section>
<section>
<div class="container">
<div class="row row-shortcut">
<a class="col-md-4 col-sm-6 shortcut" href="#">
<span class="bg-primary-lt">
<span class="glyphicon glyphicon-book"></span>
</span>
<h3>Tutoriales</h3>
<p>Podes ver nuestras guías para desarrollar tu proyecto.</p>
</a>
<a class="col-md-4 col-sm-6 shortcut" href="/herramientas.html">
<span class="bg-primary-lt">
<span class="glyphicon glyphicon-wrench"></span>
</span>
<h3>Herramientas</h3>
<p>Herramientas usadas por los aprendices del CMD</p>
</a>
<a class="col-md-4 col-sm-6 shortcut" href="./ejemplos/landing-ejemplos.html">
<span class="bg-primary-lt">
<span class="glyphicon glyphicon-book"></span>
</span>
<h3>Ejemplos</h3>
<p>Aplicaciones corriendo en vivo desarrolladas en el club.</p>
</a>
</div>
<br>
</div>
</section>
<hr/>
</main>
<!-- FIN DE CONTENIDO -->
<script src="css/jquery.min.js"></script>
<script src="css/bootstrap.min.js"></script>
<!-- JAVASCRIPT EXTRA -->
</body>
</html>