20 lines
547 B
Handlebars
20 lines
547 B
Handlebars
{{!--
|
|
Parameters:
|
|
* footerText (text)
|
|
--}}
|
|
|
|
<footer class="gh-foot gh-outer">
|
|
<div class="gh-foot-inner gh-inner">
|
|
<nav class="gh-foot-menu">
|
|
{{navigation type="secondary"}}
|
|
</nav>
|
|
|
|
<div class="gh-copyright">
|
|
{{#unless footerText}}
|
|
{{@site.title}} © {{date format="YYYY"}}. Powered by <a href="https://ghost.org/" target="_blank" rel="noopener">Ghost</a>
|
|
{{else}}
|
|
{{footerText}}
|
|
{{/unless}}
|
|
</div>
|
|
</div>
|
|
</footer> |