0

I would like to add the Agency Template from start bootstrap to my mvc web application. How do I copy these files and implement them?

https://startbootstrap.com/template-overviews/agency/

3
  • Try create a new project and put in resources of that project the template folder Commented Jul 19, 2017 at 9:18
  • Did you check the Getting Started section of the github repo? github.com/BlackrockDigital/startbootstrap-agency Commented Jul 19, 2017 at 9:53
  • Yes, I have looked at these. I have downloaded the latest version. I would like assistance on how to implement this in my mvc application. Commented Jul 19, 2017 at 10:09

2 Answers 2

1

To do this first you need to copy all the resource file into your project than open the index.html page and sort out the common layout like headder part, nevigation menu part, footer part and so on this code will be places in _Layout.cshtml and the middle part of the index.html page will place in Home/index.cshtml and the rest of the page will process through under several controller. Hope this will help.

This link may also help ASP .Net MVC Web Application integrating bootstrap templates

Sign up to request clarification or add additional context in comments.

Comments

1

Steps for project creation:

  1. Create new empty MVC project.

  2. Add one controller in the Controllers folder and create one "ActionResult" as Index.

  3. Right click on Index " ActionResult ", create a view and page Index content of Agency bootstrap template.

  4. Add one folder on solution named as Content and put all required resources file such as css, js, image etc.

  5. Change file directory path in index page and “Routeconfig” file. Save all files and run the project.

Sample file structure:

1 Comment

Thank you, will keep this in mind when using an empty mvc application.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.