sitecore mvc tutorial creating your first sitecore mvc-website
copyright from: www.joe-stevens.com In my last post I wrote about setting up your Sitecore solution . I’m now going to extend that to creating your first Sitecore MVC website. This post will build upon the solution created in my other post using TDS and code generation. I’ll keep this post just to the basics of getting the site up an running and then will write further posts to cover the different areas of Sitecore MVC. For this post I’m just going to download a free HTML template and implement it with Sitecore. The template I’ve chosen is for a business website and can be downloaded here . First I’m going to take the css and images and add them to my solution. I’ve created a folder called ‘Assets’ and inside that two folders, ‘css’ and ‘img’ and copied the css and images from the downloaded template to these folders. After importing the assets I need to open style.css and do a bulk replace on ‘images/’ to ‘/assets/img/’ as that’s where I put the images for my solution. Next I...