-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathservices.html
More file actions
73 lines (71 loc) · 3.09 KB
/
Copy pathservices.html
File metadata and controls
73 lines (71 loc) · 3.09 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
---
title: pages.services_page.title
permalink: /servicios/
permalink_en: /services/
---
{% include head.html %}
<body>
{% include header.html %}
<main class="services">
<section class="introduction">
<div class="text">
<h1>{% translate pages.services_page.header %}</h1>
{% translate pages.services_page.text %}
</div>
<div class="image">
<img src="/assets/home/mid_picture.png" alt="">
</div>
</section>
<section class="services-list">
{% capture name %}{{ site.translations[site.lang].pages.services_page.services.technical_coaching.name }}{% endcapture %}
{% capture description %}{{ site.translations[site.lang].pages.services_page.services.technical_coaching.description }}{% endcapture %}
{% capture link %}{{ site.translations[site.lang].pages.services_page.services.technical_coaching.link }}{% endcapture %}
{%
include components/service.html
name=name
description=description
link=link
logo='/assets/services/logos/technical-coaching.svg'
price='Consultar'
%}
{% capture name %}{{ site.translations[site.lang].pages.services_page.services.team_augmentation.name }}{% endcapture %}
{% capture description %}{{ site.translations[site.lang].pages.services_page.services.team_augmentation.description }}{% endcapture %}
{% capture link %}{{ site.translations[site.lang].pages.services_page.services.team_augmentation.link }}{% endcapture %}
{%
include components/service.html
name=name
description=description
link=link
logo='/assets/services/logos/team-augmentation-service.svg'
price='Consultar'
%}
{% capture name %}{{ site.translations[site.lang].pages.services_page.services.consultancy.name }}{% endcapture %}
{% capture description %}{{ site.translations[site.lang].pages.services_page.services.consultancy.description }}{% endcapture %}
{% capture link %}{{ site.translations[site.lang].pages.services_page.services.consultancy.link }}{% endcapture %}
{%
include components/service.html
name=name
description=description
link=link
logo='/assets/services/logos/consultancy-service.svg'
price='Consultar'
%}
<div class="closing-hexagon">
<span></span>
</div>
</section>
{% capture title %}{{ site.translations[site.lang].pages.services_page.contact.title }}{% endcapture %}
{% capture text %}{{ site.translations[site.lang].pages.services_page.contact.text }}{% endcapture %}
{% capture placeholder %}{{ site.translations[site.lang].pages.services_page.contact.placeholder }}{% endcapture %}
{%
include components/call-to-action.html
title=title
text=text
defaultMessage='Sent from the Services page, no message specified'
messagePlaceHolder=placeholder
origin='Listado de servicios'
%}
</main>
{% include footer.html %}
</body>
</html>