summaryrefslogtreecommitdiff
path: root/app/templates/index.html
blob: e3bf9788b1b6444d59128a7811af81fdda66d2b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{% extends 'base/layout.html' %}

{% block content %}

<section class="hero is-info is-fullheight-with-navbar gym-background">
	<div class="hero-body">
		<div class="container has-text-centered">
			<div class="column is-6 is-offset-3">
				<h1 class="title">
					Welcome to Strengthy
				</h1>
				<h1 class="subtitle">
					Strenghty is an open source fitness tracking application that
					helps users meet their fitness goals. To get started,
					<a href="/register">Sign Up</a> to create an account.
				</h1>
			</div>
		</div>
	</div>

</section>

{% endblock %}