Skip to content

Commit

Permalink
docs: add beta disclaimer
Browse files Browse the repository at this point in the history
  • Loading branch information
mlluciano committed Apr 12, 2024
1 parent 2bbeff9 commit 64c3820
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
2 changes: 2 additions & 0 deletions mkdocs/docs/index.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# Welcome to the official iDigBio documentation!

To learn more about iDigBio visit [idigbio.org](https://www.idigbio.org/).

**This site is a work in progress and currently in beta.**
10 changes: 8 additions & 2 deletions mkdocs/docs/js/logo.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,14 @@ document.addEventListener("DOMContentLoaded", function() {
document.addEventListener('DOMContentLoaded', function () {
var searchInput = document.querySelector('.md-search__input');
if (searchInput) {
searchInput.placeholder = 'Search docs'; // Your custom placeholder text
searchInput.placeholder = 'Search docs';
}
});


document.addEventListener('DOMContentLoaded', function () {
var title = document.querySelector('.md-ellipsis');
if (title) {
title.innerHTML = 'BETA DOCUMENTATION'
title.style = 'color: red;'
}
});

0 comments on commit 64c3820

Please sign in to comment.