-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathindex.html
More file actions
79 lines (67 loc) · 1.98 KB
/
index.html
File metadata and controls
79 lines (67 loc) · 1.98 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{% extends "templates/base.html" %}
{% block content_block %}
<div class="row">
<div class="column">
<div class="banner-image-container">
<img src="https://www.jpl.nasa.gov/spaceimages/images/largesize/PIA13111_hires.jpg" />
<div class="banner-text">
<h1>cosmic_python</h1>
<h2>Simple patterns for building complex applications</h2>
</div>
</div>
</div>
</div>
<p>
<em class="align-right">
(Because "Cosmos" is the
<a href="https://www.goodreads.com/quotes/604655-cosmos-is-a-greek-word-for-the-order-of-the">opposite of Chaos</a>,
you see)
</em>
</p>
<h1 id="buy_the_book">The Book</h1>
<p>
There are lots of ways you can read the book. Some of them even involve us,
the authors, receiving a small amount of money!
</p>
<ul>
<li>
Read in online on O'Reilly Learning (aka Safari)
<a href="https://learning.oreilly.com/library/view/architecture-patterns-with/9781492052197/">learning.oreilly.com</a>
</li>
<li>
Preorder print books on
<a href="https://amzn.to/37pR2DH">Amazon.com</a>
or
<a href="https://amzn.to/38CmFu1">Amazon.co.uk</a>.
</li>
<li>
Buy a DRM-free ebook at
<a href="https://www.ebooks.com/en-us/book/209971850/architecture-patterns-with-python/harry-percival/">ebooks.com</a>
</li>
<li>
Or
<a href="book/preface.html">read it for free on this site</a> (license: CC-By-NC-ND).
</li>
</ul>
<h1>Blog</h1>
<h3>Recent posts</h3>
<ul>
{% for post in posts %}
{% if post.date.year != 2017 %}
<li>
<a href="{{ post.url }}">{{ post.date }} {{ post.title }}</a>
</li>
{% endif %}
{% endfor %}
</ul>
<h3>Classic 2017 Episodes on Ports & Adapters, by Bob</h3>
<ul>
{% for post in posts %}
{% if post.date.year == 2017 %}
<li>
<a href="{{ post.url }}">{{ post.date }} {{ post.title }}</a>
</li>
{% endif %}
{% endfor %}
</ul>
{% endblock %}