diff options
| author | XhmikosR <[email protected]> | 2021-01-16 21:50:25 +0200 |
|---|---|---|
| committer | XhmikosR <[email protected]> | 2021-08-31 17:24:38 +0300 |
| commit | 9050b2698a9df1be49e3fe8c4e2f33c0a227cbf9 (patch) | |
| tree | 385d828259ad3ffbbe5c957424d7c3831970a3b6 | |
| parent | 365d6d9fb150038f80874861a344ca39021b34c1 (diff) | |
| download | bootstrap-9050b2698a9df1be49e3fe8c4e2f33c0a227cbf9.tar.xz bootstrap-9050b2698a9df1be49e3fe8c4e2f33c0a227cbf9.zip | |
Remove `.html` suffix from shortcodes calls.
It's the default.
| -rw-r--r-- | site/content/docs/5.1/content/tables.md | 2 | ||||
| -rw-r--r-- | site/layouts/partials/home/masthead.html | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/site/content/docs/5.1/content/tables.md b/site/content/docs/5.1/content/tables.md index 7ec00201b..6f6e025dc 100644 --- a/site/content/docs/5.1/content/tables.md +++ b/site/content/docs/5.1/content/tables.md @@ -559,7 +559,7 @@ A `<caption>` functions like a heading for a table. It helps users with screen r <div class="bd-example"> <table class="table"> <caption>List of users</caption> - {{< partial "table-content.html" >}} + {{< partial "table-content" >}} </table> </div> diff --git a/site/layouts/partials/home/masthead.html b/site/layouts/partials/home/masthead.html index a8a465fed..e5661d9b3 100644 --- a/site/layouts/partials/home/masthead.html +++ b/site/layouts/partials/home/masthead.html @@ -23,6 +23,6 @@ </p> </div> </div> - {{ partial "ads.html" . }} + {{ partial "ads" . }} </div> </div> |
