-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
59 lines (52 loc) · 1.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
---
layout: default
overtitle: Solutions design and application development
title: Freelance web developer & architect
description: Elegantly designed and developed systems, and service with a smile
no_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__2-col">
<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>
{% include section__about.html %}
<section class="recent-posts">
<div class="wrap grid">
<header class="recent-posts__header">
<h4>Recent blog posts</h4>
<a
href="{{ '/blog' | relative_url }}"
class="action button--text--accent --right"
>All Posts</a
>
</header>
<div class="recent-posts__list grid">
{% for post in site.posts limit: 3 %} {% include
component__post-preview.html %} {% endfor %}
</div>
<a
href="{{ '/blog' | relative_url }}"
class="action-bottom button--text--accent --right"
>All Posts</a
>
</div>
</section>
</div>