-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* New site banner Added file and edited mkdocs.yml to add the banner that announces the new website. --------- Co-authored-by: Anthony Galassi <[email protected]>
- Loading branch information
1 parent
7e1d78c
commit 336dbde
Showing
2 changed files
with
31 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
{% extends "base.html" %} | ||
|
||
{% block announce %} | ||
<div> | ||
<style> | ||
.announcement { | ||
display: grid; | ||
place-items: center; | ||
text-align: center; | ||
padding: 0; | ||
margin: 0 | ||
} | ||
</style> | ||
<div class="announcement"> | ||
|
||
<h2><b>THIS SITE IS BEING MERGED</b><br></h2> | ||
|
||
<h3> | ||
The BIDS group is currently finalizing a NEW main website that will merge our existing websites into one central, easy to navigate resource. <br> | ||
The <b><a href="https://bids-website.readthedocs.io" target="_blank">New BIDS Website</a> (https://bids-website.readthedocs.io)</b> | ||
is still being finalized, but we encourage feedback via the <br> | ||
giscus form on the bottom of the main page. <br> | ||
</h3> | ||
|
||
Please feel free to submit suggestions or comments as we improve and consolidate our existing BIDS resources. | ||
|
||
</div> | ||
</div> | ||
{% endblock %} |