13 lines
336 B
HTML
13 lines
336 B
HTML
|
{% extends "layouts/default.html" %}
|
||
|
{% block title %}{_ "Index" _}{% endblock %}
|
||
|
{% block content %}
|
||
|
<div class="container">
|
||
|
<div class="content">
|
||
|
<h1 class="title">{_ "Welcome to cl-deck-builder2!" _}</h1>
|
||
|
<p class="subtitle">
|
||
|
{_ "Click the links at the top to get started." _}
|
||
|
</p>
|
||
|
</div>
|
||
|
</div>
|
||
|
{% endblock %}
|