tutorial01.rst 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. Your First CodeRed Website: Part 1
  2. ==================================
  3. After :doc:`install`, you are greeted with a bare-bones website.
  4. Let's start filling things out.
  5. For this tutorial, we will assume the name of your project is ``mysite``.
  6. Logging in
  7. ----------
  8. Navigate to http://localhost:8000/admin/ and log in with the username
  9. and password you created with the ``python manage.py createsuperuser`` command.
  10. After logging in, you will be taken to the admin dashboard, also known as the "Wagtail Admin".
  11. .. figure:: img/tutorial_admin.png
  12. :alt: The admin dashboard.
  13. The admin dashboard.
  14. Changing your site name
  15. -----------------------
  16. By default, the site name shows up in many different places, including page titles in the browser tab.
  17. To change the name, go to **Settings > Sites**, and click on the site that is there. Change the
  18. **Site name** setting and click "Save".
  19. .. note::
  20. There is also a ``WAGTAIL_SITE_NAME`` setting in the ``mysite/settings/base.py`` file. This is really
  21. only used for the login screen and on the main Wagtail Admin dashboard. The reason this setting exists
  22. is for use with multi-sites. For example, if you have a parent company that operates many separate
  23. brand websites within one CMS, then ``WAGTAIL_SITE_NAME`` would be the name of the parent company.
  24. For my website, I'm going to change **Settings > Sites > Site name** to "Contoso Building Solutions".
  25. .. figure:: img/tutorial_sitename.png
  26. :alt: Changing the site name.
  27. Changing the site name.
  28. And edit ``mysite/settings/base.py`` by changing ``WAGTAIL_SITE_NAME`` as so::
  29. WAGTAIL_SITE_NAME = 'Contoso Ltd.'
  30. Now the admin dashboard and login page show "Contoso Ltd.", and the Home page at http://localhost:8000/
  31. will show "Contoso Building Solutions".
  32. Adding your logo
  33. ----------------
  34. First, and most important, is the logo. Go to **Settings > Layout**. Here are the site-wide
  35. visual and design settings for your website. At the top are two settings for your logo and
  36. favicon. Both will be scaled to fit wherever they are used, but we recommend
  37. the following image parameters:
  38. * **Logo:** probably does not need to be any larger than 500x500 pixels, unless you plan to have
  39. a giant logo. Any image ratio is fine, logos come in all shapes and sizes. 😀
  40. * **Favicon:** does not need to be any larger than 200x200 pixels. A 1:1 (square) image ratio is
  41. best here - if the image is not square, it will be scaled to a square.
  42. .. note::
  43. We recommend PNG format at 300 DPI so that your logo will look sharp on high resolution
  44. mobile devices and retina displays. However, any image format will work.
  45. After uploading your logo and favicon, click "Save". You should now instantly see your logo
  46. applied in the dashboard. In a new tab, go to http://localhost:8000/ and you'll see that your
  47. logo and favicon show up everywhere on your site.
  48. .. figure:: img/tutorial_logo.png
  49. :alt: Adding the logo.
  50. Adding the logo.
  51. .. figure:: img/tutorial_logo_front.png
  52. :alt: The logo on our website.
  53. The logo on our website.
  54. Changing navbar and global site colors
  55. --------------------------------------
  56. The default style is a light-colored navbar and the standard Bootstrap colors.
  57. But if you have a white or light colored logo, you might prefer a dark navbar.
  58. To change the navbar color, go to **Settings > Layout** and alter the following settings:
  59. * **Navbar color scheme:** Dark
  60. * **Navbar CSS class:** ``bg-dark`` (or some other CSS class. See
  61. `Bootstrap color utilities <https://getbootstrap.com/docs/4.3/utilities/colors/#background-color>`_)
  62. Click "Save" and go to http://localhost:8000/ to see your new navbar. Great success! There are
  63. many other settings here for controlling the layout of the navbar. Play with them and pick
  64. what works best for you. Once again, most of these settings utilize default Bootstrap styles.
  65. .. figure:: img/tutorial_dark_navbar.png
  66. :alt: Our site with a dark navbar.
  67. Our site with a dark navbar.
  68. Beyond the navbar, you can swap out the entire Bootstrap CSS theme in use. We provide a few simple
  69. themes from `Bootswatch <https://bootswatch.com/>`_. Select an option from the **Theme variant**
  70. setting, click "Save", and view your site. Pick one that looks best to you. If you are going to be
  71. doing a lot of heavy CSS customization, you might want to stick with the default to ensure
  72. compatibility with the Bootstrap documentation.
  73. For my website, I'm going to change the navbar color scheme back to "Light", CSS class to ``bg-light``,
  74. and leave the theme variant at the default.