1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>{{fontName}}</title> <style> body { font-family: sans-serif; margin: 0; padding: 10px 20px; } .preview { line-height: 2em; } .preview__icon { display: inline-block; width: 32px; text-align: center; } {{baseSelector}} { display: inline-block; font-size: 16px; } {{{styles}}} </style> </head> <body> <h1>{{fontName}}</h1> {{#each names}} <div class="preview"> <span class="preview__icon"> <span class="{{removePeriods ../baseSelector}} {{../classPrefix}}{{this}}"></span> </span> <span>{{this}}</span> </div> {{/each}} </body> </html>