-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·82 lines (74 loc) · 3.54 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
---
layout: default
title: redbee
---
<section class="featurette">
<div class="container">
<article class="row">
<div class="col-sm-4">
<h2>Valores</h2>
<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat.</p>
</div>
<div class="col-sm-4">
<h2>Objetivos</h2>
<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat.</p>
</div>
<div class="col-sm-4">
<h2>Visión</h2>
<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat.</p>
</div>
</article>
</div>
</section>
<section id="nosotros" class="featurette">
<div class="container">
<header>
<h1>Nosotros</h1>
<h2>Lorem ipsum</h2>
</header>
<section class="content row">
{% for person in site.pages %}{% if person.category == 'nosotros' %}
{{}}{% include person.html name=person.name linkedin=person.linkedin twitter=person.twitter email=person.email job=person.job description=person.description image=person.image %}
{% endif %}{% endfor %}
</section>
</div>
</section>
<section id="trabajos" class="featurette">
<div class="container">
<header>
<h1>Trabajos</h1>
<h2>Lorem ipsum</h2>
</header>
<section class="content row">
{% for work in site.pages %}{% if work.category == 'trabajos' %}
{{}}{% include work.html name=work.name description=work.description %}
{% endif %}{% endfor %}
</section>
</div>
</section>
<section id="tecnologias" class="featurette">
<div class="container">
<header>
<h1>Tecnologías</h1>
<h2>Lorem ipsum</h2>
</header>
<section class="content row">
{% for technology in site.pages %}{% if technology.category == 'tecnologias' %}
{{}}{% include technology.html name=technology.name description=technology.description %}
{% endif %}{% endfor %}
</section>
</div>
</section>
<section id="casos-de-exito" class="featurette">
<div class="container">
<header>
<h1>Casos de éxito</h1>
<h2>Lorem ipsum</h2>
</header>
<section class="content row">
{% for case in site.pages %}{% if case.category == 'casos' %}
{{}}{% include case.html name=case.name description=case.description %}
{% endif %}{% endfor %}
</section>
</div>
</section>