Files
courses/bsawf/07-blueprints-and-jinja-2-templates/snakeeyes/blueprints/page/templates/page/home.html
T
2025-05-20 11:57:43 -04:00

43 lines
1.4 KiB
HTML

{% extends 'layouts/base.html' %}
{% block title %}Test your luck against the roll of the dice{% endblock %}
{% block meta_description %}Compete against yourself and others by guessing the
outcome of a dice roll. Win points and dominate the leaderboard.{% endblock %}
{% block body %}
<div class="container sm-margin-top">
<div class="row text-center lg-margin-bottom">
<h1>Feeling lucky?</h1>
<h3 class="text-muted">
Test your luck against the roll of the dice and win today
</h3>
</div>
<div class="row text-center">
<div class="col-lg-4">
<i class="fa fa-fw fa-4x fa-bullhorn text-primary"></i>
<h2>Place bets</h2>
<p class="text-muted">Correctly guess the dice's roll.</p>
<p>
<a href="#" class="btn btn-default">Sign up</a>
</p>
</div>
<div class="col-lg-4">
<i class="fa fa-fw fa-4x fa-database text-primary"></i>
<h2>Win currency</h2>
<p class="text-muted">Gain coins if your guess is correct.</p>
<p>
<a href="#" class="btn btn-default">Sign up</a>
</p>
</div>
<div class="col-lg-4">
<i class="fa fa-fw fa-4x fa-trophy text-primary"></i>
<h2>Leaderboard</h2>
<p class="text-muted">Compare your results to others.</p>
<p>
<a href="#" class="btn btn-default">Sign up</a>
</p>
</div>
</div>
</div>
{% endblock %}