The OddBird credit in the navigation footer can be toggled
using the SassDoc display.watermark
configuration setting.
Example
njk
{% import 'utility.macros.njk' as utility %}
<aside class="footer-credit">
<a href="https://www.oddbird.net/herman/" class="footer-icon">
{{ utility.icon('logo', size='footer-logo') }}
</a>
<span>
Documented with
<a href="https://www.oddbird.net/herman/" class="footer-link">
Herman
</a>
</span>
<span>
by
<a href="https://www.oddbird.net/" class="footer-link">
OddBird
</a>
</span>
</aside>
html
compiled
<aside class="footer-credit"> <a href="https://www.oddbird.net/herman/" class="footer-icon">
<svg data-icon="logo" data-icon-size="footer-logo" ><use xlink:href="#icon-logo" />
</svg>
</a>
<span>
Documented with
<a href="https://www.oddbird.net/herman/" class="footer-link">
Herman
</a>
</span>
<span>
by
<a href="https://www.oddbird.net/" class="footer-link">
OddBird
</a>
</span>
</aside>