{% extends "page.html" %} {% block content %}
{% if page.image %} {{ page.title|striptags }} {% endif %}

{{ page.title }}

{% import 'includes/translations.html' as translations with context %} {{ translations.translations_for(page) }} {% if PDF_PROCESSOR %} get the pdf {% endif %}
{% if page.summary %}
{{ page.summary }}
{% endif %}
{{ page.price_title }}
{% if page.electricity %} {{ page.price }} ¢/kWh {% elif page.natural_gas %} ${{ page.price }}/GJ {% else %} {{ page.price }}{{ page.price_period | default("/month") }} {% endif %} {% if page.floating_price %}
+ wholesale {% endif %}
    {% if page.term %}
  • Rate good for {{ page.term }} year term
  • {% else %}
  • Continious rate
  • {% endif %} {% if page.admin_fee %}
  • Admin fee of ${{ page.admin_fee }}/month
  • {% else %}
  • No Administration fee
  • {% endif %} {% if page.site_fee %}
  • Site fee of ${{ page.site_fee }}/day
  • {% else %}
  • No Site fee
  • {% endif %} {% if page.exit_fee %}
  • Early exit fee of ${{ page.exit_fee }}
  • {% else %}
  • No Early exit fee
  • {% endif %}
{% if page.content %}
{{ page.content }}
{% endif %}
{% endblock %}