1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | {% set intro = g.site_intro_text %}
<div class="module-content box">
<header>
{% if intro %}
{{ h.render_markdown(intro) }}
{% else %}
<h1 class="page-heading">{{ _("Welcome to CKAN") }}</h1>
<p>
{% trans %}This is a nice introductory paragraph about CKAN or the site
in general. We don't have any copy to go here yet but soon we will
{% endtrans %}
</p>
{% endif %}
</header>
</div>
|