Skip to content
This repository has been archived by the owner on Mar 15, 2022. It is now read-only.

Latest commit

 

History

History
35 lines (24 loc) · 1.46 KB

readme.md

File metadata and controls

35 lines (24 loc) · 1.46 KB

Turing School of Software and Design

Site for the Back End Engineering Program

This site is built with Jekyll. Find the docs here

Contributing

  • Clone the repo git clone [email protected]:turingschool/backend-curriculum-site.git

  • run bundle install

  • You can now begin to edit the website.

  • To start the server run jekyll serve.

  • Navigate to localhost:4000 to see the site

  • make changes on the gh-pages branch.

  • you can push changes to production by pushing the gh-pages branch to github. git push origin gh-pages.

  • The changes may take a minute or two to be recognized on production. Please make sure you review your changes on production.

Structure of the site and where to find the most important things:

You will find a module specific directory. eg module1 and within each directory you will find a directory for lessons and projects. All files within this site can be written as either markdown or html. To link to each you just need to write the relative path to each file without the file extension. For example lessons/lesson_on_stuff.

Additionally each new file will need a header:

---
title: Name of lesson
subheading: lesson is about stuff
layout: page
---

The navigation.html file is where you will find the sidebar for the site.

The today.html file is where you will find the basic html page for today, and each file for the specific day will live within the today directory.