ghost-theme-sd.ai/partials/components/footer.hbs

33 lines
1.2 KiB
Handlebars
Raw Normal View History

2023-07-10 08:44:09 +01:00
<footer class="gh-footer{{#match @custom.header_and_footer_color "Accent color"}} has-accent-color{{/match}} gh-outer">
2023-07-10 07:12:45 +01:00
<div class="gh-footer-inner gh-inner">
2023-07-10 07:27:31 +01:00
<div class="gh-footer-bar">
<span class="gh-footer-logo is-title">
2023-07-10 07:27:31 +01:00
{{#if @site.logo}}
<img src="{{@site.logo}}" alt="{{@site.title}}">
{{else}}
{{@site.title}}
{{/if}}
</span>
<nav class="gh-footer-menu">
{{navigation type="secondary"}}
</nav>
<div class="gh-footer-copyright">
Powered by <a href="https://ghost.org/" target="_blank" rel="noopener">Ghost</a>
</div>
2023-07-10 07:12:45 +01:00
</div>
2023-08-14 02:10:22 +01:00
{{#if @site.members_enabled}}
{{#unless @member}}
<section class="gh-footer-signup">
<h2 class="gh-footer-signup-header is-title">{{@site.title}}</h2>
{{#if @site.description}}
<p class="gh-footer-signup-subhead is-body">{{@site.description}}</p>
{{/if}}
{{> "email-subscription"}}
</section>
{{/unless}}
{{/if}}
2023-07-10 07:27:31 +01:00
2023-07-10 07:12:45 +01:00
</div>
</footer>