55 lines
1.3 KiB
HTML
55 lines
1.3 KiB
HTML
<!-- title: {{ app.title }}: Documentation -->
|
|
<!-- no-breadcrumbs -->
|
|
|
|
<div class="jumbotron">
|
|
<h1>{{ app.headline }}</h1>
|
|
<p>{{ app.sub_heading }}</p>
|
|
</div>
|
|
|
|
<div class="section" style="padding-top: 0px;">
|
|
<div class="fake-browser-frame">
|
|
<img class="img-responsive browser-image feature-image"
|
|
src="assets/img/home.png">
|
|
</div>
|
|
</div>
|
|
|
|
{% if app.long_description %}
|
|
<div class="section">
|
|
{{ app.long_description|markdown }}
|
|
</div>
|
|
{% endif %}
|
|
|
|
<div class="section text-center">
|
|
<a href="contents.html" class="btn btn-lg btn-primary">Table of Contents</a>
|
|
</div>
|
|
|
|
{% if not app.hide_install %}
|
|
<div class="section">
|
|
<h2>Install</h2>
|
|
|
|
<h4>From your site</h4>
|
|
|
|
<p>To install this app, login to your site and click on "Installer". Search for <b>{{ app.title }}</b> and click on "Install"</p>
|
|
|
|
<h4>Using Bench</h4>
|
|
|
|
<p>Go to your bench folder and setup the new app</p>
|
|
|
|
<pre><code class="sh">$ bench get-app {{app.name}} {{app.source_link}}
|
|
$ bench new-site testsite
|
|
$ bench --site testsite install-app {{app.name}}</code></pre>
|
|
|
|
<p>Login to your site to configure the app.</p>
|
|
|
|
<p><a href="install.html">Detailed Installation Steps</a></p>
|
|
</div>
|
|
|
|
<div class="section">
|
|
<h2>Author</h2>
|
|
|
|
<p>{{ app.publisher }} ({{ app.email }})</p>
|
|
</div>
|
|
{% endif %}
|
|
|
|
<!-- autodoc -->
|
|
<!-- jinja -->
|