mirror of
https://github.com/opencv/opencv.git
synced 2024-11-29 05:29:54 +08:00
36 lines
1.5 KiB
HTML
36 lines
1.5 KiB
HTML
{% extends "basic/layout.html" %}
|
|
|
|
{% set script_files = script_files + [pathto("_static/insertIframe.js", 1)] %}
|
|
|
|
{% block document %}
|
|
<div class="documentwrapper">
|
|
{%- if not embedded %}{% if not theme_nosidebar|tobool %}
|
|
<div class="bodywrapper">
|
|
{%- endif %}{% endif %}
|
|
<div class="body">
|
|
{% block body %} {% endblock %}
|
|
</div>
|
|
<div class="feedback">
|
|
<h2>Help and Feedback</h2>
|
|
You did not find what you were looking for?
|
|
<ul>
|
|
{% if theme_lang == 'c' %}
|
|
{% endif %}
|
|
{% if theme_lang == 'cpp' %}
|
|
<li>Try the <a href="http://opencv.willowgarage.com/wiki/Welcome?action=AttachFile&do=get&target=opencv_cheatsheet.pdf">Cheatsheet</a>.</li>
|
|
{% endif %}
|
|
{% if theme_lang == 'py' %}
|
|
<li>Try the <a href="cookbook.html">Cookbook</a>.</li>
|
|
{% endif %}
|
|
<li>Ask a question in the <a href="http://tech.groups.yahoo.com/group/OpenCV/">user group/mailing list</a>.</li>
|
|
<li>If you think something is missing or wrong in the documentation,
|
|
please file a <a href="https://code.ros.org/trac/opencv/wiki">bug report</a>.</li>
|
|
</ul>
|
|
</div>
|
|
{%- if not embedded %}{% if not theme_nosidebar|tobool %}
|
|
</div>
|
|
{%- endif %}{% endif %}
|
|
</div>
|
|
{% endblock %}
|
|
|