Other known page types

Blog page

The django-fluent-blogs module provides a “Blog page” type, which can be used to include a “Blog” in the page tree.

To integrate it with this module, configure it using:

INSTALLED_APPS += (
    'fluent_blogs',
    'fluent_blogs.pagetypes.blogpage',
)

See the documentation of django-fluent-blogs for details.

FAQ page

The django-fluent-faq module provides a “FAQ page” type, which displays a list of FAQ questions and categories.

To integrate it with this module, configure it using:

INSTALLED_APPS += (
    'fluent_faq',
    'fluent_faq.pagetypes.faqpage',
)

See the documentation of django-fluent-faq for details.

Open ideas

Other page types can also be written, for example:

  • a “Portfolio” page type.
  • a “Split test” page type.
  • a “Flat page” with reStructuredText content.
  • a “Web shop” page type.
  • a “Subsite section” page type.

See the next chapter, Creating new page types to create such plugins.