-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·70 lines (66 loc) · 2.51 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
---
layout: default
---
<div class="home">
<div class="col col-12" style="max-h">
<div class="col col-3">
<div class="block glass">
<img src="/assets/logo.jpg" class="responsive-img" alt="Logo">
</div>
</div>
<div class="col col-9">
<div class="block glass">
<div class="block-body">
<h2>Living Company</h2>
<p class="grey-text">Somos una pequeña empresa ubicada en Nicaragua, comprometidos con brindar a la comunidad software
de alta calidad accesible para todos</p>
</div>
</div>
</div>
</div>
<div class="col col-12">
{% for port in site.data.portfolio %}
<div class="col col-{{port.width}}">
<div class="block" style="background-image:url(assets/{{port.img}});
background-size: cover;
background-repeat: no-repeat;
background-position: center center;
">
<div class="block-body height-{{port.height}}">
<h2 class="align-bottom-right">
{{ port.title }}
</h2>
</div>
</div>
</div>
{% endfor %}
</div>
<div class="col col-9">
{% for post in site.posts %}
<div class="col col-{{post.width}}">
<div class="block" style="background-image:url(assets/{{post.img}});
background-size: cover;
background-repeat: no-repeat;
background-position: center center;">
<div class="block-body height-{{post.height}}">
<span class="post-meta white-text">{{ post.date | date: "%b %-d, %Y" }}</span>
<h2>
<a class="post-link white-text" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
</h2>
</div>
</div>
</div>
{% endfor %}
</div>
<div class="col col-3">
<div class="block glass">
<div class="block-body">
<h3 class="margin-bot">Especialidades</h3>
{% for skill in site.data.skills %}
<span class="post-meta white-text">{{skill.descr}}</span>
<div class="progress margin-bot"><div class="progress-{{skill.xp}}"></div></div>
{% endfor %}
</div>
</div>
</div>
</div>