Mkdocs-material: How to remove 'Made with Material for MkDocs' from footer

Created on 14 Jun 2017  路  9Comments  路  Source: squidfunk/mkdocs-material

Description

How to remove footer? I tried but I could not.

Expected behavior

How to remove it?

Actual behavior

I must remove footer for my project.

Steps to reproduce the bug

  1. [First step]
  2. [Second step]
  3. [and so on...]

Package versions

  • Python: 3.6.1
  • MkDocs: 0.16.3
  • Material: 1.7.3

Project configuration

site_name: Eko Bilim Ar-Ge Lab
pages:
    - Ana Sayfa: index.md
theme: material
theme_dir: theme

System information

  • OS: [Windows 8.1]
  • Browser: [Chrome]

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

All 9 comments

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
Was this page helpful?
0 / 5 - 0 ratings

Related issues

dbdevtop picture dbdevtop  路  4Comments

ghost picture ghost  路  3Comments

NJAldwin picture NJAldwin  路  3Comments

nikramakrishnan picture nikramakrishnan  路  3Comments

40huo picture 40huo  路  3Comments