-
Notifications
You must be signed in to change notification settings - Fork 313
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add option to include a privacy policy and legal notice page
- Loading branch information
Showing
6 changed files
with
42 additions
and
6 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
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,9 +1,18 @@ | ||
<footer class="gdoc-footer"> | ||
<div class="container flex"> | ||
<span> | ||
<div class="container flex flex-wrap"> | ||
<span class="gdoc-footer__item"> | ||
Build with <a href="https://gohugo.io/" class="gdoc-footer__link">Hugo</a> and | ||
<svg class="icon heart"><use xlink:href="#heart"></use></svg> | ||
</span> | ||
<span> | ||
{{ with .Site.Params.GeekdocLegalNotice }} | ||
<span class="gdoc-footer__item"> | ||
<a href="{{ . | relURL }}" class="gdoc-footer__link">Legal Notice</a> | ||
</span> | ||
{{ end }} | ||
{{ with .Site.Params.GeekdocPrivacyPolicy }} | ||
<span class="gdoc-footer__item"> | ||
<a href="{{ . | relURL }}" class="gdoc-footer__link">Privacy Policy</a> | ||
</span> | ||
{{ end }} | ||
</div> | ||
</footer> |
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