forked from kubernetes/website
-
Notifications
You must be signed in to change notification settings - Fork 0
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 kubernetes#30068 from sftim/20211013_use_docsy_alerts
Use Docsy alert classes
- Loading branch information
Showing
5 changed files
with
32 additions
and
24 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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
<blockquote class="caution callout"> | ||
<div><strong>{{ T "caution" }}</strong> {{ trim .Inner " \n" | markdownify }}</div> | ||
</blockquote> | ||
<div class="alert alert-warning caution callout" role="alert"> | ||
<strong>{{ T "caution" }}</strong> {{ trim .Inner " \n" | markdownify }} | ||
</div> |
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
<blockquote class="note callout"> | ||
<div><strong>{{ T "note" }}</strong> {{ trim .Inner " \n" | markdownify }}</div> | ||
</blockquote> | ||
<div class="alert alert-info note callout" role="alert"> | ||
<strong>{{ T "note" }}</strong> {{ trim .Inner " \n" | markdownify }} | ||
</div> |
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 |
---|---|---|
@@ -1,3 +1,4 @@ | ||
<blockquote class="warning callout"> | ||
<div><strong>{{ T "warning" }}</strong> {{ trim .Inner " \n" | markdownify }}</div> | ||
</blockquote> | ||
<div class="alert alert-danger warning callout" role="alert"> | ||
<strong>{{ T "warning" }}</strong> {{ trim .Inner " \n" | markdownify }} | ||
</div> | ||
|