diff --git a/djangoshaker/templates/djangoshaker/index.html b/djangoshaker/templates/djangoshaker/index.html new file mode 100644 --- /dev/null +++ b/djangoshaker/templates/djangoshaker/index.html @@ -0,0 +1,48 @@ +{% extends "djangoshaker/template.html" %} + +{% load djangoshaker_html_helpers %} + +{% block title %}Django Shaker{% endblock %} + +{% block header_title %}Django Shaker{% endblock %} + +{% block content %} + +{% if recipes_added %} +

Recently added recipes

+ +{% endif %} + +{% if recipes_modified %} +

Recently modified recipes

+ +{% endif %} + +{% if brands_added %} +

Recently added brands

+ +{% endif %} + +{% if brands_modified %} +

Recently modified brands

+ +{% endif %} + +{% endblock %} +