-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
74 lines (68 loc) · 2.75 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
---
layout: default
title: code4lib 2025
---
{% 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-12 col-md-7 col-xs-12">
<h2>Welcome to {{site.data.conf.location}}{% if site.data.conf.catchline %}, {{site.data.conf.catchline}}{% endif %}</h2>
{% if site.data.conf.welcome-message %}<p>{{site.data.conf.welcome-message}}</p>{% endif %}
{% if site.data.conf.venue.name != nil %}
<p>
The conference
{% if site.data.conf.homepage-display == 'pre' %} will take {% endif %}
{% if site.data.conf.homepage-display == 'post' %} took {% endif %}
{% if site.data.conf.homepage-display == 'peri' %} is taking {% endif %}
place at {{site.data.conf.venue.name}}, in {{ site.data.conf.location }}.
</p>
{% if site.data.conf.schedule-note != nil %}
<p class="alert alert-warning"><strong>Important schedule note:</strong> {{ site.data.conf.schedule-note }}</p>
{% endif %}
{% 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>{{ testimonial.name }}</h3>
<p>{{ testimonial.org }}</p>
</div>
</div>
</div>
{% endfor %}
<script src="{{ "/assets/js/testimonials.js" | relative_url }}"></script>
</div>
</div>
</section>