mkdocs-git-revision-date-localized-plugin
                                
                                 mkdocs-git-revision-date-localized-plugin copied to clipboard
                                
                                    mkdocs-git-revision-date-localized-plugin copied to clipboard
                            
                            
                            
                        MkDocs plugin to add a last updated date to your site pages
mkdocs-git-revision-date-localized-plugin
MkDocs plugin that enables displaying the date of the last git modification of a page. The plugin uses babel and timeago.js to provide different localized date formats. Initial fork from mkdocs-git-revision-date-plugin.

(Example when used together with the mkdocs-material theme)
Other MkDocs plugins that use information from git:
- mkdocs-git-authors-plugin for displaying the authors from git
- mkdocs-git-committers-plugin for displaying authors' github user profiles
Setup
Install the plugin using pip3 with the following command:
pip3 install mkdocs-git-revision-date-localized-plugin
Next, add the following lines to your mkdocs.yml:
plugins:
  - search
  - git-revision-date-localized
If you have no
pluginsentry in your config file yet, you'll likely also want to add thesearchplugin. MkDocs enables it by default if there is nopluginsentry set.
The mkdocs-material theme supports git-revision-date-localized. After installing the plugin and updating your mkdocs.yml you should see the last revision date on the bottom of your pages. Other mkdocs themes require additional customization.
See the documentation on how to fine-tune the appearance and the date format.
Note when using build environments
This plugin needs access to the last commit that touched a specific file to be able to retrieve the date. By default many build environments only retrieve the last commit, which means you might need to:
Change your CI settings
Documentation
See timvink.github.io/mkdocs-git-revision-date-localized-plugin.
Contributing
Contributions are very welcome! Please read CONTRIBUTING.md before putting in any work.