Skip to content

Commit 33ee0bb

Browse files
authored
Merge pull request jupyter#308 from choldgraf/getinvolved
Updating community/documentation content and a few style tweaks
2 parents 9d4c99b + 077ff76 commit 33ee0bb

9 files changed

+67
-30
lines changed
File renamed without changes.

_layouts/documentation.html renamed to _includes/documentation.html

-11
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,3 @@
1-
---
2-
layout: default
3-
title: Documentation
4-
---
5-
6-
<section>
7-
<div class="header header-grey">
8-
<h2>Documentation</h2>
9-
<p>Browse the Jupyter universe for information.</p>
10-
</div>
11-
</section>
121
<section>
132
<div class="top-section-border">
143
<div class="container">

community.html

-8
This file was deleted.

community.md

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
---
2+
layout: page_md
3+
title: Stay Connected
4+
tagline: Project Jupyter offers a number of communication channels available to individuals interested in using and contributing to the project.
5+
permalink: /community
6+
---
7+
8+
Jupyter is a community of data enthusiasts who believe in the power of open
9+
tools and standards for education, research, and data analytics. We welcome
10+
contributions and contributors of all kinds - whether they come as contributions
11+
to code, participation in the community, opening issues and pointing out bugs,
12+
or simply sharing your work with your colleagues and friends.
13+
14+
## Join the Jupyter community
15+
16+
If you're interested in joining the Jupyter community (yay!) we recommend
17+
checking out the Jupyter [Contributing guide](https://github.com/jupyter/help/blob/master/CONTRIBUTING.md). This contains
18+
information about the different projects in the Jupyter ecosystem, the tools
19+
and skills that are useful for each project, and other ways that you can
20+
become a part of the Jupyter community.
21+
22+
### JupyterDays, JupyterCon, and other events
23+
24+
Many members of the Jupyter community host events to connect others that use
25+
Jupyter and other tools in the open data analytics stack. For example,
26+
[JupyterCon](https://conferences.oreilly.com/jupyter/jup-ny) is an annual conference that brings together many
27+
different groups represented in the Jupyter Community. **Jupyter Days**
28+
are smaller, locally-organized events for learning and connecting with one
29+
another. For example, [here's a post announcing Jupyter Days in Atlanta](https://blog.jupyter.org/announcing-jupyter-day-atlanta-spring-2018-d68ebee2c6cb).
30+
If you'd like to organize a Jupyter Days event in your community, please
31+
reach out!
32+
33+
## Participate online
34+
35+
Jupyter also has a number of online communication channels to help keep in touch.
36+
37+
As you interact with others in the Jupyter ecosystem, remember that we have a strong
38+
commitment to being an **open, inclusive, and positive community**. Please read the
39+
[Jupyter Code of Conduct](https://github.com/jupyter/governance/blob/master/conduct/code_of_conduct.md) for guidance on how to interact with others in
40+
a way that makes the community thrive.
41+
42+
Below is a short list of gitter channels, email listservs, and github repositories
43+
where you can get involved. **We always welcome participation in the Jupyter community**.
44+
45+
{% include community_lists.html %}

css/cardlist.css

+8-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
/* cardlist used by documentation and try pages */
22

33
.cardlist {
4-
margin-bottom: 20px;
4+
margin: 10px auto 20px auto;
5+
max-width: 980px;
56
}
67

78
.cardlist-col {
@@ -18,15 +19,18 @@
1819
.card-heading {
1920
padding: 16px;
2021
/* color is on purpose not Jupyter Orange */
21-
background: #1976D2;
22+
background: #2e9be4;
2223
color: white;
23-
font-size: 14px;
2424
font-weight: normal;
2525
line-height: 14px;
2626
border-top-left-radius: 2px;
2727
border-top-right-radius: 2px;
2828
}
2929

30+
.card-heading h4 {
31+
font-size: 1.8em;
32+
}
33+
3034
.card-body {
3135
padding: 16px;
3236
border-bottom-left-radius: 2px;
@@ -41,7 +45,7 @@
4145
.card-body li {
4246
list-style: none;
4347
padding: 4px 0px 4px 0px;
44-
font-size: 14px;
48+
font-size: 1.3em;
4549
}
4650

4751

@@ -77,4 +81,3 @@ img.try-logo {
7781
object-fit: contain;
7882
margin: 12px auto;
7983
}
80-

css/logo-nav.css

+4
Original file line numberDiff line numberDiff line change
@@ -291,6 +291,10 @@ body {
291291
background-color: white;
292292
}
293293

294+
.header p {
295+
margin: 0 30%;
296+
}
297+
294298
/* Section elements */
295299
/* Section classes used for particular sections within a page. Sections should differ in background color when used next to each other */
296300
.section-white {

css/markdown_page.css

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,9 @@ div.page_content img {
66
}
77

88
div.page_content, div.post_content {
9-
margin: 0;
109
padding: 0;
10+
margin: 0px auto;
11+
max-width: 980px;
1112
}
1213

1314
div.page_content.container > p,

documentation.html

-5
This file was deleted.

documentation.md

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
layout: page_md
3+
title: Documentation
4+
tagline: A comprehensive list of links to each of the repositories for the Jupyter project.
5+
permalink: /documentation
6+
---
7+
8+
{% include documentation.html %}

0 commit comments

Comments
 (0)