freechat/server/templates/index.tera

30 lines
1.1 KiB
Plaintext

{% set stylesheet = "/static/css/index.css" %}
{% include 'header' %}
<body>
{% include "navbar" %}
<div class="splash-container">
<div class="splash">
<h1 class="splash-head">{{brand_url}}</h1>
<p class="splash-subhead">{{brand_motto}}</p>
<p><button class="btn btn-light" type="button">Join Now</button></p>
</div>
</div>
<div class="content-wrapper">
<div class="content">
<h2 class="content-head is-center">A chat platform that respects your privacy and freedom</h2>
<div class="pure-g">
<div class="l-box pure-u-1 pure-u-md-1-2 pure-u-lg-1-2">
<h3 class="content-subhead"><i class="fas fa-dollar-sign"></i>How much?</h3>
<p>Nothing. It's free to run your own instance</p>
</div>
<div class="l-box pure-u-1 pure-u-md-1-2 pure-u-lg-1-2">
<h3 class="content-subhead"><i class="fa fa-wrench"></i>Is it hard to setup?</h3>
<p>Not at all, you can easily spin up an instance using the guide here.</p>
</div>
</div>
</div>
</div>
</body>
{% include "footer" %}