-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
33e0894
commit e090b6d
Showing
3 changed files
with
60 additions
and
5 deletions.
There are no files selected for viewing
32 changes: 32 additions & 0 deletions
32
src/ckanext-agra-theme/ckanext/agra_theme/templates/contact/form.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
{% extends "page.html" %} | ||
|
||
{% block breadcrumb_content %} | ||
<li class="active">{% link_for _('Contact'), 'home.index' %}</li> | ||
{% endblock %} | ||
|
||
{% block primary_content %} | ||
<article class="module"> | ||
<div class="module-content"> | ||
<h1 class="page-heading">{{ _('Contact us') }}</h1> | ||
|
||
{% block contact_form_content %} | ||
{% include "contact/snippets/form.html" %} | ||
{% endblock %} | ||
|
||
</div> | ||
</article> | ||
{% endblock %} | ||
|
||
{% block secondary_content %} | ||
<div class="module module-narrow module-shallow"> | ||
<h2 class="module-heading"> | ||
<i class="fa fa-envelope inline-icon-left"></i> | ||
{{ _('Contact') }} | ||
</h2> | ||
<div class="module-content"> | ||
<p> | ||
Questions? Comments? We are always glad to hear from you! | ||
</p> | ||
</div> | ||
</div> | ||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
28 changes: 28 additions & 0 deletions
28
src/ckanext-agra-theme/ckanext/agra_theme/templates/contact/success.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
{% extends "page.html" %} | ||
|
||
{% block breadcrumb_content %} | ||
<li class="active">{% link_for _('Contact'), 'home.index' %}</li> | ||
{% endblock %} | ||
|
||
{% block primary_content %} | ||
<article class="module"> | ||
<div class="module-content"> | ||
<h1 class="page-heading">Thank you!</h1> | ||
<p>Your comment has been sent and we will answer you as soon as possible.</p> | ||
</div> | ||
</article> | ||
{% endblock %} | ||
|
||
{% block secondary_content %} | ||
<div class="module module-narrow module-shallow"> | ||
<h2 class="module-heading"> | ||
<i class="fa fa-envelope inline-icon-left"></i> | ||
{{ _('Contact') }} | ||
</h2> | ||
<div class="module-content"> | ||
<p> | ||
Questions? Comments? We are always glad to hear from you! | ||
</p> | ||
</div> | ||
</div> | ||
{% endblock %} |