Author profile

This commit is contained in:
John O'Nolan
2021-03-04 17:22:45 -05:00
parent b5d0589222
commit 7617c7baf2
11 changed files with 195 additions and 272 deletions

View File

@@ -64,14 +64,12 @@
{{!-- The global footer at the very bottom of the screen --}}
<footer class="site-footer outer">
<div class="site-footer-content inner">
<div class="inner">
<section class="copyright"><a href="{{@site.url}}">{{@site.title}}</a> &copy; {{date format="YYYY"}}</section>
<nav class="site-footer-nav">
<a href="{{@site.url}}">Latest Posts</a>
{{#if @site.facebook}}<a href="{{facebook_url @site.facebook}}" target="_blank" rel="noopener">Facebook</a>{{/if}}
{{#if @site.twitter}}<a href="{{twitter_url @site.twitter}}" target="_blank" rel="noopener">Twitter</a>{{/if}}
<a href="https://ghost.org/" target="_blank" rel="noopener">Powered by Ghost</a>
{{navigation type="secondary"}}
</nav>
<div><a href="https://ghost.org/" target="_blank" rel="noopener">Powered by Ghost</a></div>
</div>
</footer>
@@ -92,6 +90,8 @@ $(document).ready(function () {
$('.gh-burger').click(function () {
$('body').toggleClass('gh-head-open');
});
// FitVids - Makes video embeds responsive
$(".gh-content").fitVids();
});
</script>