{% load static %} {% block meta-title %}{% block title %}{% endblock %} - No base template{% endblock %} {% block link %}{% endblock %} {% block script %}{% endblock %} {% block staff_toolbar %}{% endblock %}{# fix template extends of old project templates #}

No base template is set for django-fluent-blogs

To configure the blog base template, either:

The template needs to provide the following blocks:

contentThe block for the main content.
titleThe contents for the <title> tag.
linkThe placeholder for <link> tags for RSS feeds and CSS.
scriptThe placeholder for <script> tags.
meta-titleThe content for the <title> tag, completely overriding the default title.
meta-descriptionThe content for the <meta name="description"> tag.
meta-keywordsThe content for the <meta name="keywords"> tag.
og-typeThe content for the <meta property="og:type"> tag for Facebook (optional)
og-descriptionThe content for the <meta property="og:type"> tag for Facebook (optional)

The blog contents is displayed below:

{% block content %}{% endblock %}