template.tmpl 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <!doctype html>
  2. <html lang="en">
  3. <head>{{/* depth stored for access inside navigation loop */}}{{$depth := .Depth}}
  4. <meta charset="utf-8">
  5. <title>{{if .Name}}{{.Name}} | {{end}}Casey DeLorme's Portfolio / caseydelorme.com</title>
  6. <link rel="stylesheet" type="text/css" href="{{$depth}}/css/main.css#{{.Version}}">
  7. </head>
  8. <body>
  9. <header>
  10. <a href='/'><h1>Casey DeLorme</h1></a>
  11. {{if .Nav}}
  12. <nav>
  13. <ul>
  14. {{range .Nav}}
  15. <li><a href='{{$depth}}{{.Link}}'>{{.Name}}</a></li>
  16. {{end}}
  17. </ul>
  18. </nav>
  19. {{end}}
  20. </header>
  21. <div class="content group">
  22. {{.Content}}
  23. </div>
  24. <footer>
  25. <a href='https://www.facebook.com/CaseyRDeLorme' class='link facebook'></a>
  26. <a href='https://www.linkedin.com/in/cdelorme' class='link linkedin'></a>
  27. <a href='https://www.youtube.com/user/LordOfElm' class='link youtube'></a>
  28. <a href='https://github.com/cdelorme' class='link github'></a>
  29. <a href='skype:casey.delorme?chat' class='link skype'></a>
  30. <div class="scripts">
  31. <script type="text/javascript" src="{{$depth}}/js/main.js#{{.Version}}" async></script>
  32. </div>
  33. </footer>
  34. </body>
  35. </html>