add last revision date (#1380)

This commit is contained in:
Clement Tsang 2024-01-11 03:20:35 -05:00 committed by GitHub
parent b106121a84
commit 16a94d65d2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 23 additions and 9 deletions

View File

@ -18,7 +18,7 @@ This site serves as extended documentation for bottom alongside the [`README.md`
!!! Tip
It is a good idea to first check out the [Support](support/official.md) page to see if your system is officially supported!
It's as good idea to first check out the [Support](support/official.md) page to see if your system is officially supported!
!!! Tip

View File

@ -9,32 +9,42 @@ docs_dir: "content/"
repo_name: ClementTsang/bottom
repo_url: https://github.com/ClementTsang/bottom
edit_uri: "edit/main/docs/content/"
copyright: Copyright © 2019 - 2024 Clement Tsang
# Theming
theme:
name: material
features:
- content.action.edit
- navigation.tabs
- navigation.top
- navigation.expand
- navigation.instant
- navigation.sections
- navigation.footer
- toc.integrate
- search.suggest
- search.highlight
icon:
edit: material/pencil
palette:
# Light mode
- media: "(prefers-color-scheme: light)"
# Palette toggle for automatic mode
- media: "(prefers-color-scheme)"
scheme: default
toggle:
icon: material/weather-night
icon: material/brightness-auto
name: Switch to light mode
# Light mode
- media: "(prefers-color-scheme: light)"
toggle:
icon: material/weather-sunny
name: Switch to dark mode
# Dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/weather-sunny
name: Switch to light mode
icon: material/weather-night
name: Switch to system preference
custom_dir: "content/overrides"
extra_css:
- stylesheets/extra.css
@ -115,6 +125,8 @@ plugins:
- search
- mike:
canonical_version: stable
- git-revision-date-localized:
type: date
extra:
# Versioning

View File

@ -2,4 +2,4 @@ mkdocs == 1.5.3
mkdocs-material == 9.5.3
mdx_truly_sane_lists == 1.3
mike == 2.0.0
mkdocs-git-revision-date-localized-plugin == 1.2.2

View File

@ -11,10 +11,12 @@ if [ ! -d $VENV_PATH ]; then
source ./venv/bin/activate;
pip install --upgrade pip;
pip install -r requirements.txt;
./venv/bin/mike serve;
./venv/bin/mkdocs serve;
else
echo "venv already found.";
source ./venv/bin/activate;
./venv/bin/mike serve;
pip install --upgrade pip;
pip install -r requirements.txt;
./venv/bin/mkdocs serve;
fi;