1
0
mirror of https://github.com/minio/docs.git synced 2025-07-30 07:03:26 +03:00

Add DirectPV docs link to dropdown switcher (#1094)

- Adds the DirectPV docs to the doc switcher
- Adds a external links reference for the DirectPV Docs

Staged:
http://192.241.195.202:9000/staging/directpv-docs-link/linux/index.html
This commit is contained in:
Daryl White
2023-12-21 12:30:51 -05:00
committed by GitHub
parent 790af1ad67
commit ed2553efc8

View File

@ -78,6 +78,7 @@ extlinks = {
'aks-docs' : ('https://learn.microsoft.com/en-us/azure/aks/%s', None), 'aks-docs' : ('https://learn.microsoft.com/en-us/azure/aks/%s', None),
'azure-docs' : ('https://learn.microsoft.com/en-us/azure/%s', None), 'azure-docs' : ('https://learn.microsoft.com/en-us/azure/%s', None),
'kes-docs' : ('https://min.io/docs/kes/%s', None), 'kes-docs' : ('https://min.io/docs/kes/%s', None),
'directpv-docs' : ('https://min.io/docs/directpv/%s', None),
} }
suppress_warnings = [ suppress_warnings = [
@ -282,19 +283,19 @@ html_context = {
'docs': [ 'docs': [
# The first item has to be the current docs site # # The first item has to be the current docs site #
{ {
'name': 'MinIO Documentation', 'name': 'MinIO Server Documentation',
'current': True 'current': True
}, },
{
'name': 'DirectPV Documentation',
'url': 'https://min.io/docs/directpv',
'external': True
},
{ {
'name': 'KES Documentation', 'name': 'KES Documentation',
'url': 'https://min.io/docs/kes', 'url': 'https://min.io/docs/kes',
'external': True 'external': True
}, }
#{
#'name': 'DirectPV Documentation',
#'url': '',
#'external': True
#}
] ]
} }