Last active
September 14, 2016 20:44
-
-
Save treetop1500/30320e3951f48a523461b895d44f4199 to your computer and use it in GitHub Desktop.
Twig Extensions
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @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