Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

layout.html 433 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
  1. {# Import the theme's layout. #}
  2. {% extends "!layout.html" %}
  3. {% block menu %}
  4. {{ super() }}
  5. {% if menu_links %}
  6. <p class="caption">
  7. <span class="caption-text">Getting help</span>
  8. </p>
  9. <ul>
  10. {% for text, link in menu_links %}
  11. <li class="toctree-l1"><a href="{{ link }}">{{ text }}</a></li>
  12. {% endfor %}
  13. </ul>
  14. {% endif %}
  15. {% endblock %}
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...