Files @ 6531b0e781d4
Branch filter:

Location: copyleftconf-website-fork/pinaxcon/templates/static_pages/terms_and_conditions.html

Brett Smith
proposals.forms: Link to one consistent Markdown cheat sheet.

I like this one best because it's most brief, visual, and clearly under a
free license (CC BY-SA 4.0).
{% 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 %}