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
add_action( 'wp_head', 'fonticons_js' ); | |
function fonticons_js() { | |
echo '<script src="//use.fonticons.com/abcd1234.js"></script>'; | |
} // End fonticons_js() |
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
// SASS Variables for all frameworks and your project | |
@import "../bootstrap-2.3.2/variables"; | |
@import "../font-awesome-3.2.1/variables"; | |
@import "../project/variables"; // Your Project's Variables & Overrides | |
// First framework individual file import | |
@import "mixins"; | |
@import "reset"; | |
@import "scaffolding"; | |
@import "grid"; |
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
// Bootstrap | |
@import "../bootstrap-2.3.2/bootstrap"; | |
// Font Awesome | |
@import "../font-awesome-3.2.1/font-awesome"; | |
// LESS Variables for all frameworks and your project | |
@import "../bootstrap-2.3.2/variables"; | |
@import "../font-awesome-3.2.1/variables"; | |
@import "../project/variables"; // Your Project's Variables & Overrides |