-
Notifications
You must be signed in to change notification settings - Fork 0
/
blog.html
25 lines (25 loc) · 851 Bytes
/
blog.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
---
---
<!DOCTYPE html>
<html>
{% include_relative _templates/header.html %}
<title>ambiguous.name Blog Posts</title>
<body>
<div class="content">
<a href="/" style="text-decoration: none;"><h1>Blog Posts</h1></a>
<a href="/feed.xml"><h2>RSS Feed</h2></a>
<h3>If you like my stuff, email me! <code>ambiguousname (at) this website's URL/domain name</code></h3>
{% for post in site.posts %}
<div class="jumbotron" style="background-image: url({{ post.image }}); {% if post.scale %} background-size: {{ post.scale }}; {% endif %}">
<div class="jumbotron-content">
<a href="{{ post.url }}" style="text-decoration: none;"><h1>
{{ post.title }}
</h1></a>
<div class="post-excerpt">{{ post.excerpt }}</div>
<a href="{{ post.url }}">Read More</a>
</div>
</div>
{% endfor %}
</div>
</body>
</html>