Music album web page generator
Você não pode selecionar mais de 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.
|
- ## -*- coding: utf-8 -*-
- <!DOCTYPE html>
-
- <html lang="fr">
- <head>
- <meta charset="utf-8">
-
- <title>${title}</title>
- <meta name="description" content="dedemo">
- <meta name="author" content="dede.space">
- <link rel="stylesheet" href="assets/css/dede-player.css">
- <link rel="stylesheet" href="assets/css/labelize.css">
- </head>
-
- <body>
- <section class="cover">
-
- <!-- <img src="images/CLOU_Icono-1.png"/> -->
- </section>
- <section class="dates">
- <h2><span class="scaps">${title}</span> live</h2>
- </section>
- <section class="albums">
-
- </section>
-
-
-
- <section class="contact">
- <span>contact<span class="point">@</span>clou<span class="point">.</span>space</span>
- <footer class="flex-center">
- dede <span class='point'>.</span>space<span class='pipe'>|</span>2019
- </footer>
- </section>
-
- <div class="one-dpi" id="one-dpi" onclick="togglePlayer('player','one-dpi');"></div>
-
- <div class="player hidden" id="player">
- <h2>${title} - Audio</h2>
- <ul>
- % for a in tracks:
- <li>Item ${loop.index}: ${a}</li>
- % endfor
- </ul>
- </div>
-
- <script src="./assets/js/labelize.js"></script>
- </body>
- </html>
-
- <!---nav footered-screen-->
|