-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
77 lines (61 loc) · 3.2 KB
/
index.html
File metadata and controls
77 lines (61 loc) · 3.2 KB
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
---
layout: default
title: HackLab Sucre
---
<div class="row">
<div class="col-xs-12">
<p class="center"><strong>HackLab Sucre</strong> somos un colectivo de <strong>experimentación</strong> <strong>tecnológica</strong>, <strong>social</strong> y <strong>creativa</strong>.</p><br>
</div>
</div>
<div class="row">
<div class="col-md-4">
<h3>Actividades</h3>
<p>Estamos abiertos a colaborar con entidades que compartan las mismas inquietudes e invitamos a todas las personas entusiastas y activas a unirse a HackLab, aportando proyectos, recursos, información y formación.</p>
<h5><strong>Próximas actividades</strong></h5>
{% assign curDate = site.time | date: "%Y-%m-%d" %}
<ul>
{% for post in site.posts reversed %}
{% assign date = post.date | date: "%Y-%m-%d" %}
{% if date >= curDate %}
<li><span>{{ post.date | date_to_string }}</span> » <a href="{{ post.url }}">{{ post.title }}</a></li>
{% endif %}
{% endfor %}
</ul>
<p><a href="{{ site.url }}/actividades" class="button">Ver las actividades</a></p>
</div>
<div class="col-md-4">
<h3>Hacklab Sucre</h3>
<p>El HackLab se creó con el fin de generar un intercambio de experiencias entre usuarios y desarrolladores en torno al software libre y sus especialidades, asimismo buscan compartir sus conocimientos con gente que quiera conocer más sobre el tema. Vienen impulsando “Sucre Libre”, iniciativa de fomento a la difusión de software libre y organizaron algunas versiones del Flisol desde el grupo “La Tojpa”.</p>
<p><a href="{{ site.url }}/gruposdetrabajo" class="button" title="Grupos de trabajo">Grupos de trabajo</a></p>
</div>
<div class="col-md-4">
<h3>Participa</h3>
<p>El hacklab se hace con la participación de la gente. Todas las personas entusiastas y con inquietudes estáis invitadas a aportar proyectos, recursos, información y formación.</p>
<p>Encuentra en el foro un grupo de trabajo que te interese o créalo. Estamos deseando oir tus propuestas.</p>
<p>
<h5><strong>Últimos Mensajes</strong></h5>
<div id="ultimosmensajes">
</div><p>
<p><a href="http://foro.hacklabsucre.org/" class="button" title="Entrar al foro">Entrar al foro</a></p>
</div>
</div>
<script type="text/javascript">
/*var discourseUrl = "https://foro.hacklabalmeria.net/"
function readForoRss(e){
$.ajax({url:'http://json2jsonp.com/?url='+discourseUrl+'latest.json',
dataType: 'jsonp',
success:function(data){
data = data.topic_list.topics.slice(0, 10);
var elemento='<ul>'
$.each(data,function(index,element){
elemento += '<li><a target=_blank href='+discourseUrl + 't/'+ element.slug +'/'+element.id+'>'+element.title+'</a> - '+element.last_poster_username+'</li>';
});
elemento+='</ul>';
$(e).html(elemento);
}});
}
document.addEventListener('DOMContentLoaded', function(event) {
setInterval(readForoRss('#ultimosmensajes'),30*1000);
});
*/
</script>