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

{% block content %}

<div class="container has-text-centered">
	<div class="column is-6 is-offset-3">
		<h1 class="title">
			Welcome to Strengthy
		</h1>
		<h2 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.
		</h2>
	</div>
</div>

{% endblock %}