You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
504 B

  1. <nav class="main-nav">
  2. <!-- TODO: Show link only if current page is NOT home -->
  3. {{ $url := replace .Permalink ( printf "%s" .Site.BaseURL) "" }}
  4. {{ if ne $url "" }}
  5. <a href='{{ .Site.BaseURL }}'> <span class="arrow"></span>Home</a>
  6. {{ end }}
  7. <!-- TODO: If .PermaLink == /about then don't show this link -->
  8. <a href='{{ .Site.BaseURL }}about'>About</a>
  9. <!-- TODO: Add link to RSS feed -->
  10. <a class="cta" href="{{ .Site.BaseURL }}index.xml">Subscribe</a>
  11. </nav>