8 lines
350 B
Plaintext
8 lines
350 B
Plaintext
{% load i18n %}{% autoescape off %}{% blocktrans with site_name=current_site.name %}Hello from {{ site_name }}!{% endblocktrans %}
|
|
|
|
{% block content %}{% endblock content %}
|
|
|
|
{% blocktrans with site_name=current_site.name site_domain=current_site.domain %}Thank you for using {{ site_name }}!
|
|
{{ site_domain }}{% endblocktrans %}
|
|
{% endautoescape %}
|