{# app/templates/platform/content-page.html #} {# Generic template for platform content pages (About, FAQ, Terms, Contact, etc.) #} {% extends "platform/base.html" %} {% block title %}{{ page.title }} - Marketplace{% endblock %} {% block meta_description %} {% if page.meta_description %} {{ page.meta_description }} {% else %} {{ page.title }} - Multi-Vendor Marketplace Platform {% endif %} {% endblock %} {% block meta_keywords %} {% if page.meta_keywords %} {{ page.meta_keywords }} {% else %} {{ page.title }}, marketplace, platform {% endif %} {% endblock %} {% block content %}
{# Breadcrumbs #} {# Page Header #}

{{ page.title }}

{# Published date (if available) #} {% if page.published_at %}
Published {{ page.published_at.strftime('%B %d, %Y') }}
{% endif %}
{# Page Content #}
{% if page.content_format == 'markdown' %} {# Future enhancement: Render with markdown library #}
{{ page.content | safe }}
{% else %} {# HTML content (default) #} {{ page.content | safe }} {% endif %}
{# Last updated timestamp #} {% if page.updated_at %}

Last updated: {{ page.updated_at.strftime('%B %d, %Y') }}

{% endif %} {# Call-to-action section (for specific pages) #} {% if page.slug in ['about', 'contact'] %}

{% if page.slug == 'about' %} Ready to Get Started? {% elif page.slug == 'contact' %} Have Questions? {% endif %}

{% if page.slug == 'about' %} Join thousands of vendors already selling on our platform {% elif page.slug == 'contact' %} Our team is here to help you succeed {% endif %}

{% if page.slug == 'about' %} Contact Sales {% elif page.slug == 'contact' %} Send Us a Message {% endif %}
{% endif %}
{# Additional styling for prose content #} {% endblock %}