-
Notifications
You must be signed in to change notification settings - Fork 7
/
index.html.bak
54 lines (53 loc) · 1.66 KB
/
index.html.bak
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
---
layout: default
---
<div class="bg-dark text-white">
<div class="container">
<div class="row py-5">
<div class="col-md-6 col-lg-5 my-auto text-center">
<img src="{{ "/assets/images/logo.svg" | prepend: site.baseurl }}" style="max-width:200px;">
<h1 class="display-4 font-weight-normal">{{ site.title }}</h1>
<p class="lead font-weight-normal">{{ site.description }}</p>
</div>
<div class="col-md-6 col-lg-7 my-auto">
<script async class="speakerdeck-embed" data-id="66c5108341ae43d3b02761c3e87fe8e6" data-ratio="1.77777777777778" src="//speakerdeck.com/assets/embed.js"></script>
</div>
</div>
</div>
</div>
<div class="container">
<div class="d-md-flex flex-md-equal py-3">
<div class="p-3 overflow-hidden w-100 my-auto">
<h1 class="display-4">
<a href="{{ '/blog' | prepend: site.baseurl }}">{{ site.name }} Blog</a>
</h1>
<div class="row">
{% for post in site.posts limit:2 %}
{% include single-post.html %}
{% endfor %}
</div>
</div>
</div>
</div>
</div>
<div class="position-relative overflow-hidden w-100 bg-dark text-white">
<div class="container">
<div class="row">
{% for project in site.data.projects %}
<div class="col-md-6 p-5 my-auto">
<h1 class="display-4 font-weight-normal">{{ project.name }}</h1>
<p class="lead font-weight-normal">
{{ project.rundown }}
</p>
{{ project.description | markdownify }}
{% for link in project.links %}
<a class="btn btn-{{ link.color }} mb-2" href="{{ link.link }}">
{% include icons/{{ link.icon }}.svg %}
<span class="hidden-xs-down" lang="en">{{ link.name }}</span>
</a>
{% endfor %}
</div>
{% endfor %}
</div>
</div>
</div>