-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (54 loc) · 2.42 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
---
layout: default
title: INNKU
description: Nos asociamos con personas extraordinarias para crear y escalar negocios en línea.
keywords: Empresas en internet, Negocios en línea, portafolio de empresas, company builder.
id: Home
---
<div class="container-fluid">
<div class="row">
<section id="innku-projects" class="welcome-screen">
<div class="col-lg-offset-3 col-lg-6 col-md-offset-3 col-md-6 text-center title">
<h1>Nos asociamos con personas extraordinarias para crear y escalar negocios en línea</h1>
<div class="divider"></div>
<h2>Conoce nuestras empresas</h2>
<a href="#ver-mas" class="arrow bounce">
<img src="img/down-arrow-line.svg" alt="arrow">
</a>
</div>
</section>
</div>
<ul class="row innku-index-project-list">
{% for projects in site.data.projects %}
{% if forloop.first %} <div id="ver-mas"></div> {% endif %}
<li class="innku-index-project" id="{{ projects.id }}">
<div class="innku-index-project-title {{ projects.class }} innku-index-project-image__background">
<div class="col-md-offset-1 col-md-6 innku-index-project-title__padding-top">
<h2>{{ projects.title }}</h2>
</div>
</div>
<div class="innku-index-project-info">
<div class="col-md-offset-1 col-md-10">
<img src="{{ projects.logo }}" alt="{{ projects.name }}" />
{{ projects.description }}
{% if projects.btn-txt-1 %}
<a href="{{ projects.btn-url-1 }}" class="btn btn-innku" role="button" target="_blank">{{ projects.btn-txt-1 }}</a>
{% endif %}
<br class="visible-xs">
{% if projects.btn-txt-2 %}
<a href="{{ projects.btn-url-2 }}" class="btn btn-innku" role="button" target="_blank">{{ projects.btn-txt-2 }}</a>
{% endif %}
<br class="visible-xs">
{% if projects.btn-txt-3 %}
<a href="{{ projects.btn-url-3 }}" class="btn btn-innku" role="button" target="_blank">{{ projects.btn-txt-3 }}</a>
{% endif %}
<br class="visible-xs">
{% if projects.btn-txt-4 %}
<a href="{{ projects.btn-url-4 }}" class="btn btn-innku" role="button" target="_blank">{{ projects.btn-txt-4 }}</a>
{% endif %}
</div>
</div>
</li>
{% endfor %}
</ul>
</div>