forked from alexandtheweb/uxbrighton-prototype
-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
77 lines (59 loc) · 2.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
---
layout: conference-2024/default
slug: conference-2024
image: https://uxbri.org/2024/images/cards/Early-bird.png
masthead-color: dark
---
{%- assign homepage = site.data.year_2024.homepage -%}
{%- assign current_year = 2024 -%}
<main class="">
<!-- Overarching hero content grouping / section -->
<section
id="hero"
class="overlay__outer pa0"
style="background: url('{{ homepage.hero.global.image }}') center center no-repeat #000; background-size: cover;">
<div class="overlay__inner overflow-hidden">
<!-- Event promo component -->
{% if homepage.event-promo-top-of-page == true %}
<div class="upcoming-events-outer">
{% include_relative {{current_year}}/conf-page-partials/upcoming-mini.html %}
</div>
{% endif %}
<div class="container color-white">
<!-- Hero component -->
{% include_relative {{current_year}}/conf-page-partials/hero.html %}
</div>
</div>
</section>
<!-- In-page section navigation -->
{% include_relative {{current_year}}/conf-page-partials/in-page-nav.html %}
<!-- Overarching 'overview' content grouping -->
<section id="overview" class="relative">
<div class="container" style="position: static;">
<div class="row gutters__container mt0">
<!-- Overview component -->
{% include_relative {{current_year}}/conf-page-partials/overview.html %}
<!-- Sticky 'aside' call-to-action component -->
{% include_relative {{current_year}}/conf-page-partials/aside-cta.html %}
</div>
<!-- Testimonial (overview section) component -->
{% include_relative {{current_year}}/conf-page-partials/testimonial-overview.html %}
<!-- Travel and accommodation component -->
{% include_relative {{current_year}}/conf-page-partials/travel-and-accommodation.html %}
<!-- Pre-party component -->
{% include_relative {{current_year}}/conf-page-partials/pre-party.html %}
</div>
</section>
<!-- Pricing component -->
{% include_relative {{current_year}}/conf-page-partials/pricing-table.html %}
<!-- Speakers component -->
{% include_relative {{current_year}}/conf-page-partials/speakers.html %}
<!-- Highlights (past) component -->
{% include_relative {{current_year}}/conf-page-partials/highlights.html %}
<!-- Sponsors component -->
{% include_relative {{current_year}}/conf-page-partials/sponsors.html %}
<!-- Workshops component -->
{% include_relative {{current_year}}/conf-page-partials/workshop.html %}
<!-- This is this 'conference' event's structured schema data -->
{% include schemas/schema_events_conference.html %}
</main>