20 lines
569 B
HTML
20 lines
569 B
HTML
{% extends 'homepage/base.html' %}
|
|
{% load static %}
|
|
|
|
{% block extra_header_block %}
|
|
<style>
|
|
.bg-logo {
|
|
background-image: url("{% static 'homepage/img/logo-with-coming-soon.svg' %}");
|
|
background-repeat: no-repeat;
|
|
background-position: center;
|
|
background-size: contain;
|
|
}
|
|
</style>
|
|
{% endblock %}
|
|
|
|
{% block main %}
|
|
<main class="d-flex flex-column h-100 mx-5">
|
|
<div class="d-flex row flex-grow-1 w-100 mt-5 mb-4 mx-auto bg-logo" style="max-width: 42rem"></div>
|
|
</main>
|
|
{% endblock %}
|