Skip to content

Commit 68c5d16

Browse files
committed
Add Contact page
And some minor cleanup.
1 parent 474c6b3 commit 68c5d16

File tree

5 files changed

+24
-13
lines changed

5 files changed

+24
-13
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ It's built using [corvid] and below instructions rely on [just], [uv], [modd], a
1414

1515
## Developing
1616

17-
You can run `just --list` to see all available options. Anything requiring uv should be run “inside” it, e.g., `uv run just dev`. You can run all commands like so if you don’t want to have to actively think about it.
17+
You can run `just --list` to see all available options.
1818

19-
1. Run `uv run just dev` to start the automa-build-and-serve process
19+
1. Run `just dev` to start the automa-build-and-serve process
2020
2. Go to [http://localhost:8000]
2121
3. Make changes
2222
4. Refresh to see changes

input/assets/style/_main.scss

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ body {
99
.wrapper {
1010
margin: 0 auto;
1111
padding: 15px;
12-
max-width: 700px;
12+
max-width: 770px;
1313
text-align: left;
1414
}
1515

@@ -18,7 +18,7 @@ blockquote {
1818
padding: 4px 24px;
1919
font-style: italic;
2020
border-radius: 10px;
21-
box-shadow: 0 0 6px rgba(0,0,0,.15);
21+
box-shadow: 0 0 6px rgba(0, 0, 0, .15);
2222
background-color: rgb(237, 245, 249);
2323

2424
span {
@@ -41,8 +41,7 @@ a {
4141
}
4242

4343
a:link,
44-
a:visited {
45-
}
44+
a:visited {}
4645

4746
a:hover,
4847
a:active {
@@ -53,10 +52,11 @@ a:active {
5352

5453
// these only work if they're separate
5554
::selection {
56-
background: #e0e0e0;
55+
background: #e0e0e0;
5756
}
57+
5858
::-moz-selection {
59-
background: #e0e0e0;
59+
background: #e0e0e0;
6060
}
6161

6262
header {
@@ -66,6 +66,7 @@ header {
6666
h1 {
6767

6868
a {
69+
6970
&:link,
7071
&:visited,
7172
&:hover,
@@ -105,4 +106,4 @@ footer {
105106
padding: 15px 0;
106107
border-top: 1px solid #dddddd;
107108
font-size: 75%;
108-
}
109+
}

input/contact/index.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
title: "Contact"
3+
path: "contact/"
4+
---
5+
6+
7+
If you’d like to get in touch with the organizers—to join the Slack community, offer sponsorship, or anything else—you can use the form below.
8+
9+
<script data-letterbirduser="socalpython" src="https://letterbird.co/embed/v1.js"></script>

justfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,16 @@ dev:
44

55
# build HTML with corvid (requires uv)
66
html:
7-
corvid
7+
uv run corvid
88

99
# compile CSS from Sass (requires uv)
1010
css:
11-
pysass input/assets/style/style.scss output/assets/style/style.css
11+
uv run pysass input/assets/style/style.scss output/assets/style/style.css
1212

1313
# generate in memoriam (requires uv)
1414
inmemoriam:
15-
python scripts/get_in_memoriam_csv.py
16-
cog -r input/in-memoriam-michael/index.md
15+
uv run python scripts/get_in_memoriam_csv.py
16+
uv run cog -r input/in-memoriam-michael/index.md
1717

1818
# build site in output/ (requires uv)
1919
build:

templates/default.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ <h1><a href="/">SoCal Python</a></h1>
4646
<li><a href="/sponsorship">Sponsorship</a></li>
4747
<li><a href="/conduct">Code of Conduct</a></li>
4848
<li><a href="/organizers">Organizers</a></li>
49+
<li><a href="/contact">Contact</a></li>
4950
<li><a href="/in-memoriam-michael">In Memoriam: Michael</a></li>
5051
</ul>
5152
<ul>

0 commit comments

Comments
 (0)