-
Notifications
You must be signed in to change notification settings - Fork 13
/
index.html
33 lines (32 loc) · 1022 Bytes
/
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
---
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>