eddiesigner / liebling

Beautiful and clean Ghost theme that is easy and comfortable to use. To get the latest version please head over the releases page 👉🏼
https://github.com/eddiesigner/liebling/releases
MIT License
1.26k stars 598 forks source link

Quick questions from Newb #357

Closed 22lane5 closed 3 years ago

22lane5 commented 3 years ago

Hi all!

I really like this theme so far. I was wondering how to do a couple of things ( I am not very good at coding)

  1. Add a linkedin icon in the footer next to the facebook/twitter/rss.
  2. Right now anything in the second submenu/more option at the top of the page also appears in the footer. How do have it so it does not go to the footer as well. I would also be fine if it put all of the menu items from the top in the footer, not just the second menu/more.

Thank you!

eddiesigner commented 3 years ago

Hi,

  1. You can add the following code in the file partials/footer.hbs after line 25:
<a href="YOUR_LINKEDIN_URL" target="_blank" rel="noopener" aria-label="Linkedin">
  <span class="icon-linkedin" aria-hidden="true"></span>
</a>
  1. In the same file you can remove the following code:
{{#if @site.secondary_navigation}}
  <nav class="m-footer__nav-secondary" role="navigation" aria-label="{{t "Secondary menu in footer"}}">
    {{navigation type="secondary"}}
  </nav>
{{/if}}
22lane5 commented 3 years ago

Thank you so much!