generated from code4lib/2021.code4lib.org
-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
72 lines (66 loc) · 2.59 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
---
layout: default
title: code4lib 2022
---
{% include homepage/jumbotron.html %}
<section>
<div class="container">
{% unless site.data.conf.homepage-display == 'peri' %}
<div class="row">
<div class="col-12">
<h2>The conference for people who code for libraries.</h2>
<p>
An annual gathering of technologists from around the world, who largely work for and with libraries,
archives, and museums and have a commitment to open technologies.
</p>
</div>
</div>
{% endunless %}
<div class="row">
{% include homepage/{{ site.data.conf.homepage-display }}_conference.html %}
</div>
</div>
</section>
{% if site.data.conf.location != '' %}
<section class="welcome">
<div class="container">
<div class="row section">
<div class="col-lg-3 col-md-5 col-xs-12">
<img class="w-100" src="assets/img/theme-images/flag_of_buffalo_ny.png"
alt="Flag for City of Buffalo, New York" title="Flag for City of Buffalo, New York">
</div>
<div class="col-lg-9 col-md-7 col-xs-12">
<h2>Welcome to {{site.data.conf.location}}, {{site.data.conf.catchline}}</h2>
<p>{{site.data.conf.welcome-message}}</p>
{% if site.data.conf.venue.name != nil %}
<p>
The conference will take place at the <a class="welcome" href="{{site.data.conf.venue.website}}">{{site.data.conf.venue.name}}</a>,
right in downtown {{ site.data.conf.location }}.
</p>
{% endif %}
</div>
</div>
</div>
</section>
{% endif %}
<section>
<div class="container">
<div class="row" id="testimonials">
{% for testimonial in site.data.testimonials %}
<div class="col-sm-6 col-md-4 testimonial">
<div class="thumbnail">
<div class="speech-bubble">
<div class="arrow bottom right"></div>
{{ testimonial.blurb }}
</div>
<div class="caption">
<h3><a href="https://twitter.com/{{ testimonial.twitter }}">{{ testimonial.name }}</a></h3>
<p>{{ testimonial.org }}</p>
</div>
</div>
</div>
{% endfor %}
<script src="{{ "/assets/js/testimonials.js" | relative_url }}"></script>
</div>
</div>
</section>