template.tmpl 1.4 KB

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