How to remove footer? I tried but I could not.
How to remove it?
I must remove footer for my project.
3.6.10.16.31.7.3site_name: Eko Bilim Ar-Ge Lab
pages:
- Ana Sayfa: index.md
theme: material
theme_dir: theme
This is my way to remove it, 964fff0b8ad861c91b48e91ff5d8aa6f8f976a2f
@bearpear
Refer to the customization doc - https://squidfunk.github.io/mkdocs-material/customization/#overriding-partials. You need to use your version of footer.html (instructions in the link), and remove the content specified above by @bkbncn
@mdd41
I like the overriding way, then my fork will be useless.
Thanks a lot.
Note: @bkbncn's solution worked for me albeit with two changes.
<a href="{{ page.previous_page.url }}" on line 7
should instead be
<a href="{{ page.previous_page.url | url }}"
<a href="{{ page.next_page.url }}" on line 22
should instead be
<a href="{{ page.next_page.url | url }}"
For reference: link to full file
This is my way to remove it, 964fff0
You should not edit the html file directly. Its fully wrong workaround
@AbhaysinghBhosale How so? Overriding partials is supported: https://squidfunk.github.io/mkdocs-material/customization/#overriding-partials
como fa莽o para remover o bot茫o de editar p谩gina ?
Removing the generator notice is now supported in Insiders 馃殌
Just add this to mkdocs.yml:
extra:
generator: false
Most helpful comment
@bearpear
Refer to the customization doc - https://squidfunk.github.io/mkdocs-material/customization/#overriding-partials. You need to use your version of footer.html (instructions in the link), and remove the content specified above by @bkbncn