forked from mattmakai/fullstackpython.com
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathemail.html
More file actions
27 lines (24 loc) · 1.1 KB
/
email.html
File metadata and controls
27 lines (24 loc) · 1.1 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
{% extends "base.html" %}
{% block title %}Email sign up - {% endblock %}
{% block css %}
{% include "css/full.html" %}
{% endblock %}
{% block content %}
<div class="row">
<div class="col-md-8">
<h1>Email Newsletter</h1>
{% include "email-for-book.html" %}
<h2>Previous issues</h2>
<p>Past email issues
<a href="https://fullstackpython.ongoodbits.com/">can be viewed in the archive.</a>
</p>
<ul>
<li><a href="https://fullstackpython.ongoodbits.com/2016/08/24/less-than-24-hours-to-back-python-for-entrepreneurs">Less than 24 hours to back Python for Entrepreneurs</a> - Aug 24, 2016</li>
<li><a href="https://fullstackpython.ongoodbits.com/2016/07/26/python-for-entrepreneurs-kickstarter-launch">Python for Entrepreneurs Launch!</a> - Jul 26, 2016</li>
<li><a href="https://fullstackpython.ongoodbits.com/2016/03/21/21-new-python-django-flask-tutorials">21 new Python+Django & Flask tutorials</a> - Mar 21, 2016</li>
</div>
<div class="col-md-offset-1 col-md-3" id="sidebar">
{% include "sidebar.html" %}
</div>
</div>
{% endblock %}