Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

C#

Balazs Peak
Balazs Peak
46,160 Points

I've forked the repo but the project is 100% complete. https://teamtreehouse.com/library/using-razor-for-view-layout

https://teamtreehouse.com/library/using-razor-for-view-layout

There is a repo to follow along with, but.............

When I go to do what is in the video, it's already done, even on a more sophisticated level, with technology that will be covered in the latter parts of the course probably.

Forking this repo is just for reference, and we should build our own from stratch for learning purposes, right?

2 Answers

James Churchill
STAFF
James Churchill
Treehouse Teacher

Balazs,

Just posting my reply to your email here so that others can see my answer :)

/////////////////////////////////////////

You can download the code for a specific video from the GitHub repo's "Releases" page:

https://github.com/treehouse-projects/aspnet-comic-book-gallery/releases

The number scheme of the releases are "v{stage #}.{video #}", so the release for stage 1 video 5 would be "v1.5".

You can also use the git checkout command to create a new branch based upon a specific release:

git checkout tags/v1.5 -b running-our-website

That would create a new branch named "running-our-website" based upon the "v1.5" release.

I hope that helps and thanks so much for being a student!

Thanks ~James