Skip to content

Commit

Permalink
Добавил сову и meta-descriptions плагин
Browse files Browse the repository at this point in the history
  • Loading branch information
mikhaillav committed Feb 23, 2024
1 parent dd7bb75 commit ab818c5
Show file tree
Hide file tree
Showing 5 changed files with 111 additions and 1 deletion.
Binary file added docs/assets/owl_anim.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ extra:
- icon: fontawesome/brands/telegram
link: https://t.me/alexandria_30
name: Мы в телеге!
owl:
path: /assets/owl_anim.gif

nav:
- Добро пожаловать!: index.md
Expand All @@ -24,6 +26,7 @@ nav:

theme:
name: material
custom_dir: overrides
language: ru
features:
- content.action.edit
Expand Down Expand Up @@ -56,6 +59,7 @@ plugins:
type: timeago
timezone: Europe/Moscow
- awesome-pages
- meta-descriptions

markdown_extensions:
- toc:
Expand Down
101 changes: 101 additions & 0 deletions overrides/partials/footer.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,101 @@
<!--
Copyright (c) 2016-2024 Martin Donath <martin.donath@squidfunk.com>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to
deal in the Software without restriction, including without limitation the
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
sell copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
IN THE SOFTWARE.
-->

<!-- Footer -->
<footer class="md-footer">

<!-- Link to previous and/or next page -->
{% if "navigation.footer" in features %}
{% if page.previous_page or page.next_page %}
{% if page.meta and page.meta.hide %}
{% set hidden = "hidden" if "footer" in page.meta.hide %}
{% endif %}
<nav
class="md-footer__inner md-grid"
aria-label="{{ lang.t('footer') }}"
{{ hidden }}
>

<!-- Link to previous page -->
{% if page.previous_page %}
{% set direction = lang.t("footer.previous") %}
<a
href="{{ page.previous_page.url | url }}"
class="md-footer__link md-footer__link--prev"
aria-label="{{ direction }}: {{ page.previous_page.title | e }}"
>
<div class="md-footer__button md-icon">
{% set icon = config.theme.icon.previous or "material/arrow-left" %}
{% include ".icons/" ~ icon ~ ".svg" %}
</div>
<div class="md-footer__title">
<span class="md-footer__direction">
{{ direction }}
</span>
<div class="md-ellipsis">
{{ page.previous_page.title }}
</div>
</div>
</a>
{% endif %}

<!-- Link to next page -->
{% if page.next_page %}
{% set direction = lang.t("footer.next") %}
<a
href="{{ page.next_page.url | url }}"
class="md-footer__link md-footer__link--next"
aria-label="{{ direction }}: {{ page.next_page.title | e }}"
>
<div class="md-footer__title">
<span class="md-footer__direction">
{{ direction }}
</span>
<div class="md-ellipsis">
{{ page.next_page.title }}
</div>
</div>
<div class="md-footer__button md-icon">
{% set icon = config.theme.icon.next or "material/arrow-right" %}
{% include ".icons/" ~ icon ~ ".svg" %}
</div>
</a>
{% endif %}
</nav>
{% endif %}
{% endif %}

<!-- Further information -->
<div class="md-footer-meta md-typeset">
<div class="md-footer-meta__inner md-grid">
{% include "partials/copyright.html" %}
<!-- Social links -->
{% if config.extra.social %}
{% include "partials/social.html" %}
{% endif %}

{% if config.extra.owl %}
{% include "partials/owl.html" %}
{% endif %}
</div>
</div>
</footer>
4 changes: 4 additions & 0 deletions overrides/partials/owl.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
<a href="https://www.youtube.com/@user-kt4sq8ni8l" style="width: 100%; height: auto;">
{% set owl_path = config.extra.owl.path or "https://school30.spb.ru/images/OWL_ANIM.gif" %}
<img src="{{owl_path}}">
</a>
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
mkdocs-material == 9.5.9
mkdocs-git-revision-date-localized-plugin == 1.2.4
mkdocs-awesome-pages-plugin == 2.9.2
mkdocs-minify-plugin == 0.8.0
mkdocs-minify-plugin == 0.8.0
mkdocs-meta-descriptions-plugin == 3.0.0

0 comments on commit ab818c5

Please sign in to comment.