Files
wiganhbc-competition/web/templates/generate.html
2019-07-05 22:49:48 +01:00

27 lines
1.2 KiB
HTML

{% extends "bootstrap/base.html" %}
{% block styles %}
{{super()}}
<link rel="stylesheet"
href="{{url_for('static', filename='mystyle.css')}}">
{% endblock %}
{% block title %}Wigan Homebrew Club Competition Entry{% endblock %}
{% block content %}
<div class="container">
<div class="jumbotron text-center" id="my-jumbotron">
<h2 class="my-title">Wigan Homebrew Club Competition Entry</h2>
</div>
<div class="row">
<div class="col-md-2"></div>
<div class="col-md-8 content-div">
<p>You have been entered into the competition to brew a <strong>{{ brew_name }}</strong>, which will be judged at the meeting in <strong>{{ brew_month }}</strong>.</p>
<p>To make sure your beer isn't easily identifiable, most people tend to use brown bottles of either 330ml or 500ml size. You probably don't want to put your own label on the bottle!</p>
<br/>
<div class="alert alert-success lead" role="alert"> <span class="glyphicon glyphicon-tags" aria-hidden="true"></span> &nbsp; &nbsp;Please mark all of your bottlecaps with the following identifier: <strong>{{ identifier }}</strong></div>
</div>
</div>
</div>
{% endblock %}