Videos
I was watching a tutorial on how to make a website using Django for front end. (I am currently learning web development through the Odin Project but I might enroll into a bootcamp that teaches full stack dev using python thats why I am seeing some python tutorials)
In the Tutorial, the instructor took a template from start Bootstrap. I didn't complete the tutorial. But is that something that developers do. is copying templates a thing...?
another question, can django be used for front end, coz I don't understand, would it be compiled to JS. if any of you have experience with using python in full stack just explain to me, by python full stack does that mean python on the backend, or can it "in some magical way" be used in front end as well.
Edit: I read more about Django and I now Understand that it is basically a web dev framework for python that enables building websites. Still need some clarification on this.
If someone didn't learn JavaScript, HTML, or CSS would he be able to build website using python..?
Is it a good practice to learn django before fully mastering web development using JavaScript..?
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
Steps for project creation:
Create new empty MVC project.
Add one controller in the Controllers folder and create one "ActionResult" as Index.
Right click on Index " ActionResult ", create a view and page Index content of Agency bootstrap template.
Add one folder on solution named as Content and put all required resources file such as css, js, image etc.
Change file directory path in index page and “Routeconfig” file. Save all files and run the project.
Sample file structure: