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

main.html 963 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
18
19
20
21
22
23
24
25
26
27
28
29
  1. <!-- Ultralytics 🚀 AGPL-3.0 License - https://ultralytics.com/license -->
  2. <!--Site announcement bar-->
  3. {% extends "base.html" %} {% block announce %}
  4. <div class="banner-wrapper">
  5. <div
  6. class="banner-content-wrapper"
  7. onclick="window.open('https://docs.ultralytics.com/models/yolo11/')"
  8. >
  9. <p>Introducing</p>
  10. <img
  11. src="https://assets-global.website-files.com/646dd1f1a3703e451ba81ecc/67d044caa316aa50fba40a08_Ultralytics_YOLO11_Logotype_Reverse.svg"
  12. loading="lazy"
  13. height="40"
  14. alt="Ultralytics YOLO11"
  15. />
  16. </div>
  17. </div>
  18. {% endblock %}
  19. <!--Page titles-->
  20. {% block htmltitle %} {% if page.toc|first is defined %} {% set
  21. page_specific_title = page.toc.items[0].title %} {% else %} {% set
  22. page_specific_title = page.title | striptags %} {% endif %}
  23. <title>
  24. {%- if page_specific_title -%} {{ page_specific_title }} - {{ config.site_name
  25. }} {%- else -%} {{ config.site_name }} {%- endif -%}
  26. </title>
  27. {% endblock %}
Tip!

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

Comments

Loading...