From 800f02f7f6120468e5a1ec8f25f74b8175c777f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrick=20Jos=C3=A9=20Pereira?= Date: Fri, 29 Mar 2024 15:00:36 -0300 Subject: [PATCH 1/2] templates: base: Add version to include verification MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Patrick José Pereira --- templates/base.html | 48 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 templates/base.html diff --git a/templates/base.html b/templates/base.html new file mode 100644 index 0000000..56fb3d2 --- /dev/null +++ b/templates/base.html @@ -0,0 +1,48 @@ +{%- import 'macros/head.html' as macros_head -%} +{% import 'macros/math.html' as macros_math -%} +{% import 'macros/header.html' as macros_header -%} +{% import 'macros/footer.html' as macros_footer -%} +{% import 'macros/javascript.html' as macros_js -%} +{% import 'macros/page-publish-metadata.html' as macros_publish -%} +{% import 'macros/section-navigation.html' as macros_section_nav -%} +{% import 'macros/docs-sidebar.html' as macros_sidebar -%} +{% import 'macros/docs-edit-page.html' as macros_edit_page -%} +{% import 'macros/docs-navigation.html' as macros_navigation -%} +{% import 'macros/docs-toc.html' as macros_toc -%} + + + + + + + + +{{ macros_head::resource() }} +{{ macros_head::stylesheet() }} + +{% block seo %} + {% if config.extra.title_separator %} + {% set title_separator = " " ~ config.extra.title_separator ~ " " %} + {% else %} + {% set title_separator = " | " %} + {% endif %} +{% endblock seo %} + +{{ macros_head::favicons() }} +{% block math %}{{ macros_math::math() }}{% endblock math %} + +{% block body %}{% set page_class="home" %}{% endblock body %} + + {% block header %} + {{ macros_header::header(current_section="/") }} + {% endblock header %} + + {% block content %}{% endblock content %} + + {% block footer %} + {{ macros_footer::footer() }} + {% endblock footer %} + + {{ macros_js::javascript() }} + + From 356ad2a654ec53b3204926b0dde878a498dc6bd9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrick=20Jos=C3=A9=20Pereira?= Date: Fri, 29 Mar 2024 15:04:54 -0300 Subject: [PATCH 2/2] config: Add ahrefs_verification_code MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Patrick José Pereira --- config.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/config.toml b/config.toml index ce0edf1..02dfad6 100644 --- a/config.toml +++ b/config.toml @@ -30,6 +30,8 @@ include_content = true highlight_code = true [extra] +ahrefs_verification_code = "68b21d8843bcc0ce30035c553ab9c2ac579c8ebfb8698573ea4f96f49ae00517" + # Put all your custom variables here github = "https://github.com/bluerobotics"