Piano notes book, powered by Astro and React.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 

46 lignes
719 B

  1. ---
  2. const { title } = Astro.props.frontmatter || Astro.props;
  3. ---
  4. <!doctype html>
  5. <html lang="en-PH">
  6. <head>
  7. <meta charset="UTF-8" />
  8. <meta name="viewport" content="width=device-width" />
  9. <link rel="icon" type="image/svg+xml" href="favicon.svg" />
  10. <title>{title}</title>
  11. <style is:global>
  12. html {
  13. @apply w-full;
  14. @apply h-full;
  15. }
  16. body {
  17. @apply w-full;
  18. @apply h-full;
  19. @apply m-0;
  20. }
  21. a {
  22. @apply block;
  23. @apply w-full;
  24. @apply h-full;
  25. }
  26. img {
  27. @apply w-full;
  28. @apply h-full;
  29. @apply object-center;
  30. @apply object-cover;
  31. }
  32. @page {
  33. margin: 0;
  34. }
  35. </style>
  36. </head>
  37. <body>
  38. <slot />
  39. </body>
  40. </html>