-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog_index.html
57 lines (54 loc) · 2.11 KB
/
blog_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
{% extends "base.html" %}
{% block title %}Essays | philipkiely.com{% endblock %}
{% block twitter %}
<meta name="twitter:image" content="https://philipkiely.com/assets/img/philip_thumbnail_general.png" />
<meta name="twitter:title" content="Archive">
<meta name="twitter:description" content="A bunch of stuff, all in one place. How convenient!">
{% endblock %}
{% block content %}
<div class="container">
<div class="row">
<div class="col-12 col-md-8 offset-md-2">
<br />
<h1><code class="post-info">{{ SITENAME }}</code></h1>
<hr />
<form action="https://gumroad.com/follow_from_embed_form" class="form gumroad-follow-form-embed input-group"
method="post"> <input name="seller_id" type="hidden" value="8780358448474"> <input class="form-control"
name="email" placeholder="you@example.com" type="email"> <button class="btn btn-primary"
data-custom-highlight-color="" type="submit">Subscribe</button>
</form>
<hr />
{% for article in articles %}
{% if article.blog == "notes" %}
<h5><a href="/{{ article.blog }}/{{ article.slug }}.html">{{ article.title|safe }}</a> | <code
class="post-info">{{ article.date.strftime('%B %Y') }}</code></h5>
{% else %}
<h3><a href="/{{ article.blog }}/{{ article.slug }}.html">{{ article.title|safe }}</a></h3>
<code
class="post-info">| First Posted <b>{{ article.date.strftime('%d %B %Y') }}</b> | Last Edited <b>{{ article.modified.strftime('%d %B %Y') }}</b> |{% for author in article.authors %} {{ author }} |{% endfor %}</code>
<div class="article-summary">
{{ article.summary|safe }}
</div>
{% endif %}
<hr />
{% else %}
No posts yet!
{% endfor %}
</div>
<div class="col-md-2">
<br>
<br />
<div class="img-fluid">
<a class="book-container" href="https://wfsd.com?source=sidebar">
<div class="book">
<img alt="Writing for Software Developers" src="/assets/img/wfsd.jpg" />
</div>
</a>
</div>
<br>
<br />
</div>
</div>
</div>
</div>
{% endblock %}