30 lines
963 B
HTML
30 lines
963 B
HTML
<!-- Ultralytics 🚀 AGPL-3.0 License - https://ultralytics.com/license -->
|
|
|
|
<!--Site announcement bar-->
|
|
{% extends "base.html" %} {% block announce %}
|
|
<div class="banner-wrapper">
|
|
<div
|
|
class="banner-content-wrapper"
|
|
onclick="window.open('https://docs.ultralytics.com/models/yolo11/')"
|
|
>
|
|
<p>Introducing</p>
|
|
<img
|
|
src="https://assets-global.website-files.com/646dd1f1a3703e451ba81ecc/67d044caa316aa50fba40a08_Ultralytics_YOLO11_Logotype_Reverse.svg"
|
|
loading="lazy"
|
|
height="40"
|
|
alt="Ultralytics YOLO11"
|
|
/>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|
|
|
|
<!--Page titles-->
|
|
{% block htmltitle %} {% if page.toc|first is defined %} {% set
|
|
page_specific_title = page.toc.items[0].title %} {% else %} {% set
|
|
page_specific_title = page.title | striptags %} {% endif %}
|
|
<title>
|
|
{%- if page_specific_title -%} {{ page_specific_title }} - {{ config.site_name
|
|
}} {%- else -%} {{ config.site_name }} {%- endif -%}
|
|
</title>
|
|
{% endblock %}
|