Skip to content

Commit

Permalink
Fix issue with documentation updates
Browse files Browse the repository at this point in the history
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.
41 changes: 41 additions & 0 deletions docs/layouts/partials/flex/body-aftercontent.html
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>&copy; 2017 - 2021 Crunchy Data Solutions, Inc.</small></p>
</div>


</footer>

{{ partial "flex/scripts.html" . }}

0 comments on commit c228460

Please sign in to comment.