-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpast-events.html
More file actions
117 lines (105 loc) · 5.16 KB
/
past-events.html
File metadata and controls
117 lines (105 loc) · 5.16 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Past Events | DataBeers Exeter</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<header class="site-header">
<div class="header-inner">
<a href="index.html" class="header-brand">
<img src="Images/Logo.png" alt="DataBeers Exeter logo" class="header-logo" />
<span class="header-title">DataBeers <em>Exeter</em></span>
</a>
<button class="nav-toggle" aria-label="Toggle navigation" aria-expanded="false">
<span></span><span></span><span></span>
</button>
<nav class="site-nav" id="site-nav">
<ul>
<li><a href="index.html" class="nav-link">Home</a></li>
<li><a href="about.html" class="nav-link">About Us</a></li>
<li><a href="organisers.html" class="nav-link">Organisers</a></li>
<li><a href="past-events.html" class="nav-link">Past Events</a></li>
</ul>
</nav>
</div>
</header>
<main>
<div class="page-hero">
<h1>Past <span class="accent">Events</span></h1>
<p>A look back at every DataBeers Exeter gathering</p>
</div>
<section class="section">
<div class="container">
<p class="section-intro">
Each DataBeers Exeter event is shaped by whoever turns up and whoever steps
up to speak. Browse what we've covered so far.
</p>
<div class="events-list">
<article class="event-card">
<div class="event-date">
<span class="event-month">Mar</span>
<span class="event-year">2026</span>
</div>
<div class="event-details">
<h3><a href="Events/March2026/" class="inline-link">DataBeers Exeter #2</a></h3>
<p class="event-venue">Venue: Positive Lights Project, Exeter</p>
<p>The success of the first event made the decision easy: DataBeers Exeter was here to stay. Working again with our friends at Cuckoo Tap Room, we brought together another fantastic lineup. The event is always free to attend, and demand was such that every place was taken, with 60 or more people joining us for the evening.</p>
<div class="event-tags">
<span class="tag">Tudor Networks</span>
<span class="tag">Group Dynamics</span>
<span class="tag">Traffic Modelling</span>
<span class="tag">Web Archives</span>
</div>
</div>
</article>
<article class="event-card">
<div class="event-date">
<span class="event-month">May</span>
<span class="event-year">2025</span>
</div>
<div class="event-details">
<h3><a href="Events/May2025/" class="inline-link">DataBeers Exeter #1</a></h3>
<p class="event-venue">Venue: Positive Lights Project, Exeter</p>
<p>Since joining the University of Exeter, Federico and Ronaldo had long discussed bringing DataBeers to the city. The idea gained momentum but the pandemic put everything on hold. The belief that data science is a skill for everyone never faded though, and eventually the right time, location, format, and speakers all came together for our inaugural event.</p>
<div class="event-tags">
<span class="tag">Air Traffic Control</span>
<span class="tag">Creativity</span>
<span class="tag">Fake News</span>
<span class="tag">Mobility Inequality</span>
</div>
</div>
</article>
</div>
</div>
</section>
<!-- CTA -->
<section class="section section-alt" style="text-align:center;">
<div class="container">
<h2 class="section-title">Speak at the <span class="accent">next one</span></h2>
<p class="section-intro" style="margin-inline:auto;">
Inspired by what you've seen? We're always looking for speakers.
Talks are PechaKucha style: 20 slides, 20 seconds each, on anything data-related.
</p>
<a href="#" class="btn btn-primary" onclick="this.href='mailto:'+['databeers','biocomplexlab.org'].join('@')+'?subject=DataBeers%20Exe%3A%20Interested%20in%20Speaking'; return true;">Propose a talk</a>
</div>
</section>
</main>
<footer class="site-footer">
<div class="container">
<div class="footer-social">
<a href="https://www.linkedin.com/company/112291143/" target="_blank" rel="noopener" aria-label="DataBeers Exeter on LinkedIn">
<img src="Icons/linkedin-brands-solid-full.svg" alt="LinkedIn" class="footer-icon" />
</a>
<a href="#" aria-label="Email DataBeers Exeter" onclick="this.href='mailto:'+['databeers','biocomplexlab.org'].join('@')+'?subject=DataBeers%20Exe%3A%20General%20Inquiry'; return true;">
<img src="Icons/envelope-solid.png" alt="Email" class="footer-icon" />
</a>
</div>
<p>© <span id="year"></span> DataBeers Exeter. All rights reserved.</p>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>