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
+7-13Lines changed: 7 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -33,7 +33,6 @@ Send a pull request adding a new file `_chapters/<your-chapter-name>.md`, where
33
33
separating words with underscore (e.g. `london_pyton_sprints`).
34
34
35
35
The content of the file should list:
36
-
- layout: default
37
36
- object_id: same as the name of the file, as described before (without the extension)
38
37
- title: name of your chapter (using normal text)
39
38
- website_link: link to your website
@@ -45,15 +44,10 @@ The content of the file should list:
45
44
How does Jekyll work?
46
45
---------------------
47
46
48
-
#### Create layouts (templates for django people) to generate your views
49
-
#### Create content files with yml variables(date) and html / plain text to feed into the layouts
50
-
#### Use scss (sass) or less to style (automatically preprocessed into css during build) - see _sass (partials)
51
-
#### Main content goes into _pages
52
-
#### Use Liquid templating language (similar to jinja2 / django templating languages) to create logic
53
-
#### includes are your friends - use them as modules, functions , snippets of html or whatever
54
-
#### time related files - _posts (see chapters_events), categories are automatically generated by jekyll using the parent folder name as the category name
55
-
#### subject related files - collections, have to add them in _config.yml for jekyll to see them properly (see _sponsors, _chapters)
56
-
#### Config in _config.yml
57
-
#### Static content - images, javascript, css in static folder.
58
-
59
-
#### When change pushed to master / origin - github pages rebuilds the site.
47
+
- Posts (files in `_posts/*.md`) are the event pages in markdown
48
+
- Projects (`_project/*.md`) are the open source projects we contribut to
49
+
- Sponsors (`_sponsors/*.md) are the companies providing the venue and pizzas
50
+
- Layouts (files in `_layouts/*.html`) are equivalent to Django templates,
51
+
and used to render the posts (events)
52
+
- CSS is managed with scss/sass and built by Jekyll
53
+
- GitHub pages automatically builds the site when the repository is updated
0 commit comments