-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
68 lines (51 loc) · 1.59 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
---
layout: default
permalink: /
description: "Digital studio providing full service: from conceptualization and research, design, front-end, back-end, data..."
# lang: en
---
<main>
<div class="container">
<section class="intro-text" x-data="{ currentEl: null }">
<div class="sidebar hypertext-sources">
{{ site.data.strings.home.intro-text }}
<small>
{{ site.data.strings.home.services }}
</small>
</div>
<div class="main" >
{% for item in site.data.home-items %}
<div class="hyper-card" id="{{ item.id }}" x-show="currentEl === '{{ item.id }}'" x-transition.opacity.duration.250ms >
{% assign text = item.text %}
{{ text | markdownify }}
<button class="close" @click="currentEl = null">x</button>
</div>
{% endfor %}
</div>
</section>
</div>
<section id="projects" class=" projects">
{% include projects.html %}
</section>
<!-- <section id="news" class="section news">
{% include news.html %}
</section> -->
<div class="container">
<div class="post-list">
{% assign posts = site.posts %}
{% for post in posts %}
<h2><a href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a></h2>
{% endfor %}
</div>
</div>
<div class="container-fluid">
<section id="clients" class="section clients">
{% include clients.html %}
</section>
</div>
<!-- <div class="container">
<section id="team" class="section team">
{% include team.html %}
</section>
</div> -->
</main>