Skip to content

Commit 0fda9bb

Browse files
committed
Soup it up a bit
1 parent 7dba25a commit 0fda9bb

File tree

6 files changed

+46
-3
lines changed

6 files changed

+46
-3
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
_site

Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
.PHONY: serve
2+
serve:
3+
jekyll serve

README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,12 @@
11
# helsinki-python.github.io
2+
3+
## Building
4+
5+
```bash
6+
sudo apt install jekyll ruby-jekyll-sitemap
7+
make
8+
```
9+
10+
## Deploying
11+
12+
Commit and push

_config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
title: Helsinki Python Meetup Group
2-
plugins:
3-
- jekyll-sitemap
2+
# plugins:
3+
# - jekyll-sitemap

_layouts/index.html

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8">
5+
<title>{{ page.title }}</title>
6+
<link
7+
rel="stylesheet"
8+
href="https://cdn.jsdelivr.net/npm/@picocss/pico@2/css/pico.min.css"
9+
/>
10+
<link
11+
rel="icon"
12+
type="image/x-icon"
13+
href="https://raw.githubusercontent.com/helsinki-python/logo/main/HelPy-200.png">
14+
<body>
15+
<main class="container">{{ content }}</main>
16+
</body>
17+
</html>

index.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,19 @@
1+
---
2+
layout: index
3+
title: Helsinki Python
4+
---
5+
6+
<img
7+
src="https://raw.githubusercontent.com/helsinki-python/logo/main/HelPy.svg"
8+
alt="Helsinki Python logo"
9+
style="width: 10em">
10+
111
# Helsinki Python
212

313
## About
414

5-
A local usergroup hosting meeting up roughly every month.
15+
A local usergroup for the [Uusimaa](https://en.wikipedia.org/wiki/Uusimaa)
16+
region meeting up roughly every month.
617

718
- [Join on meetup.com](https://www.meetup.com/helpy-meetups/)
819
- [Propose a talk](https://forms.gle/KjZVgeMGHRd5ECCJ9)

0 commit comments

Comments
 (0)