html.hbs 760 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>{{fontName}}</title>
  6. <link href="css/videojs-icons.css" rel="stylesheet">
  7. <style>
  8. body {
  9. text-align: center;
  10. }
  11. div {
  12. display: inline-block;
  13. border: 1px solid #ccc;
  14. text-align: center;
  15. width: 150px;
  16. margin: 10px;
  17. padding: 10px;
  18. }
  19. div span:first-of-type {
  20. font-size: 200%;
  21. }
  22. div span:first-of-type::before {
  23. display: inline-block;
  24. width: 100%;
  25. }
  26. </style>
  27. </head>
  28. <body>
  29. <h1>{{fontName}} Icons</h1>
  30. <p>All icons prefixed by <code>vjs-icon-</code></p>
  31. {{#each names}}
  32. <div>
  33. <span class="vjs-icon-{{this}}"></span>
  34. <span>{{this}}</span>
  35. </div>
  36. {{/each}}
  37. </body>
  38. </html>