28 lines
863 B
HTML
28 lines
863 B
HTML
{% extends "base/base.html" %}
|
|
|
|
{% block page-body %}
|
|
<div class="container">
|
|
<div class="jumbotron">
|
|
<h1>Hello,</h1>
|
|
<p>
|
|
my name is {{ hostname|capfirst }} and I am your server right now.
|
|
</p>
|
|
<p>
|
|
Did I say now?<br />
|
|
My clock says {{ time|time:'TIME_FORMAT'|default:'nothing' }},
|
|
{% if time %}
|
|
and we are talking about the {{ time|time:'e' }} timezone.
|
|
{% else %}
|
|
and this is no good.
|
|
{% endif %}
|
|
</p>
|
|
<p>
|
|
{% with color_hex=color_hex|default:'47825b' %}
|
|
By the way, this is my favorite color:
|
|
<span class="badge" style="background-color: #{{ color_hex }};"> #{{ color_hex }} </span>
|
|
{% endwith %}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
{% endblock page-body %}
|