{% extends 'dashboard/base.html' %} {% block title %}{{ action }} Blog Post - Orbia CMS{% endblock %} {% block content %}
Back to Blog List

{{ action }} Blog Post

Modify post elements and configure SEO search rankings

{% csrf_token %} {% if form.non_field_errors %}
{{ form.non_field_errors }}
{% endif %}
Article Content
{{ form.title }} {% if form.title.errors %}
{{ form.title.errors }}
{% endif %}
{{ form.slug }}
Leave blank to auto-generate based on the title. E.g. "my-first-post"
{% if form.slug.errors %}
{{ form.slug.errors }}
{% endif %}
{{ form.excerpt }}
Write a short description to display on list pages. Max 500 characters.
{% if form.excerpt.errors %}
{{ form.excerpt.errors }}
{% endif %}
{{ form.content }} {% if form.content.errors %}
{{ form.content.errors }}
{% endif %}
{{ form.featured_image }} {% if post and post.featured_image %}
Current Image:
{% endif %} {% if form.featured_image.errors %}
{{ form.featured_image.errors }}
{% endif %}
{{ form.status }}
{{ form.is_featured }}
Check this to highlight the article on the homepage.
Search Engine Optimization (SEO)
{{ form.meta_title }}
Title shown in search results. Falls back to post title if left blank.
{% if form.meta_title.errors %}
{{ form.meta_title.errors }}
{% endif %}
{{ form.meta_description }}
Short summary shown in search snippets. Max 160 characters.
{% if form.meta_description.errors %}
{{ form.meta_description.errors }}
{% endif %}
{{ form.meta_keywords }}
Comma-separated keywords (e.g. SEO, AI Marketing, Google Overviews).
{% if form.meta_keywords.errors %}
{{ form.meta_keywords.errors }}
{% endif %}
Cancel
{% endblock %} {% block extra_js %} {% endblock %}