Guest User

Untitled

a guest
Oct 21st, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. You could also write the following
  2.  
  3. ```
  4. <a href="{{.Site.BaseURL}}/blog/">Back to Blog</a>
  5. ```
  6.  
  7. if you want the full path.
  8.  
  9. If you want to use an even more abstracted approach (eg, with a `/_default/single.html`), you could also do this:
  10.  
  11. ```
  12. <a href="{{.Site.BaseURL}}/{{.Section}}">Back to {{.Section}}</a>
  13. ```
  14.  
  15. You could also use the `{{ whatever | pluralize }}` depending on your use case.
Add Comment
Please, Sign In to add comment