Piano notes book, powered by Astro and React.
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 

30 строки
739 B

  1. ---
  2. const { title } = Astro.props.frontmatter || Astro.props;
  3. ---
  4. <!doctype html>
  5. <html lang="en-PH" class="font-body">
  6. <head>
  7. <meta charset="UTF-8" />
  8. <meta name="description" content="Astro description" />
  9. <meta name="viewport" content="width=device-width" />
  10. <link rel="icon" type="image/svg+xml" href="/favicon.svg" />
  11. <meta name="generator" content={Astro.generator} />
  12. <title>{title}</title>
  13. <style is:global>
  14. @import url("https://www.verovio.org/javascript/4.1.0/data/Bravura.css");
  15. p {
  16. @apply my-6;
  17. @apply indent-6;
  18. @apply text-justify;
  19. }
  20. </style>
  21. </head>
  22. <body>
  23. <div class="px-8 w-full mx-auto max-w-screen-md print:max-w-full print:m-0 my-16">
  24. <slot />
  25. </div>
  26. </body>
  27. </html>