blob: 537dd311f984b548f9c2c7f466a652cacaf96bba (
plain)
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
|
{% extends 'base.html' %}
{% load typogrify_tags %}
{% block sitename %}
<head itemscope itemtype="http://schema.org/WebSite">
<title itemprop='name'></title>
<link rel="canonical" href="https://tk.net/">{%endblock%}
{%block extrahead%}
{%endblock%}
{%block bodyid%}id="home"{%endblock%}
{% block primary %}
<main>
<article class="content about">
<div class="big-top">
<h1>Hi, I'm Corrinne Gilbertson,</h1>
<p>a <a href="/what-is-structured-word-inquiry">literacy instructor</a>, <a href="">reading specialist</a>, & <a href="">linguist</a>.
<p>I provide <a href="">group classes</a> and <a href="">private tutoring</a> to help<br />
struggling readers and spellers build a meaningful<br /> understanding of the English language.</p>
<p>Interested? Email me: <a href="mailto:corrinne@cumuluslearning.net">corrinne@cumuluslearning.net</a></p>
</div>
<div class="sign-form">
<h2>Sign Up To Learn More</h2>
<p>Drop your email in the box to be notified about group classes</p>
<p><iframe target='_parent' style="border:none !important; background:white; width:100% !important; height: 300px;" title="embedded form for class notifications" src="{% url 'lttr:subscribe' 'classes' %}"></iframe></p>
<p>Head over to the <a href="/classes/">class list</a> for more info.</p>
</div>
<div class="post-article" style="margin-top: 7rem">
{{object.body_html|safe|smartypants|widont}}
</div>
</article>
</main>
{% endblock %}
|