I'm trying to add external css and javascripts to my magento website. What I basically did was to put the necessary scripts in their respective directories, then add this code to the page.xml of both the default and my current theme in app/design/frontend:
<action method="addJs"><script>foundation/modernizr.js</script></action>
<action method="addJs"><script>foundation/jquery.js</script></action>
<action method="addJs"><script>foundation/foundation.min.js</script></action>
<action method="addCss"><stylesheet>css/foundation.css</stylesheet></action>
<action method="addCss"><stylesheet>css/style.css</stylesheet></action>
<action method="addCss"><stylesheet>css/flexslider.css</stylesheet></action>
<action method="addCss"><stylesheet>css/main.css</stylesheet></action>
But it seems that it's not showing on the head tag on every page I have. What else have I missed that makes the loading not possible?
I'm using Magento ver. 1.8.1.0.