Good day! I am not a web programmer, but I needed to create a website in a short time. I used to have experience only with WordPress, but there I barely had to work with the design of the site - it was enough to install the template and fix something in the PHP code for my own needs. Now I decided to use Django, because have experience developing in python. However, I have little idea about the creation of a "skeleton" of pages and design for the site. What tools (related to Django or individual, like Twitter Bootstrap) should be used to create good html and css for the site pages?
1 answer
Django is designed to develop complex services from scratch. Perhaps for your task it is better to take some ready-made CMS based on it? (see options , for example)
- Perhaps, but first I want to try to write without using CMS. I wonder what tools are usually used in the design and markup. Those. Is it possible to manually write all html and css, or are there better ways (excluding ready-made templates)? - goudwine
- Take the same bootstrap - it almost does not communicate with Django. Except, perhaps, forms (django-crispy-forms work beautifully) - ravli
|