-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
123 lines (117 loc) · 4.09 KB
/
index.html
File metadata and controls
123 lines (117 loc) · 4.09 KB
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
120
121
122
123
---
layout: default
title: PubConf Software Comedy Variety Show and Afterparty
body_class: page-index
sitemap:
priority: 1.0
---
<div class="hero">
<div class="container">
<div class="title">
<h1 style="display: none;">PubConf by TrackJS</h1>
<img src="/assets/images/index/title-logo.svg" alt="PubConf by TrackJS">
</div>
<div class="subtitle">
<h2>THE SOFTWARE VARIETY SHOW AND AFTER-PARTY</h2>
</div>
</div>
{% capture menu_links %}
<ol>
{% capture now %}{{ 'now' | date: '%s' | plus: 0 }}{% endcapture %}
{% for event in site.events %}
{% capture event_date %}{{ event.date | date: '%s' | plus: 0 }}{% endcapture %}
{% if event_date > now %}
<li>
<a href="{{ event.url }}">{{ event.title }}</a>
</li>
{% endif %}
{% endfor %}
<li>
<a href="/events/">Event Archive</a>
</li>
<li>
<a href="/speakers/">Speakers</a>
</li>
<li>
<a href="/code-of-conduct/">Code of Conduct</a>
</li>
</ol>
{% endcapture %}
{% include menu.html links=menu_links %}
</div>
<ol class="event-list">
{% capture now %}{{ 'now' | date: '%s' | plus: 0 }}{% endcapture %}
{% for event in site.events %}
{% capture event_date %}{{ event.date | date: '%s' | plus: 0 }}{% endcapture %}
{% if event_date > now %}
<li>
<a href="{{ event.url }}">
<h2>{{ event.title }}</h2>
<div class="event-date">{{ event.local_time | date: "%A, %B %e, %Y" }}</div>
</a>
</li>
{% endif %}
{% endfor %}
</ol>
<div class="newsletter">
<div class="container">
<h2>Get Email Updates</h2>
<p>Join our newsletter to be the first to know about tickets and events.</p>
<a href="{{ site.newsletter_url }}" class="button">
<i class="icon-paper-plane-empty"></i>
Subscribe to PubConf
</a>
</div>
</div>
<div class="global-supporter">
<div class="container">
<h3>Global Founding Partners</h3>
<div class="supporters">
<div class="supporter-item">
<a href="https://trackjs.com/">
<span style="display: none;">TrackJS Front-End Error Monitoring</span>
<img src="/assets/images/supporters/tjs-dark.webp"
alt="TrackJS Front-End Error Monitoring"
loading="lazy"
height="200" width="480">
</a>
</div>
<div class="supporter-item">
<a href="https://requestmetrics.com/">
<span style="display: none;">Request Metrics Performance Monitoring</span>
<img src="/assets/images/supporters/rm3-dark.webp"
alt="Request Metrics Performance Monitoring"
loading="lazy"
height="200" width="480">
</a>
</div>
<div class="supporter-item">
<a href="https://www.certkit.io/">
<span style="display: none;">CertKit SSL Certificate Management</span>
<img src="/assets/images/supporters/certkit-logo.png"
alt="CertKit SSL Certificate Management"
loading="lazy"
height="109" width="500">
</a>
</div>
</div>
</div>
</div>
{% include gallery.html %}
{% include video.html %}
<!-- JSON-LD -->
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "Organization",
"name": "{{ site.title }}",
"description": "{{ site.description | strip_html | strip_newlines }}",
"url": "{{ site.url }}",
"logo": "{{ site.url }}{{ site.image }}",
"sameAs": [
"https://www.facebook.com/{{ site.facebook_username }}",
"https://twitter.com/{{ site.twitter_username }}"
],
"email": "{{ site.email }}"
}
</script>