-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbytes_index.html
50 lines (47 loc) · 1.81 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{% 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="Bytes">
<meta name="twitter:description" content="Observations in 256 words or fewer">
{% 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">Bytes</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 %}
<h3><a href="/bytes/{{ article.slug }}.html">{{ article.title|safe }}</a></h3>
<div class="article-summary">
{{ article.content|safe }}
</div>
<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 %}