Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

What this module does

...

     To access/use the above icons in your page

  • You should decorate the page with the decorator "standardEmrPage" from appui module
  • then include   the icon as   <i class="<icon-name>"></i>     see code snippet below 

...

    Note. The above Font Awesome icons are also sub grouped into three classes  They can be accesed either of the following paths

    <i class="fab fa-fw <font_name>"></i>   or   <i class="fas fa-fw <font_name>"></i>  or   <i class="fab fafar fa-fw  <font_name>"></i>  (Try out  to get the which path works ) example

Code Block
languagexml
titleyour_page.gsp
<%
    ui.decorateWith("appui", "standardEmrPage")
%>
<div >
    <i class="fab fa-fw fa-youtube"></i> 
  <!-- NB if a given Font Awesome icon doesnt display then try to get it by  <i class="fas fa-fw fa-youtube"></i>  or <i class="fabfar fa-fw fa-youtube"></i> --> 
</div>

...