seitime-frappe/frappe/templates/autodoc/dev_home.html
Rushabh Mehta c519122929 [docs] Build docs in an app (#3796)
* [docs] to be rendered in website

* [docs] generating-docs.md

* [fix] codacy

* [docs] minor updates

* [fix] routing
2017-07-28 11:43:16 +05:30

49 lines
807 B
HTML

<!-- title: {{ app.title }}: Developer Docs -->
<!-- no-breadcrumbs -->
{% from "templates/autodoc/macros.html" import source_link, version %}
<div class="dev-header">
{{ version(app.name) }}
{{ source_link(app, app.name, True) }}
</div>
<table class="table table-bordered" style='max-width: 400px;'>
<tr>
<td style="width: 40%">
App Name
</td>
<td>
<code>{{ app.name }}</code>
</td>
</tr>
<tr>
<td>
Publisher
</td>
<td>
<code>{{ app.publisher }}</code>
</td>
</tr>
<tr>
<td>
Version
</td>
<td>
<code>{{ app.version }}</code>
</td>
</tr>
</table>
<h3>Contents</h3>
<ul>
<li>
<a href="/docs/current/models">Models (DocTypes)</a>
</li>
<li>
<a href="/docs/current/api">Server-side API</a>
</li>
</ul>
<!-- autodoc -->
<!-- jinja -->
<!-- static -->