mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-08-25 00:33:58 -04:00
@@ -278,6 +278,13 @@ def guidance_index():
|
|||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
@main.route("/contact")
|
||||||
|
def contact():
|
||||||
|
return render_template(
|
||||||
|
"views/contact.html",
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
@main.route("/about")
|
@main.route("/about")
|
||||||
def about_notify():
|
def about_notify():
|
||||||
return render_template(
|
return render_template(
|
||||||
|
|||||||
@@ -114,4 +114,8 @@ def about_notify_nav():
|
|||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Contact",
|
||||||
|
"link": "main.contact",
|
||||||
|
},
|
||||||
]
|
]
|
||||||
|
|||||||
25
app/templates/views/contact.html
Normal file
25
app/templates/views/contact.html
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
{% extends "base.html" %}
|
||||||
|
|
||||||
|
{% set page_title = "Contact" %}
|
||||||
|
|
||||||
|
{% block per_page_title %}{{page_title}}{% endblock %}
|
||||||
|
|
||||||
|
{% block content_column_content %}
|
||||||
|
<section class="usa-prose">
|
||||||
|
<h1>{{page_title}}</h1>
|
||||||
|
<p>Is your organization interested in using Notify.gov? Find more information at <a href="/join-notify">Join
|
||||||
|
Notify</a> or contact us at <a href="mailto:tts-notify@gsa.gov"
|
||||||
|
aria-label="contact us at tts-notify@gsa.gov">tts-notify@gsa.gov</a>.</p>
|
||||||
|
<p>You can expect a response within one business day.</p>
|
||||||
|
<div class="usa-summary-box maxw-tablet __web-inspector-hide-shortcut__" role="region"
|
||||||
|
aria-label="For partnership inquiries">
|
||||||
|
<div class="usa-summary-box__body">
|
||||||
|
<div class="usa-summary-box__text">
|
||||||
|
<p>If you are a current Notify.gov partner and have technical issues or questions, we are available at <a
|
||||||
|
href="mailto:notify-support@gsa.gov"
|
||||||
|
aria-label="Email Notify for technical questions at notify-support@gsa.gov">notify-support@gsa.gov</a></p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
{% endblock %}
|
||||||
@@ -62,6 +62,7 @@ EXCLUDED_ENDPOINTS = tuple(
|
|||||||
"conversation_reply",
|
"conversation_reply",
|
||||||
"conversation_reply_with_template",
|
"conversation_reply_with_template",
|
||||||
"conversation_updates",
|
"conversation_updates",
|
||||||
|
"contact",
|
||||||
"copy_template",
|
"copy_template",
|
||||||
"count_content_length",
|
"count_content_length",
|
||||||
"create_and_send_messages",
|
"create_and_send_messages",
|
||||||
|
|||||||
Reference in New Issue
Block a user