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

57 lines
1.8 KiB
HTML
Raw Normal View History

2020-04-27 16:47:24 +02:00
{% extends "page.html" %}
{% set funnel = 'true' %}
{% block content %}
<div class="w-100 mt5-ns cclr-bg-white-dark">
<div class="mw7 center pt5 pb5 ph4 bg-white">
<div class="w-100 center">
<h2 class="f1-ns f2 normal tc ma0 mb4">
Try demo
</h2>
<h3 class="f25 f2-ns normal tc ma0 mb5">
2020-04-27 21:51:46 +02:00
Test drive Offen on your system
2020-04-27 16:47:24 +02:00
</h3>
<p class="lh-title ma0 mb3 gray">
2020-04-27 21:51:46 +02:00
Open your terminal and type
2020-04-27 16:47:24 +02:00
</p>
<div class="flex flex-column items-center">
2020-06-08 23:07:08 +02:00
<div class="w-100 ph4 pv5 mb5 bg-light-gray">
<code class="ma0 lh-solid word-wrap js-click-to-copy pointer" data-clipboard-text="curl https://demo.offen.dev | bash" title="Click to copy">
2020-04-28 15:51:34 +02:00
curl https://demo.offen.dev | bash
2020-04-27 16:47:24 +02:00
</code>
</div>
</div>
<p class="lh-title ma0 mb3 gray">
2020-04-27 21:51:46 +02:00
With Docker use
2020-04-27 16:47:24 +02:00
</p>
<div class="flex flex-column items-center">
2020-06-08 23:07:08 +02:00
<div class="w-100 ph4 pv5 mb5 bg-light-gray">
<code class="ma0 lh-solid word-wrap js-click-to-copy pointer" data-clipboard-text="docker run --rm -it -p 9876:9876 offen/offen:latest demo -port 9876" title="Click to copy">
2020-04-27 16:47:24 +02:00
docker run --rm -it -p 9876:9876 offen/offen:latest demo -port 9876
</code>
</div>
</div>
<hr class="ma0 mb5 b--black-05">
<h3 class="f25 normal tc ma0 mb5">
2020-04-27 21:51:46 +02:00
Read the docs
2020-04-27 16:47:24 +02:00
</h3>
<div class="flex flex-column items-center">
<p class="lh-title tc ma0 mb2 gray">
Details on how to<br> install and run Offen
</p>
2020-04-29 10:46:22 +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="{{ DOCS_TRYDEMO_URL }}" rel="noopener" target="_blank">Open Docs</a>
2020-04-27 16:47:24 +02:00
</div>
</div>
</div>
</div>
2020-04-27 21:51:46 +02:00
2020-04-27 16:47:24 +02:00
{% endblock %}