-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathindex.html
103 lines (95 loc) · 3.57 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
---
layout: base
title: Home
---
{% assign sections = site.data.config.homepage_sections %}
<!-- About ScaleConf -->
<div class="row"
style="background: url(img/layout/cape-town-misty-banner.jpg); background-size: cover; background-position: bottom">
<div class="col-md-offset-3 col-md-6 text-center section">
<h1>Farewell from ScaleConf</h1>
<p class="big">
Each year ScaleConf brought international and local experts
together to share their experience scaling websites and services
using modern technologies and philosophies.
</p>
<div class="col-md-offset-1 col-md-10 section">
<div class="row text-center">
<h2>A message from your organizers</h2>
</div>
<div class="row text-left">
<div class="col-md-12 farewell">
<p>
Dear everyone who has supported us throughout the years,
</p>
<p>
We've been thinking long and hard about the future of ScaleConf, and we have come to the sad conclusion that
too much
has changed: in the world, in the way conferences work, and in our own ability to commit time and energy,
and
as such,
we regretfully announce that we will not be holding another ScaleConf.
</p>
<p>
It has been an absolutely wonderful journey over the last decade, and we would like to thank all of you, and
all of our fantastic speakers and sponsors, without whom it would never have happened.
</p>
<p>
We look forward to seeing you elsewhere - in person, online, and at other similar events, both in person and
online.
</p>
<p>
Thanks again, and fond regards,
</p>
<p class="bold">
Marije, Duncan, Mike and Jonathan.
</div>
</div>
</div>
</div>
</div>
<!-- Updates - Notify -->
<div class="row" style="background:#f0f0f0; padding: 0px 0 10px; margin-top:-1px;">
<div class="col-md-offset-3 col-md-6 text-center section">
<h2>Updates</h2>
<p class="big">
Register on our mailing list to be notified of anything we forgot to say above.
</p>
<div class='text-center'>
{% include send_in_blue_signup.html %}
</div>
</div>
</div>
<!-- Previous Speakers -->
{% if sections.previous_speakers %}
{% assign landing_page_speakers = site.data.speakers | where:"landing_page", "true" %}
<div class="row">
<div class="col-md-offset-3 col-md-6 section">
<div class="row text-center">
<h2>Previous Speakers</h2>
<p class="big">
With a mixture of South African and international speakers, each year we brought
a diversity of experience and perspective to the stage. Read about previous
speakers and their talks below.
</p>
</div>
<div class="row" style='margin-top:20px;'>
{% for speaker in landing_page_speakers %}
<div class="col-md-4" style="height:110px; overflow-y:hidden">
<img src='/img/speakers/{{speaker.name | slugify | replace: '-', '_' }}.small.jpg'
style='display:inline-block; vertical-align:top; margin-right:10px; border-radius:25px; height:50px;' />
<div style='display:inline-block; width:60%; padding-bottom:10px;'>
<p>
<b>{{ speaker.name }}</b><br />
{{ speaker.company}}
</p>
</div>
</div>
{% endfor %}
</div>
<div class="row text-center">
<a href="/speakers" role="button" class="btn btn-primary">See more past speakers</a>
</div>
</div>
</div>
{% endif %}