mediacms/frontend/packages/vjs-plugin-font-icons/templates/html.hbs
Yiannis Stergiou aa6520daac
Frontent dev env (#247)
* Added frontend development files/environment

* More items-categories related removals

* Improvements in pages templates (inc. static pages)

* Improvements in video player

* Added empty home page message + cta

* Updates in media, playlist and management pages

* Improvements in material icons font loading

* Replaced media & playlists links in frontend dev-env

* frontend package version update

* chnaged frontend dev url port

* static files update

* Changed default position of theme switcher

* enabled frontend docker container
2021-07-11 18:01:34 +03:00

47 lines
854 B
Handlebars
Executable File

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>{{fontName}}</title>
<link href="css/videojs-icons.css" rel="stylesheet">
<style>
body {
text-align: center;
}
header {
/*text-align: center;*/
}
.preview {
display: inline-block;
border: 1px solid #ccc;
text-align: center;
width: 150px;
margin: 10px;
padding: 10px;
}
.preview-icon {
width: 100%;
font-size: 200%;
}
</style>
</head>
<body>
<header>
<h1>{{fontName}} Icons</h1>
<p>All icons prefixed by <code>vjs-icon-</code></p>
</header>
{{#each names}}
<div class="preview">
<div class="preview-icon">
<span class="vjs-icon-{{this}}"></span>
</div>
<span>{{this}}</span>
</div>
{{/each}}
</body>
</html>