{% extends "wedding/blocks/base.html" %} {% load easy_maps_tags %} {% load static %} {% block title %} {{gride.first_initial}}❤{{broom.first_initial}} {% endblock %} {% block style %} .main-jumbotron { {% if request.user_agent.is_mobile and landing_page.mobile %} background-image: url({% static landing_page.mobile.background_image %}); {% else %} background-image: url({% static landing_page.background_image %}); {% endif %} background-size: cover; background-position: top; /* Centers - top to avoid head chop-off */ height: 100vh; margin-bottom:-50px; color: {{ landing_page.info_color }}; } {% if request.user_agent.is_mobile %} {% if landing_page.mobile %} .jumbotron-info { margin-top: {{ landing_page.mobile.info_margin_top }}; } {% endif %} {% else %} .jumbotron-info { {% if landing_page.info_pos == "center" %} margin: 0 auto; {% elif landing_page.info_pos == "left" %} margin-right: 66.7%; {% elif landing_page.info_pos == "right" %} margin-left: 66.7%; {% endif %} margin-top: {{ landing_page.info_margin_top }}; } {% endif %} {% endblock %} {% block content %}

{{ gride.first_name }} {{ gride.last_name }}

{{ broom.first_name }} {{ broom.last_name }}

{{ ceremony.date|date:"m "}} · {{ ceremony.date|date:"d" }} · {{ ceremony.date|date:"y" }}
{{ ceremony.location.name }} - {{ ceremony.location.city }} - {{ ceremony.location.state }}

{% endblock %}