forked from deliverybot/deliverybot.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblog.html
More file actions
33 lines (30 loc) · 898 Bytes
/
Copy pathblog.html
File metadata and controls
33 lines (30 loc) · 898 Bytes
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
title: Deliverybot Blog
light: true
---
<main class="content marketing">
<div class="text-center mt-3">
<h1 class="f1-light h00-mktg">Deliverybot Blog</h1>
<p>
Deploying, Kubernetes, GitHub and some other technical things. Liked
a post? <a href="https://twitter.com/deliverybotdev">Tweet us!</a>
</p>
</div>
<div class="mt-8">
{% for post in site.posts %}
<div class="mt-5 p-4 border-bottom">
<div class="flex-auto">
<h2 class="f1-light"><a href="{{post.url}}" class="text-gray-dark">{{post.title}}</a></h2>
<p class="text-small text-gray-light">{{post.date|date_to_string}}</p>
<p class="text-gray-light mt-3">
{{post.description}}
</p>
<p class="text-right">
<a href="{{post.url}}">Read more ></a>
</p>
</div>
</div>
{% endfor %}
</div>
</main>