forked from dmackie/scaleconf.github.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
119 lines (110 loc) · 4.6 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
---
layout: page
name: Home
---
<div id="top-content">
<h1>SCALECONF 2013:<span class="slogan"> BUILT TO SCALE</span></h1>
<div id="mission">
<p class='date-venue'>April 18-19 2013: Cape Town, South Africa. </p>
<p>Scaling code and architecture is a unique challenge that pushes us to our limits.</p>
<p>ScaleConf brings international and local experts together to talk about their experience building sites and services that can handle the rigours of today's internet. </p>
</div>
<div id="target-audience" class="extra-info">
<h2>Included in your ticket:</h2>
<ul>
<li>
<img src="/images/bullet.png" alt="">
<p class="inline">7 international speakers sharing unique experiences.</p>
</li>
<li>
<img src="/images/bullet.png" alt="">
<p class="inline">5 African speakers sharing local perspectives and solutions.</p>
</li>
<li>
<img src="/images/bullet.png" alt="">
<p class="inline">Lunch every day, and refreshments throughout the event.</p>
</li>
<li>
<img src="/images/bullet.png" alt="">
<p class="inline">Evening events to network and meet like-minded people.</p>
</li>
<li>
<img src="/images/bullet.png" alt="">
<p class="inline">Free workshops, and time to build and hack with new technologies and people.</p>
</li>
</ul>
</div>
</div>
<div id="bottom-content">
<div id="location" class="extra-info">
<img src="/images/cape_town_istock.small.jpg" alt="Cape Town">
<a href="/venue"><h2>OUR LOCATION</h2></a>
<p>
<span class="bolder">CAPE TOWN, SOUTH AFRICA:</span>
Set against the scenic backdrop of Table Mountain, Cape Town has easy access to beaches, scenic hikes, winelands, and a buzzing culture.
</p>
<p>
The conference itself is being held at the Kirstenbosch Botanical Gardens, a beautiful and serene setting.
</p>
</div>
<div id="speakers">
<h2>OUR SPEAKERS </h2>
<p class='padded'>
With a mixture of African and international speakers, ScaleConf brings a diversity of experience and perspecitve to the stage. The speakers are engineers, and their aim is to share their experience, thoughts and war stories so that we may learn.
</p>
<ul>
{% for sp in site.highlighted %}
{% assign speaker = site.speakers[sp] %}
<li>
<a href="/speakers/{{ sp }}">
<img src="/images/speakers/{{ sp }}.small.jpg" alt="{{ site.speakers[sp].name }}">
<p>
<span class="bolder">{{ speaker.name }}</span>
<br>{{ speaker.company }}, {{ speaker.country }}<br>
<span class="quote"> {{ speaker.quote }} </span>
</p>
</a>
</li>
{% if forloop.index == 3 %}
</ul>
<ul>
{% endif %}
{% endfor %}
<li id="more-speakers">
<a class="textlink" href="/speakers">Check out all speakers » </a>
<div>
{% for speaker in site.nonhighlighted %}
<a href="/speakers/{{ speaker }}">
<img src="/images/speakers/{{ speaker }}.small.jpg" alt="{{ site.speakers[speaker].name }}">
</a>
{% endfor %}
</div>
</li>
</ul>
</div>
</div>
<div id="sponsors">
<ul>
{% for sponsor in site.sponsors.gold %}
<li>
<a href="/sponsors/{{ sponsor.name | downcase | replace:' ','_' }}">
<img src="/images/sponsors/{{ sponsor.name | downcase | replace:' ','_' }}.small.png" alt="">
</a>
</li>
{% endfor %}
{% for sponsor in site.sponsors.silver %}
<li>
<a href="/sponsors/{{ sponsor.name | downcase | replace:' ','_' }}">
<img src="/images/sponsors/{{ sponsor.name | downcase | replace:' ','_' }}.small.png" alt="">
</a>
</li>
{% endfor %}
{% for sponsor in site.sponsors.bronze %}
<li>
<a href="/sponsors/{{ sponsor.name | downcase | replace:' ','_' }}">
<img src="/images/sponsors/{{ sponsor.name | downcase | replace:' ','_' }}.small.png" alt="">
</a>
</li>
{% endfor %}
</ul>
</div>