diff --git a/pinaxcon/templates/static_pages/terms_and_conditions.html b/pinaxcon/templates/static_pages/terms_and_conditions.html new file mode 100644 index 0000000000000000000000000000000000000000..6bc5cd63cee0b4f0269b2ecdbe350854c99c6889 --- /dev/null +++ b/pinaxcon/templates/static_pages/terms_and_conditions.html @@ -0,0 +1,18 @@ +{% extends "page_with_title_and_lede.html" %} + +{% load i18n %} +{% load markdown_deux_tags %} + +{% block head_title %}Terms and Conditions{% endblock %} + +{% block heading %}Terms and Conditions{% endblock %} + +{% block body_class %}terms-and-conditions{% endblock %} + +{% block content %} + {% markdown %} + +{% include "static_pages/terms_and_conditions.md" %} + + {% endmarkdown %} +{% endblock %}