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
382 B

  1. <nav class="main-nav">
  2. {{ $url := replace .Permalink ( printf "%s" .Site.BaseURL) "" }}
  3. {{ if ne $url "" }}
  4. <a href='{{ .Site.BaseURL }}'> <span class="arrow"></span>Home</a>
  5. {{ end }}
  6. {{ if ne $url "about/" }}
  7. <a href='{{ .Site.BaseURL }}about'>About</a>
  8. {{ end }}
  9. <a class="cta" href="{{ .Site.BaseURL }}index.xml">Subscribe</a>
  10. </nav>