-
Notifications
You must be signed in to change notification settings - Fork 143
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: Add semver to calver banner (#1699)
All Merlin projects are switching from semantic versioning, like `0.4.0`, to calendar versioning, like `23.01`. The change is planned for January 2023. Temporarily add a banner to all pages to prepare our consumers for the change.
- Loading branch information
1 parent
ba4c141
commit 21117cf
Showing
3 changed files
with
45 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
.wy-nav-content { | ||
margin: 0; | ||
background: #fcfcfc; | ||
padding-top: 40px; | ||
} | ||
|
||
.wy-side-nav-search { | ||
display: block; | ||
width: 300px; | ||
padding: .809em; | ||
padding-top: 0.809em; | ||
margin-bottom: .809em; | ||
z-index: 200; | ||
background-color: #2980b9; | ||
text-align: center; | ||
color: #fcfcfc; | ||
padding-top: 40px; | ||
} | ||
|
||
div.banner { | ||
position: fixed; | ||
top: 10px; | ||
left: 20px; | ||
margin: 0; | ||
z-index: 1000; | ||
width: 1050px; | ||
text-align: center; | ||
} | ||
|
||
p.banner { | ||
border-radius: 4px; | ||
color: #004831; | ||
background: #76b900; | ||
} |
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,9 @@ | ||
{% extends "!layout.html" %} | ||
{% block extrabody %} | ||
<div class="banner"> | ||
<p class="banner"> | ||
Beginning in January 2023, versions for all NVIDIA Merlin projects | ||
will change from semantic versioning like <code>4.0</code> | ||
to calendar versioning like <code>23.01</code>.</p> | ||
</div> | ||
{% endblock %} |
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