gulp-svgfallback
Version:
Generate png sprite from svg icons
25 lines (24 loc) • 384 B
HTML
<html>
<head>
<style>
body {
margin: 0;
}
.icons,
.icon,
svg {
float: left;
}
</style>
</head>
<body>
<div class="icons">
<% _.each(icons, function (icon, name) { %>
<div class="icon" data-name="<%- name %>">
<%= icon %>
</div>
<% }) %>
</div>
</body>
</html>