html.hbs 808 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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. header {
  12. /*text-align: center;*/
  13. }
  14. .preview {
  15. display: inline-block;
  16. border: 1px solid #ccc;
  17. text-align: center;
  18. width: 150px;
  19. margin: 10px;
  20. padding: 10px;
  21. }
  22. .preview-icon {
  23. width: 100%;
  24. font-size: 200%;
  25. }
  26. </style>
  27. </head>
  28. <body>
  29. <header>
  30. <h1>{{fontName}} Icons</h1>
  31. <p>All icons prefixed by <code>vjs-icon-</code></p>
  32. </header>
  33. {{#each names}}
  34. <div class="preview">
  35. <div class="preview-icon">
  36. <span class="vjs-icon-{{this}}"></span>
  37. </div>
  38. <span>{{this}}</span>
  39. </div>
  40. {{/each}}
  41. </body>
  42. </html>