Static site generator for making web mixtapes in 2020.
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.

27 lines
392 B

  1. {{define "mixtape"}}
  2. <html>
  3. <head>
  4. <title>Mixtape</title>
  5. <style type="text/css">
  6. body {
  7. font-size: 1.2em;
  8. margin: 1em;
  9. }
  10. .active {
  11. font-weight: bold;
  12. }
  13. #playlist {
  14. list-style: none;
  15. margin: 1em 0;
  16. padding: 0;
  17. }
  18. #playlist li {
  19. margin: 0.5em 0;
  20. }
  21. </style>
  22. </head>
  23. <body>
  24. {{template "full-player" .Tracks}}
  25. </body>
  26. </html>
  27. {{end}}