This repository contains the source code of https://mitoc.mit.edu.
All members of the MITOC community are welcome to suggest edits by opening pull requests!
If you'd like to change anything on the website, you can:
- Read the rest of this short document to figure out how things work
- Suggest a change on a file by clicking on the "Edit this file" button (see screenshot below). This will open a Pull Request (PR), which the webmasters will review. When the PR gets accepted and merged to the
master
version of the code, it will trigger an automatic deployment. - Don't hesitate to contact the MITOC webmasters ([email protected]) if you need any help!
The website is built using Jekyll, a static site generator.
The website content is located in the following directories:
_pages
for pagesimages
for images and picturesdocs
for other static files (e.g. PDF documents)_data
for structured data used by the website. This includes:- Menu items
- Club positions and officers
- Trip fees
- Gear rental prices and deposit
- Note that this file is not connected to the gear database, and that prices updates must separately be applied there.
The organization of the _pages
folder follows the URL schema: the source of the /activities/sea-kayak page is _pages/activities/sea-kayak.md
.
Page content is written in Markdown, the same markup language that we use for the MITOC Wiki.
On top of each page file, a "front matter" can also be found. It defines metadata about the page using the YAML format.
_data
files are also written in YAML.
HTML tags can be included in Markdown files, but that should be used with moderation, and only for things that cannot be done just with Markdown.
For instance, to color a word:
This <span style="color:red;">word</span> is red.
Or to apply an specific style to a block:
<div class="well" markdown="1">
#### Can I reserve gear ahead of time?
No. Aside from official MITOC-run trips, all gear is first come, first served.
</div>
Note the use of
markdown="1"
: this is necessary to render the Markdown located in the tag.
The styled class well
, as well are many others, are brought by Bootstrap 3.3.7. This library allows use to use predefined styles just by adding a class
attribute to a block.
Custom styled class can be defined in ./css/mitoc.css.
Tags starting by {{
or {%
are templating tags. They allow to put bits of HTML together, define reusables components, loop over data, etc.
If you're curious about that, please refer to:
- The Jekyll doc
- The
jekyll-jolt
plugin docs
All branches (draft versions of the website) are automatically deployed to preview changes. A branch named test
would be deployed on the domain https://test--mitoc.netlify.com/.
Branch deployment should not take more than 2 minutes.
If you want to develop locally and see your changes before committing them to Github, you will need to use Jekyll. This will involve installing Ruby
, Bundler
, Jekyll
, and the github-pages
gem and running a local web server. Github has some instructions.
If you don't want to deal with rvm
and the above local development setup, and you can use docker-compose
. Docker install here. The jekyll-serve
image is ~450MB; repo for that is here.
cd dir/of/this/repo/website
docker-compose up
Let the image pull, bundle
run, and then navigate to localhost:4000
to see a local copy of the site.