-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
61 lines (49 loc) · 2.29 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
---
layout: default
overtitle: WooCommerce & WordPress
title: Plugins, themes and webdesign services
description: We create efficient products and custom solutions that drive results to your online store.
featured_image: /images/social.jpg
---
<div class="page-home">
{% if site.data.settings.hero_settings.background_image %}
<img src="{{ site.data.settings.hero_settings.background_image | relative_url }}" class="hero__background" draggable="false">
{% endif %}
<section class="hero">
<div class="wrap grid">
<div class="title">
<p class="subtitle">{{ page.overtitle }}</p>
<h1>{{ page.title }}</h1>
</div>
<p class="intro subtitle--light">
{{ page.description }}
<a href="#" class="hero__cta button--fill contact-trigger js-contact">Get In Touch</a>
</p>
</div>
</section>
<section class="listing">
<h2 class="screen-reader-text">Projects</h2>
<div class="wrap">
{% for project in site.projects reversed %}
{% if project.accent_color %}{% capture accent_color %}{{ project.accent_color }}{% endcapture %}{% endif %}
<article class="project__preview">
<h3 class="project__title"><a href="{{ project.url | relative_url }}" style="--accent: {{ accent_color }}">{{ project.title }}</a></h3>
<div class="project__images owl-carousel" style="--accent: {{ accent_color }}">
{% for image in project.gallery_images %}
{% if project.action_url %}{% else %}<a href="{{ project.url | relative_url }}">{% endif %}<img src="{{ '/images/projects/' | relative_url}}{{ image }}" alt="" class="project__image">{% if project.action_url %}{% else %}</a>{% endif %}
{% endfor %}
</div>
<div class="project__content grid" style="border-color: {{ accent_color }}">
<p class="project__subtitle subtitle--light">{{ project.subtitle }}</p>
<p class="project__description --small">
{{ project.description }}
<a href="{% if project.action_url %}{{ project.action_url }}{% else %}{{ project.url | relative_url }}{% endif %}" class="project__link button--text --right"
style="color: {{ accent_color }}; --color-var: {{ accent_color }}">{% if project.action_label %}{{ project.action_label }}{% else %}View case study{% endif %}</a>
</p>
</div>
</article>
{% endfor %}
</div>
</section>
{% include section__about.html %}
</div>