Feat(UI): Blog with article page and Newsletter signup form.

This commit is contained in:
2025-08-09 19:07:58 +01:00
parent 2541aaf849
commit 36d9eb6888
51 changed files with 3434 additions and 892 deletions

View File

@@ -0,0 +1,26 @@
{% 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 %}