27 lines
		
	
	
		
			1018 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			1018 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends "basic/layout.html" %}
 | 
						|
 | 
						|
{% 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>
 | 
						|
                  <li>Try the <a href="faq.html">FAQ</a>.</li>
 | 
						|
                  <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 %}
 | 
						|
 |