-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
70 lines (62 loc) · 2.82 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
<html>
<head>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inconsolata:wght@200;400;700&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Inconsolata', monospace;
}
</style>
</head>
<body>
<h1>North Bay Python 2024</h1>
<h2>29 & 30 June, Petaluma, California</h2>
<p>
We're taking a few months off before we get ready to host our 2024 conference. Expect our full
website in early 2024, after we've rested enough to think about web design.
</p>
<h2>Keep up-to-date</h2>
<h3>Subscribe to our newsletter</h3>
<p>
Our low-volume newsletter includes notifications of key dates. Subscribe to be notified when talk
submissions, sponsor applications, or ticket sales are available.
</p>
<p>
<form
action="https://buttondown.email/api/emails/embed-subscribe/northbaypython"
method="post"
target="popupwindow"
onsubmit="window.open('https://buttondown.email/northbaypython', 'popupwindow')"
class="embeddable-buttondown-form"
>
<label for="bd-email">Enter your email</label>
<input type="email" name="email" id="bd-email" />
<input type="submit" value="Subscribe" />
<p>
<a href="https://buttondown.email/refer/northbaypython" target="_blank">Powered by Buttondown.</a>
</p>
</form> </p>
<h3>Follow us on Social Media</h3>
<p>Our social media includes information about key dates, and also photos of our venue's barn cats.</p>
<ul>
<li><b>Mastodon/Fediverse:</b> <a href="https://social.northbaypython.org/@NorthBayPython">@[email protected]</a></li>
<li><b>LinkedIn:</b> <a href="https://linkedin.com/company/north-bay-python">North Bay Python</a></li>
<li><b>YouTube:</b> <a href="https://www.youtube.com/@NorthBayPython">North Bay Python</a> (includes past conference videos)</li>
<li><b>Facebook:</b> <a href="https://facebook.com/northbaypython">North Bay Python</a></li>
</ul>
<h2>FAQ</h2>
<h3>Where will the conference be held?</h3>
<p>We're returning to the barn at Reis River Ranch, 35 miles North of San Francisco.</p>
<address>
Reis River Ranch <br />
4871 Petaluma Blvd. South <br />
Petaluma, CA 94952 <br />
</address>
<footer>
<hr />
© 2023 North Bay Python, a member project of <a href="https://sfconservancy.org">Software Freedom Conservancy</a>
and the <a href="https://python.org/psf">Python Software Foundation</a>, both registered 501(c)(3) Nonprofit Corporations.
</footer>
</body>
</html>