-
Notifications
You must be signed in to change notification settings - Fork 328
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix issue with documentation updates
Some of the interactive features were not loading due to the last round of documentation updates. This fixes those issues.
- Loading branch information
Jonathan S. Katz
committed
Mar 22, 2021
1 parent
ae8eb55
commit c228460
Showing
1 changed file
with
41 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,44 @@ | ||
<div class="chevrons"> | ||
{{ partial "next-prev-page.html" . }} | ||
</div> | ||
|
||
</section> | ||
</article> | ||
|
||
<footer> | ||
|
||
<div class="footline"> | ||
{{if .Params.tags }} | ||
<div class="tags"> | ||
{{ range $index, $tag := .Params.tags }} | ||
<a class="label label-default" href="{{$.Site.BaseURL}}tags/{{ $tag | urlize }}">{{ $tag }}</a> | ||
{{ end }} | ||
</div> | ||
{{end}} | ||
|
||
{{with .Params.LastModifierDisplayName}} | ||
<div class="author"> | ||
<i class='fa fa-user'></i> <a href="mailto:{{ $.Params.LastModifierEmail }}">{{ . }}</a> | ||
</div> | ||
{{end}} | ||
|
||
{{ if not .Page.Lastmod.IsZero }} | ||
<div class="date"> | ||
<i class='fa fa-calendar'></i> {{T "last-update-on"}} {{ .Page.Lastmod.Format "02/01/2006" }} | ||
</div> | ||
{{end}} | ||
|
||
</div> | ||
|
||
|
||
<div> | ||
</div> | ||
|
||
<div class="text-center"> | ||
<p><small>© 2017 - 2021 Crunchy Data Solutions, Inc.</small></p> | ||
</div> | ||
|
||
|
||
</footer> | ||
|
||
{{ partial "flex/scripts.html" . }} |