Skip to content

Commit

Permalink
chore: update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
hanxiao committed Apr 8, 2022
1 parent c91fa4d commit fa42dc5
Showing 1 changed file with 46 additions and 23 deletions.
69 changes: 46 additions & 23 deletions docs/_templates/page.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{% extends "base.html" %}

{% block body -%}
{{ super() }}
{% include "partials/icons.html" %}

<input type="checkbox" class="sidebar-toggle" name="__navigation" id="__navigation">
Expand All @@ -13,15 +14,15 @@
</label>

{% if theme_announcement -%}
<div class="announcement" id="announcement">
<div class="announcement">
<aside class="announcement-content">
{% block announcement %} {{ theme_announcement }} {% endblock announcement %}
</aside>
</div>
{%- endif %}

<div class="page">
<header class="mobile-header" id="mobile-header">
<header class="mobile-header">
<div class="header-left">
<label class="nav-overlay-icon" for="__navigation">
<div class="visually-hidden">Toggle site navigation sidebar</div>
Expand All @@ -34,7 +35,7 @@
</div>
<div class="header-center">
<a href="{{ pathto(master_doc) }}">
<div class="brand">{{ docstitle }}</div>
<div class="brand">{{ docstitle if docstitle else project }}</div>
</a>
</div>
<div class="header-right">
Expand Down Expand Up @@ -62,7 +63,7 @@
</label>
</div>
</header>
<aside class="sidebar-drawer" id="sidebar-drawer">
<aside class="sidebar-drawer">
<div class="sidebar-container">
{% block left_sidebar %}
<div class="sidebar-sticky">
Expand All @@ -75,8 +76,32 @@
</aside>
<div class="main">
<div class="content">
<article role="main">
<div class="article-container">
<a href="#" class="back-to-top muted-link">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<path d="M13 20h-2V8l-5.5 5.5-1.42-1.42L12 4.16l7.92 7.92-1.42 1.42L13 8v12z"></path>
</svg>
<span>{% trans %}Back to top{% endtrans %}</span>
</a>
<div class="content-icon-container">
{#- Edit this page, on GitHub -#}
{%- if READTHEDOCS and conf_py_path and page_source_suffix and github_user != "None" and github_repo
!= "None" and github_version %}
<div class="edit-this-page">
<a class="muted-link"
href="https://github.com/{{ github_user }}/{{ github_repo }}/edit/{{ github_version }}{{ conf_py_path }}{{ pagename }}{{ page_source_suffix }}"
title="{{ _(" Edit this page") }}">
<svg aria-hidden="true" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" fill="none"
stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<path d="M4 20h4l10.5 -10.5a1.5 1.5 0 0 0 -4 -4l-10.5 10.5v4"/>
<line x1="13.5" y1="6.5" x2="17.5" y2="10.5"/>
</svg>
<span class="visually-hidden">{{ _("Edit this page") }}</span>
</a>
</div>
{% endif %}
{#- Theme toggle -#}
<div class="theme-toggle-container theme-toggle-content">
<button class="theme-toggle">
<div class="visually-hidden">Toggle Light / Dark / Auto color theme</div>
Expand All @@ -91,7 +116,7 @@
</svg>
</button>
</div>
<label class="toc-overlay-icon toc-content-icon"
<label class="toc-overlay-icon toc-content-icon{% if furo_hide_toc %} no-toc{% endif %}"
for="__toc">
<div class="visually-hidden">Toggle table of contents sidebar</div>
<i class="icon">
Expand All @@ -101,8 +126,10 @@
</i>
</label>
</div>
{% block content %}{{ body }}{% endblock %}
</article>
<article role="main">
{% block content %}{{ body }}{% endblock %}
</article>
</div>
<footer>
{% block footer %}
<div class="related-pages">
Expand Down Expand Up @@ -137,28 +164,26 @@
</a>
{%- endif %}
</div>

<div class="bottom-of-page">

<div class="left-details">
{%- if show_copyright %}
<div class="copyright">
{%- if hasdoc('copyright') %}
{% trans path=pathto('copyright'), copyright=copyright|e -%}
<a href="{{ path }}">Copyright &#169; {{ copyright }}.</a>
<a href="{{ path }}">Copyright</a> &#169; {{ copyright }}
{%- endtrans %}
{%- else %}
{% trans copyright=copyright|e -%}
<a href="https://jina.ai">Copyright &#169; {{ copyright }}</a>
Copyright &#169; {{ copyright }}
{%- endtrans %}
{%- endif %}
</div>
{%- endif %}
{%- if last_updated %}
{%- if last_updated -%}
<div class="last-updated">
{% trans last_updated=last_updated|e -%}
Last updated on {{ last_updated }}.
{%- endtrans %}
Last updated on {{ last_updated }}
{%- endtrans -%}
</div>
{%- endif %}
</div>
Expand All @@ -180,11 +205,10 @@
{% endblock footer %}
</footer>
</div>
<aside class="toc-drawer" id="toc-drawer">
<aside class="toc-drawer{% if furo_hide_toc %} no-toc{% endif %}">
{% block right_sidebar %}

{% if not furo_hide_toc %}
<div class="toc-sticky toc-scroll">
{% if not furo_hide_toc %}
<div class="toc-title-container">
<span class="toc-title">
{{ _("Contents") }}
Expand All @@ -195,13 +219,12 @@
{{ toc }}
</div>
</div>
{% endif %}
</div>

{% endif %}
{% endblock right_sidebar %}
</aside>

</div>
</div>
<img referrerpolicy="no-referrer-when-downgrade" src="https://static.scarf.sh/a.png?x-pxid=54c1ac2c-37ee-49bd-897e-45901a6847a6" />
{%- endblock %}
<img referrerpolicy="no-referrer-when-downgrade"
src="https://static.scarf.sh/a.png?x-pxid=2823e771-0e1e-4320-8fde-48bc48e53262"/>
{%- endblock %}

0 comments on commit fa42dc5

Please sign in to comment.