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

37 lines
1.4 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-07-10 07:27:31 +01:00
<section class="gh-footer-signup">
{{#if @custom.footer_signup_header}}
2023-07-27 07:59:33 +01:00
<h2 class="gh-footer-signup-header is-title">
{{#if @custom.footer_signup_header}}
{{@custom.footer_signup_header}}
{{else}}
Subscribe to {{@site.title}}
{{/if}}
</h2>
2023-07-10 07:27:31 +01:00
{{/if}}
{{#if @custom.footer_signup_subhead}}
<p class="gh-footer-signup-subhead is-body">{{@custom.footer_signup_subhead}}</p>
2023-07-10 07:27:31 +01:00
{{/if}}
<button class="gh-button">Subscribe</button>
</section>
2023-07-10 07:12:45 +01:00
</div>
</footer>