You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+50-13Lines changed: 50 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -32,7 +32,7 @@ Send a pull request adding a new file `_chapters/<your-chapter-name>.md`, where
32
32
separating words with underscore (e.g. `london_pyton_sprints`).
33
33
34
34
The content of the file has a header section with some fields (started and finished with
35
-
---), and the main description of the chapter afterwards.
35
+
---), and the main description of the chapter afterwards.
36
36
We are using markdown files to store your data and they can contain either markdown tags for text formatting or pure html - it is up to you how to style your content.<br>
37
37
The image that will represent your chapter should be in jpeg format. The size the content is optimized for is: 1920 x 600 px.
38
38
Please name it <your_chapter_name_1920x600px.jpg>.
@@ -52,10 +52,10 @@ This is the format:
52
52
- <second-sponsor-id-to-be-listed-in-your-page>
53
53
- <feel-free-to-add-as-many-as-you-want>
54
54
---
55
-
55
+
56
56
Here you can add any information about your group. How it started, which are the goals,
57
57
what people can expect from it.
58
-
58
+
59
59
This is a good time to remind you, that no sort of discrimination (gender, religion,
60
60
age, sexual orientation...) is tolerated in the Python sprints (or in the Python
61
61
community in general). And as an organizer you must not allow any sort of harassment
@@ -110,13 +110,13 @@ The content of the file has a header section with some fields (started and finis
110
110
project: <id-of-the-project-you-will-work-on>
111
111
sponsor: <id-of-the-sponsor-for-the-event>
112
112
---
113
-
113
+
114
114
This space is the main description of the event, where you can provide further details.
115
-
116
-
Note that you don't need to add information about the project, as the description of the
115
+
116
+
Note that you don't need to add information about the project if it already exists in the `_projects` folder, as the description of the
117
117
project, the logo, and the environment set up instructions should be rendered automatically
118
-
after specifying the id of the project.
119
-
118
+
after specifying the id of the project. If the project has not been added yet, you will need to add it before calling it here. If the event is not related to a specific project, you can leave the `<id-of-the-project-you-will-work-on>` blank.
119
+
120
120
Also, by specifying the id of the sponsor, a box with its information will appear.
121
121
122
122
Example event setup
@@ -131,16 +131,16 @@ Example event setup
131
131
sponsor: harvey_nash
132
132
---
133
133
The content of your event's description goes below ---.
134
-
134
+
135
135
You may want to copy one of the last events in `_posts` to be used as reference.
136
136
137
137
How to add a sponsor
138
138
--------------------
139
-
If you need to add your local sponsor which is not already in the _sponsors folder you can do so easily.<br>
139
+
If you need to add your local sponsor which is not already in the `_sponsors` folder you can do so easily.<br>
140
140
To add a sponsor logo please copy it to the static/images/sponsors folder with a name matching the obj_id of your sponsor.
141
-
We use png files for our sponsors. The maximum size is: 258px x 82px so please scale them down to match one of those dimensions.
141
+
We use png files for our sponsors. The maximum size is: 258px x 82px so please scale them down to match one of those dimensions. The logo width is: 150px, if a logo having width smaller than that will be stretch to match the logo width.
142
142
143
-
Create an <name_of_your_sponsor>.md file using the format below:
143
+
Create a <name_of_your_sponsor>.md file using the format below:
144
144
145
145
---
146
146
obj_id: <unique_identifier_of_your_sponsor>
@@ -152,7 +152,7 @@ Create an <name_of_your_sponsor>.md file using the format below:
Here you can place a short description of your sponsor's business etc.
155
-
155
+
156
156
Example sponsor setup
157
157
---------------------
158
158
---
@@ -166,6 +166,43 @@ Example sponsor setup
166
166
---
167
167
QuantumBlack is an advanced analytics firm operating at the intersection of strategy, technology & design to improve performance outcomes for organisations. With roots in Formula One, we now work across sector with some of the world's leading organisations in advanced industries, healthcare and finance.
168
168
169
+
How to add a project
170
+
--------------------
171
+
If you the project that you are going to work on is not already in the `_projects` folder you can do add it easily.<br>
172
+
To add a project logo please copy it to the static/images/projects folder.
173
+
We use png files for projects.
174
+
175
+
Create a <name_of_your_project>.md file using the format below:
176
+
177
+
---
178
+
obj_id: <unique_identifier_of_your_project>
179
+
name: "name of your project"
180
+
logo: <relative path to your project logo>
181
+
website: <website link to your project>
182
+
setup_html: |
183
+
<p>
184
+
<!-- (link to) instruction of how to setup in html format -->
185
+
</p>
186
+
---
187
+
Here you can place a short description of your project.
Pandas is an open source, BSD-licensed library providing high-performance, easy-to-use data structures and data analysis tools for the Python programming language.
0 commit comments