-
Notifications
You must be signed in to change notification settings - Fork 14
Closed
Labels
Description
- Practice terminal commands:
- Try Github
- CodeSchool: Git Real
- Everyday Git
- Treehouse: Console Foundations
- Extra Credit: Treehouse: Technology Foundations (How the internet works, 101).
- Make a list of the terminal commands that we have covered...
- Follow the instructions in TheIronYard--Orlando/FEE--2014--FALL#63
- Collaborate!
- Trick out your Github pages with a Jekyll theme...
- Make sure you have merged all your feature branches with Pull Requests first!
- Create a new branch for this work based on
master- Check out the
masterbranch again and usegit pullto get your work from Github. - Create a new branch named
feature/jekyll-theme. - Check out the new
feature/jekyll-themebranch.
- Check out the
- Convert
index.htmlinto a simple Jekyll template...- Create an
index.mdfile in the project root. - Take everything from the middle of
index.html, rewrite in Markdown, put intoindex.md - Create a folder in project root called
_layouts. - Move the
index.htmlfile into_layouts/default.html. - Try to rebuild your site with
jekyll build; what happens? Comment on this... - Replace the "middle" of
index.htmlwith{{content}} - Build your site with
jekyll build; what happens? Comment on this...
- Create an
- Push to Github; open a PR; link your PR to your issue.
- Edit your
index.mdfile to link your posts using Markdown (and server-relative URLs). - Commit and push these changes to Github; what happens to your PR? Comment on this...
- Write a post about today in your Github Pages blog...
- Add a new file to your
_postsdirectory in C9, write stuff! - Rebuild your site with Jekyll and check out the awesome via C9!
- Push your post to Github and check it out on your website!
- Add a link to your blog post into your issue!
- Add a link to your blog post to your
index.mdfile! - Push to Github!
- Add a new file to your
Reactions are currently unavailable