15 lines
370 B
HTML
15 lines
370 B
HTML
{% extends "templates/base.html" %}
|
|
{% block content %}
|
|
<div class="jumbotron">
|
|
<h1>Welcome to mw-ui</h1>
|
|
<p>Time to start building your site!</p>
|
|
<p><a class="btn btn-primary btn-lg" href="http://luminusweb.net">Learn more »</a></p>
|
|
</div>
|
|
|
|
<div class="row-fluid">
|
|
<div class="span8">
|
|
{{content|safe}}
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|