Skip to content

Commit 4a38ea3

Browse files
authored
Merge pull request #4 from RocPy/add_calendar_schedule
Add Google cal widget, moved join widget to page
2 parents 6770c92 + c3d7166 commit 4a38ea3

File tree

4 files changed

+41
-20
lines changed

4 files changed

+41
-20
lines changed

README.md

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
11
# RocPy Website
22

3-
This is the website for the Rochester Python "RocPy" Meetup, a Python user group in Rochester, NY. This website is statically generated with with Material for MkDocs and GitHub Actions. Additionally, we use Web3Forms for a simple submission to send its organizers an email.
3+
This is the website for the Rochester Python "RocPy" Meetup, a Python user
4+
group in Rochester, NY. This website is statically generated with with Material
5+
for MkDocs and GitHub Actions. Additionally, we use Web3Forms for a simple
6+
submission to send its organizers an email.
7+
8+
## Local Development
9+
1. Install the tool [uv](https://docs.astral.sh/uv/getting-started/installation/). You'll probably want to use `brew` (macOS, Linux) or `pip`.
10+
1. In another terminal, run `uv run mkdocs serve` to start the development server.
11+
1. Open your browser to `http://localhost:8000` to see the site.
12+
13+
Then, edit an resources for the site in the `docs` directory. The site will automatically update as you save changes.
14+
415

516
## How to Contribute
617
Pull requests are welcome! If you'd like to contribute to the website, please follow these steps:
@@ -11,4 +22,7 @@ Pull requests are welcome! If you'd like to contribute to the website, please fo
1122
5. Push your changes to your fork
1223
6. Create a pull request
1324

14-
Your PR must be approved before merging. It will be reviewed for content, style, and adherence to the code of conduct. After merging, the GitHub Action defined in `.github/workflows/ci.yml` will publish the changes to RocPy's organization GitHub Page.
25+
Your PR must be approved before merging. It will be reviewed for content,
26+
style, and adherence to the code of conduct. After merging, the GitHub Action
27+
defined in `.github/workflows/ci.yml` will publish the changes to RocPy's
28+
organization GitHub Page.

docs/calendar.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Calendar
2+
3+
<iframe src="https://calendar.google.com/calendar/embed?height=600&wkst=1&ctz=America%2FNew_York&showPrint=0&mode=AGENDA&showCalendars=0&title=RocPy%20Schedule%20of%20Events&src=Y3BmbzE4cDg5OWVkcTNoY2JzaW8wamV1NGFuZDVqODJAaW1wb3J0LmNhbGVuZGFyLmdvb2dsZS5jb20&color=%23E67C73" style="border:solid 1px #777" width="800" height="900" frameborder="0" scrolling="no"></iframe>

docs/index.md

Lines changed: 2 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
# Join The RocPy Python User Group!
2-
1+
## Join The RocPy Python User Group!
32
![RocPy Logo](img/rocpy-logo-small.png "RocPy Logo" ){ align=left }
43

54
_From the banks of the mighty Genesee River, deep in the heart of the Greater
@@ -15,19 +14,4 @@ Hey there, Python enthusiasts! Welcome to RocPy, Rochester's very own Python use
1514

1615
We host monthly presentation series where we share our knowledge and expertise on various Python-related topics. These sessions are usually around 30-60 minutes long and are open to all skill levels. So, if you're interested in learning more about Python or just want to chat with like-minded people, come join us!
1716

18-
<div class="calltoaction minimal">
19-
<div class="D_boxbody">
20-
<form action="https://www.meetup.com/Rochester-Python-Meetup/join/" method="post">
21-
<div class="D_boxhead">
22-
<p>You'll get invited to our Meetups as soon as they're scheduled!</p>
23-
</div>
24-
<div class="D_boxsection ">
25-
<input type="submit" name="submit" value="Join us!" class="D_submit" />
26-
<input type="hidden" name="returnUri" value="https://www.meetup.com/Rochester-Python-Meetup" />
27-
<input type="hidden" name="returnUriEnc" value="https%3A%2F%2Fwww.meetup.com%2FRochester-Python-Meetup" id="returnUriEnc" />
28-
<input type="hidden" name="submit" value="1" />
29-
</div>
30-
<div style="clear: both; height: 1px; line-height: 1px;"></div>
31-
</form>
32-
</div>
33-
</div>
17+

docs/join.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Join RocPy
2+
3+
We use [Meetup.com to organize our events](https://www.meetup.com/Rochester-Python-Meetup/). Join us there to get notified of upcoming events.
4+
5+
<div class="calltoaction minimal">
6+
<div class="D_boxbody">
7+
<form action="https://www.meetup.com/Rochester-Python-Meetup/join/" method="post">
8+
<div class="D_boxhead">
9+
<p>You'll get invited to our Meetups as soon as they're scheduled!</p>
10+
</div>
11+
<div class="D_boxsection ">
12+
<input type="submit" name="submit" value="Join us!" class="D_submit" />
13+
<input type="hidden" name="returnUri" value="https://www.meetup.com/Rochester-Python-Meetup" />
14+
<input type="hidden" name="returnUriEnc" value="https%3A%2F%2Fwww.meetup.com%2FRochester-Python-Meetup" id="returnUriEnc" />
15+
<input type="hidden" name="submit" value="1" />
16+
</div>
17+
<div style="clear: both; height: 1px; line-height: 1px;"></div>
18+
</form>
19+
</div>
20+
</div>

0 commit comments

Comments
 (0)