Files
dog_training/templates/pages/blog/_newsletter_success.html

26 lines
926 B
HTML

{% extends 'layouts/layout.html' %}
{% block page_head %}
<link rel="stylesheet" href="{{ url_for('static', filename='dist/css/core_contact.bundle.css') }}">
<!-- <link rel="stylesheet" href="{{ url_for('static', filename='dist/css/blog_newsletter_success.bundle.css') }}"> -->
{% include 'layouts/_shared_project_hub_scripts.html' %}
{% endblock %}
{% block page_nav_links %}
{% endblock %}
{% block page_body %}
{% set form = model.form_contact %}
<section class="contact-section">
<div class="contact-form">
<h1>Message Received</h1>
<p>Thanks for subscribing to our newsletter!</p>
<a href="{{ model.HASH_PAGE_BLOG_HOME }}" class="{{ model.FLAG_NAV_BLOG_HOME }} {{ model.FLAG_BUTTON }} {{ model.FLAG_BUTTON_PRIMARY }}"
style="margin: 0 auto;">Return To Blog</a>
</div>
</section>
<script>
</script>
{% endblock %}