Made with Django(supports 4.2.7), Tinymce & Bulma
Font: Red Hat Mono SemiBold 600
Back-end was made by Django. JS wasn't used (only Tinymce JavaScript).
Important
-
Create virtual enviroment using
python -m venv /path/to/new/virtual/environment
. -
Install django with
python -m pip install Django
and django-tinymcepip install django-tinymce
-
For loading images install Pillow with
pip install pillow
-
Run
python manage.py makemigrations
followed bypython manage.py migrate
to create and apply the migrations to the database. -
Use
python manage.py createsuperuser
to create a superuser account. This account will have access to the Django admin interface. -
Start your Django development server using
python manage.py runserver
and navigate to admin page in your browser. Log in using the superuser credentials created earlier.
HTML placed in templates/blog.
CSS placed in myblog/static/css.