-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #36 from tokk-nv/main
Enable Announcement Bar with 11/07 webinar announcement
- Loading branch information
Showing
3 changed files
with
25 additions
and
2 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
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,13 @@ | ||
<!-- Elements added to main will be displayed on all pages --> | ||
{% extends "base.html" %} | ||
|
||
<!-- Announcement bar --> | ||
{% block announce %} | ||
<style> | ||
.md-announce a { color: #76b900; text-decoration: underline;} | ||
.md-announce a:focus { color: hsl(82, 100%, 72%); text-decoration: underline; } | ||
.md-announce a:hover { color: hsl(82, 100%, 72%); text-decoration: underline;} | ||
</style> | ||
<div class="md-announce">Join us Tuesday, November 7, 2023 at 9 a.m. PT for a <a href="https://info.nvidia.com/jetson-gen-ai-webinar.html" target="_blank"><strong>webinar</strong></a> diving even deeper into many of the topics discussed on this site, along with a live Q&A!</div> | ||
|
||
{% endblock %} |