2
0
mirror of https://github.com/offen/website.git synced 2024-10-18 20:20:24 +02:00
website/homepage/theme/templates/getstarted.html

54 lines
2.0 KiB
HTML
Raw Normal View History

2020-01-31 21:58:30 +01:00
{% extends "page.html" %}
{% set is_getstarted = 'true' %}
{% block content %}
2020-04-27 15:45:47 +02:00
<div class="w-100 mt5-ns cclr-bg-white-dark">
<div class="mw7 center pt5 pb5 ph4 bg-white">
<div class="w-100 center tc">
<h2 class="f1-ns f2 normal ma0 mb4">
Get started
2020-03-17 06:38:49 +01:00
</h2>
2020-04-27 15:45:47 +02:00
<h3 class="f25 f2-ns normal ma0 mb5 mh6-ns">
Choose your favorite way to self host Offen.
</h3>
2020-03-17 06:38:49 +01:00
<div class="flex flex-column items-center">
2020-04-27 15:45:47 +02:00
<p class="lh-title ma0 mb2 gray">
2020-02-22 21:14:53 +01:00
Single binary file <br>for Linux, Windows or MacOS
2020-01-31 21:58:30 +01:00
</p>
2020-04-27 15:45:47 +02:00
<a class="w-100 w5-ns tc b link dim ph4 pv2 dib b--solid bw2 cclr-brd-black-mid mb5 white cclr-bg-black-mid" href="{{ RELEASE_DIRECT_URL }}" rel="noopener">Download</a>
<p class="lh-title ma0 mb2 gray">
Your own instance in Docker <br>development environment
</p>
<a class="w-100 w5-ns tc b link dim ph4 pv2 dib b--solid bw2 cclr-brd-black-mid mb5 white cclr-bg-black-mid" href="{{ DOCKER_DIRECT_URL }}" rel="noopener">Deploy with Docker</a>
<p class="lh-title ma0 mb2 gray">
Your own instance on Heroku
2020-02-22 21:14:53 +01:00
</p>
2020-04-27 15:45:47 +02:00
<a class="w-100 w5-ns tc b link dim ph4 pv2 dib b--solid bw2 cclr-brd-black-mid mb6 white cclr-bg-black-mid" href="{{ HEROKU_DIRECT_URL }}" rel="noopener">Deploy to Heroku</a>
2020-01-31 21:58:30 +01:00
</div>
2020-04-27 15:45:47 +02:00
<p class="tc ma0 mb4 mh5-ns gray">
Be aware that things can still contain issues and that the upgrade path may be broken with upcoming releases.
2020-03-17 06:38:49 +01:00
</p>
2020-04-27 15:45:47 +02:00
<hr class="ma0 mb5 b--black-05">
<h3 class="f25 normal ma0 mb5">
Read the docs.
</h3>
2020-03-17 06:38:49 +01:00
<div class="flex flex-column items-center">
2020-04-27 15:45:47 +02:00
<p class="lh-title ma0 mb2 gray">
Details on how to<br> install and run Offen
2020-01-31 21:58:30 +01:00
</p>
2020-04-27 15:45:47 +02:00
<a class="w-100 w5-ns tc b link dim ph4 pv2 dib b--solid bw2 cclr-brd-black-mid mb5 cclr-fnt-black-mid" href="https://docs.offen.dev/" rel="noopener" target="_blank">Open Docs</a>
2020-01-31 21:58:30 +01:00
</div>
</div>
</div>
{% endblock %}