Static site generator for making web mixtapes in 2020.
Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

27 linhas
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}}