Static site generator for making web mixtapes in 2020.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

26 行
396 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. #playlist {
  11. list-style: decimal-leading-zero;
  12. margin: 1em 0;
  13. }
  14. #playlist li {
  15. margin: 0.5em 0;
  16. }
  17. li.active a {
  18. font-weight: bold;
  19. }
  20. </style>
  21. </head>
  22. <body>
  23. {{template "full-player" .Tracks}}
  24. </body>
  25. </html>
  26. {{end}}