{% extends 'core/base.html' %} {% block title %}Home - Django Demo Project{% endblock %} {% block content %}

Django Demo Project

A production-ready Django application template optimized for VPS hosting deployment.

Get Started

Features

Production Ready

Configured with environment variables, security settings, and optimized for deployment.

Database Flexible

Works with SQLite for development and PostgreSQL for production.

VPS Optimized

Includes deployment scripts and configuration for easy VPS hosting.

Minimal Dependencies

Clean, lightweight setup with only essential packages.

Recent Blog Posts

{% if blog_posts %} {% for post in blog_posts %}
{{ post.title }}

{{ post.content|truncatewords:20 }}

{{ post.created_at|date:"M d, Y" }}
{% endfor %} View All Posts {% else %}

No blog posts yet. Check back later!

{% endif %}
{% endblock %}