{% extends "base.html" %} {% load static %} {% block title %}Cipher Shield{% endblock %} {% block head %} {{ block.super }} {% endblock %} {% block content %}

Cipher Shield

The future of secure social networking.

{% csrf_token %} {{ form.as_p }}
{% for post in posts %}
{{ post.author.username.0|upper }}

{{ post.author.username }}

{{ post.created_at|date:"F d, Y, P" }}

{{ post.content }}

{% empty %}

No posts yet. Be the first to share something!

{% endfor %}
{% endblock %}