Skip to content

Instantly share code, notes, and snippets.

@treetop1500
Last active September 14, 2016 20:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save treetop1500/30320e3951f48a523461b895d44f4199 to your computer and use it in GitHub Desktop.
Save treetop1500/30320e3951f48a523461b895d44f4199 to your computer and use it in GitHub Desktop.
Twig Extensions
/**
* @param string $class
* @return string
* returns a proper, accessible font-awesome icon.
* usage: {{ icon('fa-download') }}
*/
function icon($class)
{
return "<i class=\"fa $class\" aria-hidden=\"true\"></i>";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment