This repository has been archived by the owner on May 21, 2024. It is now read-only.
forked from alexishevia/trisfera.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
comunidad.html
159 lines (120 loc) · 4.47 KB
/
comunidad.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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
<!doctype html>
<html lang="es">
<head>
<meta charset="utf-8">
<meta name="description" content="Trisfera es una comunidad panameña que promueve el desarrollo web y móvil mediante herramientas libres.">
<meta name="keywords" content="Trisfera, web, html, css, php, ruby, js, android, libre">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/bootstrap.css">
<!--Es importante que main.css esté en medio de los dos de bootstrap
para que el navbar se vea correctamente-->
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/bootstrap-responsive.css">
<!-- Le HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<title>Trisfera</title>
</head>
<body>
<div class="navbar navbar-fixed-top">
<div class="navbar-inner">
<div class="container-fluid">
<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<i class="icon-chevron-down icon-white"></i>
</a>
<div class="nav-collapse">
<ul class="nav">
<li>
<a href="index.html"><i class="icon-home icon-white"></i> Inicio</a>
</li>
<li>
<a href="proyectos.html"> Colabora</a>
</li>
<li>
<a href="guias.html"> Aprende</a>
</li>
<li class="active">
<a href="comunidad.html"> Comunícate</a>
</li>
<li>
<a href="acercade.html"><i class="icon-info-sign icon-white"></i> Acerca De</a>
</li>
<li>
<a href="contacto.html"><i class="icon-question-sign icon-white"></i> Contacto</a>
</li>
</ul>
</div>
<img class="trisfera-icon" src="img/trisfera-icon.png" alt="trisfera-icon">
</div><!--Cierra container-fluid-->
</div> <!--Cierra navbar-inner-->
</div><!--Cierra navbar-->
<div class="container-fluid">
<header>
<a href="index.html">
<img class="banner" src="img/banner.png" alt="Trisfera">
</a>
<p class="banner-description">Comunidad panameña que promueve el desarrollo web
y móvil mediante herramientas libres</p>
</header>
<div class="row-fluid">
<div id="section-proyectos" class="section-v span2">
<a href="proyectos.html">
<div class="section-v-title">
<img src="img/section-proyectos_title.png">
</div>
<div class="section-v-content">
</div>
</a>
</div>
<div id="section-guias" class="section-v span2">
<a href="guias.html">
<div class="section-v-title">
<img src="img/section-guias_title_small.png">
</div>
<img class="pet-bottom" src="img/cat-reading.png" alt="Trisfera">
<div class="section-v-content" style="min-height:231px">
</div>
</a>
</div>
<div id="section-comunidad" class="section-v span8">
<div class="section-v-title">
<img src="img/section-comunidad_title.png">
</div>
<div class="section-v-content">
<ul>
<a href="http://www.facebook.com/groups/trisfera/">
<li>
Facebook
</li>
</a>
<a href="http://twitter.com/trisfera">
<li>
Twitter
</li>
</a>
<a href="http://www.youtube.com/user/trisfera">
<li>
YouTube
</li>
</a>
</ul>
</div>
</div>
</div>
<div class="row-fluid">
<div class="span2" style="background:#AFDDE9"></div>
<div class="span2" style="background:#333"></div>
<div class="span8" style="background:#1C5C94"></div>
</div>
</div>
<!--<script type="text/javascript" src="http://bloggerblogwidgets.googlecode.com/files/way2blogging.org-tripleflap.js"></script>
<script type="text/javascript">
var twitterAccount = "trisfera";
tripleflapInit();
</script>-->
<script src="js/jquery.js"></script>
<script src="js/bootstrap-transition.js"></script>
<script src="js/bootstrap-collapse.js"></script>
</body>
</html>