11 lines
212 B
HTML
11 lines
212 B
HTML
{% extends "base.html" %}
|
|
{% load staticfiles %}
|
|
|
|
{% block content %}
|
|
<div style="padding:2em">
|
|
<img src="{% static 'img/atlas.png' %}">
|
|
Your environment server is up and running!
|
|
</div>
|
|
{% endblock content %}
|
|
|