{% extends "base.html" %} {% load wagtailcore_tags wagtailimages_tags %} {% block body_class %}template-blogindexpage{% endblock %} {% block content %}

{{ page.title }}

{{ page.intro|richtext }}
{% for post in blogpages %} {% with post=post.specific %}
{% with post.main_image as main_image %} {% if main_image %} {% image main_image width-800 class="blog absolute inset-0 h-full w-full rounded-2xl bg-gray-50 object-cover" %}{% endif %} {% endwith %}
{% with tags=post.tags.all %} {% if tags %}

Tags

    {% for tag in tags %}
  • 🏷️ {{ tag }}
  • {% endfor %}
{% endif %} {% endwith %}

{{ post.title }}

{{ post.intro }}

{#
#} {#
#} {# #} {#
#} {#

#} {# #} {# #} {# Michael Foster#} {# #} {#

#} {#

Co-Founder / CTO

#} {#
#} {#
#} {#
#}
{% endwith %} {% endfor %}
{% endblock %}