-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdefault.html
More file actions
77 lines (71 loc) · 3.2 KB
/
default.html
File metadata and controls
77 lines (71 loc) · 3.2 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
<!doctype html>
<html lang="en">
<head>
<!-- voodoo -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<!-- redirect -->
{% if redirect %}
<meta http-equiv="refresh" content="0;url={{ redirect }}" />
{% endif %}
<!-- basic meta -->
<title>SoCal Python | {% if title %}{{ title }}{% elif redirect %}Redirecting{% else %}The official site of the Los Angeles Python programming language community.{% endif %}</title>
<meta name="description" content="The official site of the Los Angeles Python programming language community.">
<!-- OG -->
<meta property="og:title" content="SoCal Python | {% if title %}{{ title }}{% elif redirect %}Redirecting{% else %}The official site of the Los Angeles Python programming language community.{% endif %}">
<meta property="og:type" content="article">
<meta property="og:url" content="https://socalpython.org/{{ path }}">
<meta property="og:description" content="The official site of the Los Angeles Python programming language community.">
<meta property="og:image" content="https://socalpython.org/assets/img/socalpython-highres.jpg">
<meta property="og:image:width" content="792">
<meta property="og:image:height" content="612">
<!-- Mastodon verification -->
<link href="https://fosstodon.org/@socalpython" rel="me">
<!-- assets -->
<link rel="shortcut icon" href="/assets/img/snake64.png">
<link rel="apple-touch-icon" href="/assets/img/snake144.png">
<link rel="stylesheet" type="text/css" href="/assets/style/style.css">
<!-- Plausible Analytics -->
<script defer data-domain="socalpython.org" src="/js/script.js"></script>
</head>
<body>
<div class="wrapper">
<header>
<a href="/" class="title-container" style="text-decoration: none">
<image class="title-image" src="/assets/img/socalpython_logo.svg" alt="A python riding a surfboard pushed by a wave, and a stylized rendering of the words SoCal Python" />
</a>
<nav>
<ul>
<li><a href="/">Home</a></li>
<li><a href="/about">About</a></li>
<li><a href="/speaking">Speaking</a></li>
<li><a href="/sponsorship">Sponsorship</a></li>
<li><a href="/conduct">Code of Conduct</a></li>
<li><a href="/organizers">Organizers</a></li>
<li><a href="/contact">Contact</a></li>
</ul>
<ul>
<li><a href="/meetup">Meetup</a></li>
<li><a href="/luma">Luma</a></li>
<li><a href="/buttondown">Buttondown</a></li>
<li><a href="/github">GitHub</a></li>
<li><a href="/mastodon">Mastodon</a></li>
<li><a href="/bluesky">Bluesky</a></li>
<li><a href="/in-memoriam-michael">In Memoriam: Michael</a></li>
</ul>
</nav>
</header>
<section>
{% if redirect %}
<p>Redirecting to: <a href="{{ redirect }}">{{ redirect }}</a></p>
{% else %}
{% if title %}
<h1>{{ title }}</h1>
{% endif %}
{{ content }}
{% endif %}
</section>
<footer>© <a href="/">SoCal Python</a> 🐍</footer>
</div>
</body>
</html>