annotate cpack/dml/components/icons.pl @ 0:718306e29690 tip

commiting public release
author Daniel Wolff
date Tue, 09 Feb 2016 21:05:06 +0100
parents
children
rev   line source
Daniel@0 1 :- module( icons, [icon//1]).
Daniel@0 2
Daniel@0 3 :- use_module(library(http/html_write)).
Daniel@0 4 :- use_module(library(http/html_head)).
Daniel@0 5
Daniel@0 6 icon(Name) -->
Daniel@0 7 {string_concat("fa fa-",Name,Class)},
Daniel@0 8 html_requires(font_awesome),
Daniel@0 9 html(i(class(Class),[])).