mirror of https://gitee.com/bigwinds/arangodb
25 lines
581 B
HTML
Executable File
25 lines
581 B
HTML
Executable File
{% extends "layout.html" %}
|
|
|
|
{% block title %}{{ title }}{% endblock %}
|
|
|
|
{% block style %}
|
|
<link rel="stylesheet" href="{{ staticBase }}/style.css">
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="book-langs-index">
|
|
<div class="inner">
|
|
<h3>Choose a language</h3>
|
|
|
|
<ul class="languages">
|
|
{% for lang in langs %}
|
|
<li>
|
|
<a href="{{ basePath}}/{{ lang.path|pathJoin("/index.html") }}">{{ lang.title }}</a>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|
|
|
|
{% block javascript %}{% endblock %} |