Skip to content

Commit 23e71af

Browse files
committed
Longer description
1 parent d266aa7 commit 23e71af

File tree

2 files changed

+48
-4
lines changed

2 files changed

+48
-4
lines changed

index.html

Lines changed: 20 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,29 @@
44
<meta charset="utf-8">
55
<meta name="viewport" content="width=device-width, initial-scale=1">
66
<meta name="description" content="A group of Python and data enthusiasts in Helsinki, Finland.">
7-
<link rel="stylesheet" href="style.css?v=2">
7+
<link rel="stylesheet" href="style.css?v=3">
88
<body>
9+
<hgroup>
910
<h1>PyData Helsinki</h1>
11+
<p>A group of Python and data enthusiasts in Helsinki, Finland</p>
12+
</hgroup>
13+
<h2>About</h2>
1014
<p>
11-
A group of Python and data enthusiasts in Helsinki, Finland.
15+
This meetup is for those who work or aspire to work in fields like
16+
machine learning, data engineering, MLOps, visualization, and statistical modeling.
17+
We share real-world experiences about solving problems in these fields using open-source tools,
18+
including but not limited to Python and its libraries – users of R, Julia or other languages are welcome.
19+
</p>
20+
<p>
21+
We welcome speakers to talk about these tools and experiences using them, regardless of the level (beginner, intermediate, advanced are welcome).
22+
The usual talk is about half an hour long, but lightning talks of 5–10 minutes are great too!
23+
Occasionally we will include a debate! Come with a thought-provoking question or a hot take,
24+
and we'll set up a discussion where everyone can take part.
1225
</p>
1326
<ul>
14-
<li><a href="https://www.meetup.com/pydata-helsinki/">Meetup</a></li>
15-
<li>Join us on <a href="https://helsinki-python.github.io/discord">the Helsinki Python Discord</a></li>
27+
<li>Sign up for our events via <a href="https://www.meetup.com/pydata-helsinki/" rel="me">Meetup</a></li>
28+
<li>Join the conversation on <a href="https://helsinki-python.github.io/discord">the Helsinki Python Discord</a></li>
29+
<!-- <li>Contact us via <a href="mailto:...">email</a></li> -->
1630
</ul>
1731
<h2>Sponsors</h2>
1832
<ul>
@@ -42,13 +56,15 @@ <h2>Organisers</h2>
4256
<li>Niko Föhr</li>
4357
</ul>
4458

59+
<footer>
4560
<h2>About PyData</h2>
4661
<p>
4762
PyData is an educational program of NumFOCUS, a 501(c)3 non-profit organization in the United States. PyData provides a forum for the international community of users and developers of data analysis tools to share ideas and learn from each other. The global PyData network promotes discussion of best practices, new approaches, and emerging technologies for data management, processing, analytics, and visualization. PyData communities approach data science using many languages, including (but not limited to) Python, Julia, and R.
4863
</p>
4964
<p>
5065
The PyData Code of Conduct governs this meetup. To discuss any issues or concerns relating to the code of conduct or the behavior of anyone at a PyData meetup, please contact the local group organizers (message us on the meetup page). Please also submit a report of any potential Code of Conduct violation <a href="https://numfocus.typeform.com/to/ynjGdT">directly to NumFOCUS</a>. Thank you for helping us to maintain a welcoming and friendly PyData community!
5166
</p>
67+
</footer>
5268

5369
</body>
5470
</html>

style.css

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
--primary-color: #398BAB;
33
--secondary-color: #E87C32;
44
--text-color: #333;
5+
--secondary-text-color: color-mix(in srgb, var(--text-color) 60%, var(--secondary-color) 40%);
56
--background-color: #f9f9f9;
67
--max-width: 800px;
78
--font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
@@ -53,6 +54,12 @@ h1 {
5354
padding-bottom: 0.5rem;
5455
}
5556

57+
hgroup > p {
58+
font-size: 1.1rem;
59+
margin-bottom: 2rem;
60+
color: var(--secondary-text-color);
61+
}
62+
5663
h2 {
5764
font-size: 1.8rem;
5865
}
@@ -79,6 +86,27 @@ a:hover {
7986
text-decoration: underline;
8087
}
8188

89+
footer {
90+
margin-top: 3rem;
91+
padding-top: 1.5rem;
92+
border-top: 1px solid var(--secondary-color);
93+
font-size: 0.9rem;
94+
color: var(--secondary-text-color);
95+
96+
h2 {
97+
font-size: 1.5rem;
98+
margin-top: 0;
99+
}
100+
101+
p {
102+
margin-bottom: 1rem;
103+
}
104+
105+
a {
106+
color: var(--primary-color);
107+
}
108+
}
109+
82110
@media (max-width: 600px) {
83111
h1 {
84112
font-size: 2rem;

0 commit comments

Comments
 (0)