-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
81 lines (81 loc) · 3.47 KB
/
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
---
layout: home
---
<div class="container">
<div class='inner'>
<div class='content'>
<h1>Alice Bartlett</h1>
<div class='section'>
<p>I work at the Financial Times as the Tech Director of the Customer Products team. I used to work at <a href="http://gov.uk">The Government Digital Service (GDS)</a>, <a href="http://berglondon.com">BERG</a>, <a href='http://labs.ft.com'>FT Labs</a> (formerly <a href='http://assanka.net'>Assanka</a>) and IBM. I'm also the founder of the lady-bung empowerment franchise, <a href='http://tampon.club'>tampon.club</a>.</p>
<p>You can read a bit more about me <a href="/about">over here</a>.
</div>
<div class='section'>
<h2 class='straplined'>Writing</h2>
<p>I write weeknotes, they are where I put things I would have put on Twitter before I stopped writing things on Twitter. You can see my <a href="/blog/weaknotes">Weaknotes archive here</a>.</p>
<p>I also sew my own clothes. <a href="/blog/sewing">My sewing blog is here</a>.</p>
<p>If you want to see a list of every post I've ever written <a href="/blog/">it's all here</a>.
<h3>Recent posts</h3>
<ul class="date-list">
{% for post in site.posts limit: 10 %}
<li>
<div class='post-date'>
<time>{{ post.date | date: "%-d %b %Y" }}</time>
</div>
<div class="post-metadata">
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
</div>
</li>
{% endfor %}
</ul>
<a href="/blog">All posts</a> / <a href="/blog/weaknotes">Weaknotes</a> / <a href="/blog/sewing">Sewing</a> / <a href="/blog/everything-else">Everything Else</a>
</div>
<div class='section'>
<h2>Talks</h2>
<ul class='date-list'>
{% for talk in site.data.talks limit: 5%}
<li>
<div class='post-date'>
<time>{{ talk["event_date"] }}</time>
</div>
<div class='post-metadata'>
<div class='post-metadata-words'>
<span>
<a href='{{ talk["event_url"] }}'>{{ talk["event_title"] }}</a></span>
{% if talk["talk_title"] %}
<span>{{ talk["talk_title"] }}</span>
{% endif %}
{% if talk["talk_description"] %}
<span>{{ talk["talk_description"] }}</span>
{% endif %}
{% if talk["slides_url"] %}
<span><a href="{{ talk["slides_url"] }}">Slides</a></span>
{% endif %}
{% if talk["video_url"] %}
<span><a href="{{ talk["video_url"] }}">Video</a></span>
{% endif %}
</div>
</div>
</li>
{% endfor %}
</ul>
<a href="/talks">Show me all the talks!</a>
</div>
<div class='section'>
<h2>Elsewhere</h2>
<ul class='link-list'>
{% for link in site.data.links %}
<li><a href='{{ link["url"]}}' title='{{ link["title"]}}'>{{ link["site_name"] }}</a></li>
{% endfor %}
</ul>
</div>
<div class='section'>
<h2>Blogroll</h2>
<ul class='link-list'>
{% for link in site.data.blogroll %}
<li><a href='{{ link["url"]}}'>{{ link["site_name"] }}</a></li>
{% endfor %}
</ul>
</div>
</div>
</div>
</div>