<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	
	xmlns:georss="http://www.georss.org/georss"
	xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#"
	>

<channel>
	<title>CSS Archives - My Silly Point of View</title>
	<atom:link href="https://mysillypointofview.com/tag/css/feed/" rel="self" type="application/rss+xml" />
	<link>https://mysillypointofview.com</link>
	<description>it&#039;s my blog anyway</description>
	<lastBuildDate>Mon, 11 May 2020 16:00:21 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.9.13</generator>
<site xmlns="com-wordpress:feed-additions:1">13951596</site>	<item>
		<title>How to add Magento blocks, CSS and Javascript to an external site</title>
		<link>https://mysillypointofview.com/2010/07/03/how-to-add-magento-blocks-css-and-javascript-to-an-external-site/</link>
					<comments>https://mysillypointofview.com/2010/07/03/how-to-add-magento-blocks-css-and-javascript-to-an-external-site/#comments</comments>
		
		<dc:creator><![CDATA[Richard Feraro]]></dc:creator>
		<pubDate>Sat, 03 Jul 2010 00:01:40 +0000</pubDate>
				<category><![CDATA[Feeling guru]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Magento]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[programming]]></category>
		<guid isPermaLink="false">http://mysillypointofview.richardferaro.com/?p=535</guid>

					<description><![CDATA[<p>You might have a Magento based website running online and wanted to extend parts of it (also known as blocks, which may include some css and js in the code) to an external site which may either be a blog, another CMS or any other PHP based web application. If you have been following my [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://mysillypointofview.com/2010/07/03/how-to-add-magento-blocks-css-and-javascript-to-an-external-site/">How to add Magento blocks, CSS and Javascript to an external site</a> appeared first on <a rel="nofollow" href="https://mysillypointofview.com">My Silly Point of View</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>You might have a Magento based website running online and wanted to extend parts of it (also known as blocks, which may include some css and js in the code) to an external site which may either be a blog, another CMS or any other PHP based web application. If you have been following my previous posts, you will know that by adding the Mage.php file of your Magento instance to your application, you can actually pull the needed HTML blocks at any time. The only problem is that most of the examples available online asks you to use the <strong>getChildHtml(&#8216;your-block-here&#8217;)</strong> in which most the time frustrates you because of its complexity and limited resources of how you can actually use it. You may not know that most of the secured casino websites like <a href="https://www.daisyslots.com">Daisy slots</a> used Magento blocks.</p>
<p>There are other ways of doing it. Oddly enough, some are pretty simple and straight forward.<br />
<span id="more-535"></span><br />
We will use a single HTML file which will serve as our &#8216;external&#8217; site. The source code of our <strong>index.php</strong> is shown below:</p>
<pre><pre class="brush: xml; title: ; notranslate">&amp;amp;amp;amp;lt;html&amp;amp;amp;amp;gt;
  &amp;amp;amp;amp;lt;head&amp;amp;amp;amp;gt;
    &amp;amp;amp;amp;lt;script type=&quot;text/javascript&quot;&amp;amp;amp;amp;gt;
      WebFontConfig = {
        google: { families: [ 'Josefin Sans Std Light', 'Lobster' ] }
      };
      (function() {
        var wf = document.createElement('script');
        wf.src = ('https:' == document.location.protocol ? 'https' : 'http') +
            '://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js';
        wf.type = 'text/javascript';
        wf.async = 'true';
        var s = document.getElementsByTagName('script')[0];
        s.parentNode.insertBefore(wf, s);
      })();
    &amp;amp;amp;amp;lt;/script&amp;amp;amp;amp;gt;
    &amp;amp;amp;amp;lt;style type=&quot;text/css&quot;&amp;amp;amp;amp;gt;
      .wf-active p.text {
        font-family: 'Calibri', serif;
		font-size: 16px;
		text-align: justify;
		color:#666666;
		border: 1px solid #CCCCCC;
		-moz-border-radius: 20px;
		-webkit-border-radius: 20px;
		padding: 20px
      }

	  .wf-active h2 {
	  	font-family: 'Lobster', serif;
        font-size: 20px;
		color: #666666
      }

      .wf-active h1 {
        font-family: 'Lobster', serif;
        font-size: 45px;
		color: #006699;
		margin-bottom: 10px;
      }

	  div.body {
	  	max-width: 850px;
		margin: auto;
		background-color: #FFFFFF;
		padding: 30px 50px 0px 50px;
		text-align: left;
		height: 60%;
	  }

	  p.bugs {
	  	font: 12px/1.55 Arial,Helvetica,sans-serif;
		text-align: center;
	  }

	  p.otherdata {
	  	font-family: 'Calibri', serif;
		font-size: 15px;
		color: #999999;
		margin-bottom: 20px
	  }

	  .otherdata strong {
	  	color: #000000
	  }
    &amp;amp;amp;amp;lt;/style&amp;amp;amp;amp;gt;
  &amp;amp;amp;amp;lt;/head&amp;amp;amp;amp;gt;
  &amp;amp;amp;amp;lt;body&amp;amp;amp;amp;gt;
  	&amp;amp;amp;amp;lt;div class=&quot;body&quot;&amp;amp;amp;amp;gt;
		&amp;amp;amp;amp;lt;h1&amp;amp;amp;amp;gt;How to add Magento blocks, CSS and Javascript to an external site&amp;amp;amp;amp;lt;/h1&amp;amp;amp;amp;gt;
		&amp;amp;amp;amp;lt;p class=&quot;otherdata&quot;&amp;amp;amp;amp;gt;Written by &amp;amp;amp;amp;lt;strong&amp;amp;amp;amp;gt;Richard Feraro&amp;amp;amp;amp;lt;/strong&amp;amp;amp;amp;gt; | Posted on &amp;amp;amp;amp;lt;strong&amp;amp;amp;amp;gt;July 2, 2010&amp;amp;amp;amp;lt;/strong&amp;amp;amp;amp;gt;&amp;amp;amp;amp;lt;/p&amp;amp;amp;amp;gt;
		&amp;amp;amp;amp;lt;p class=&quot;text&quot;&amp;amp;amp;amp;gt;Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis a quam massa. Nullam eget erat metus. Sed vel justo enim. Proin rhoncus laoreet bibendum. Nullam eget est nisi. In eget sem in erat sodales bibendum. Morbi gravida augue sed felis tincidunt a congue dui placerat. Aliquam purus risus, mollis sed ullamcorper non, viverra eu odio. Suspendisse nibh nisi, suscipit at viverra eu, convallis ac odio. Morbi nec sapien eros. Suspendisse nec nulla erat, ac porttitor neque. Integer felis dolor, sollicitudin sed semper et, imperdiet nec turpis. Proin blandit luctus egestas. &amp;amp;amp;amp;lt;/p&amp;amp;amp;amp;gt;
	&amp;amp;amp;amp;lt;/div&amp;amp;amp;amp;gt;
  &amp;amp;amp;amp;lt;/body&amp;amp;amp;amp;gt;
&amp;amp;amp;amp;lt;/html&amp;amp;amp;amp;gt;</pre>
<p>The code above shall produce a page like the one in the screenshot below.</p>
<figure id="attachment_538" aria-describedby="caption-attachment-538" style="width: 477px" class="wp-caption aligncenter"><a href="https://i0.wp.com/mysillypointofview.richardferaro.com/wp-content/uploads/2010/07/sample_external_site.png"><img data-attachment-id="538" data-permalink="https://mysillypointofview.com/2010/07/03/how-to-add-magento-blocks-css-and-javascript-to-an-external-site/sample_external_site/" data-orig-file="https://i0.wp.com/mysillypointofview.com/wp-content/uploads/2010/07/sample_external_site.png?fit=942%2C472&amp;ssl=1" data-orig-size="942,472" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="Sample External Page" data-image-description="" data-image-caption="&lt;p&gt;Our Sample External Page&lt;/p&gt;
" data-medium-file="https://i0.wp.com/mysillypointofview.com/wp-content/uploads/2010/07/sample_external_site.png?fit=300%2C150&amp;ssl=1" data-large-file="https://i0.wp.com/mysillypointofview.com/wp-content/uploads/2010/07/sample_external_site.png?fit=640%2C321&amp;ssl=1" class="size-full wp-image-538     " title="Sample External Page" src="https://i0.wp.com/mysillypointofview.richardferaro.com/wp-content/uploads/2010/07/sample_external_site.png?resize=477%2C239" alt="" width="477" height="239" srcset="https://i0.wp.com/mysillypointofview.com/wp-content/uploads/2010/07/sample_external_site.png?w=942&amp;ssl=1 942w, https://i0.wp.com/mysillypointofview.com/wp-content/uploads/2010/07/sample_external_site.png?resize=300%2C150&amp;ssl=1 300w" sizes="(max-width: 477px) 100vw, 477px" data-recalc-dims="1" /></a><figcaption id="caption-attachment-538" class="wp-caption-text">Our Sample External Page</figcaption></figure>
<p>We&#8217;ll start editing at the beginning of the file by adding a <code>require_once()</code> for our <code>Mage.php</code> file.</p>
<pre><pre class="brush: php; title: ; notranslate">// Your Magento Mage.php
// Mage Enabler WordPress plugin users may
// skip these lines
require_once (&quot;/your/magento/app/Mage.php&quot;);
umask(0);
Mage::app(&quot;default&quot;);</pre>
<p>Proceed with adding the <code>if(class_exists('Mage')){...}</code> which encloses our Magento scripts to prevent the site from breaking if in case the Mage object failed to be instantiated. Check the inline comments for more details.</p>
<pre><pre class="brush: php; title: ; notranslate">// Make sure to execute this block of code
// only if Mage object is present
if(class_exists('Mage')){
	// Instantiate session and generate needed cookie
	Mage::getSingleton('core/session', array('name' =&amp;amp;amp;amp;gt; 'frontend'));
	$Block = Mage::getSingleton('core/layout');

	// Start pulling the blocks
	$head = $Block-&amp;amp;amp;amp;gt;createBlock('Page/Html_Head');
	// Add default css
	// Magento adds the default skin directory
	// 'skin/frontend/default/default' before 'css/styles.css'
	// making it look like the URL below:
	// http://localhost/magento/skin/frontend/default/default/css/styles.css
	$head-&amp;amp;amp;amp;gt;addCss('css/styles.css');
	// Add Prototype JS file
	// Note that it automatically adds the 'js' directory at the beginning
	// making it look like the URL below:
	// http://localhost/magento/js/prototype/prototype.js
	$head-&amp;amp;amp;amp;gt;addJs('prototype/prototype.js');

	// Get the header's HTML
	$header = $Block-&amp;amp;amp;amp;gt;createBlock('Page/Html_Header');
	$header-&amp;amp;amp;amp;gt;setTemplate('page/html/header.phtml');

	// And the footer's HTML as well
	$footer = $Block-&amp;amp;amp;amp;gt;createBlock('Page/Html_Footer');
	$footer-&amp;amp;amp;amp;gt;setTemplate('page/html/footer.phtml');
}</pre>
<p>That&#8217;s it. The codes above will generate the Magento session, the 3 blocks for CSS/JS (which uses the default skin of Magento and adds the Prototype JS file) and the HTML tags for the header and footer.</p>
<p>To use the blocks, insert the CSS/JS block right before the end tag of <code>&lt;/HEAD&gt;</code>:</p>
<pre><pre class="brush: php; title: ; notranslate">	&amp;amp;amp;amp;lt;?php
		// Display the needed tags for CSS and JS
		echo (class_exists('Mage')) ? $head-&amp;amp;amp;amp;gt;getCssJsHtml() : '' ;
	?&amp;amp;amp;amp;gt;
&amp;amp;amp;amp;lt;/head&amp;amp;amp;amp;gt;</pre>
<p>Proceed by adding the Magento header block right after the <code>&lt;BODY&gt;</code> tag but before the <code>&lt;DIV&gt;</code> tag.</p>
<pre><pre class="brush: php; title: ; notranslate">&amp;amp;amp;amp;lt;body&amp;amp;amp;amp;gt;
  	&amp;amp;amp;amp;lt;?php
		// Display the Header HTML
		echo (class_exists('Mage')) ? $header-&amp;amp;amp;amp;gt;toHTML() : '' ;
	?&amp;amp;amp;amp;gt;
  	&amp;amp;amp;amp;lt;div class=&quot;body&quot;&amp;amp;amp;amp;gt;</pre>
<p>Finally, add the Magento footer block right between the end tag of <code>&lt;/DIV&gt;</code> and <code>&lt;/BODY&gt;</code> tag</p>
<pre><pre class="brush: php; title: ; notranslate">	&amp;amp;amp;amp;lt;/div&amp;amp;amp;amp;gt;
	&amp;amp;amp;amp;lt;?php
		// Display the Footer HTML
		echo (class_exists('Mage')) ? $footer-&amp;amp;amp;amp;gt;toHTML() : '' ;
	?&amp;amp;amp;amp;gt;
  &amp;amp;amp;amp;lt;/body&amp;amp;amp;amp;gt;</pre>
<p>It should display a page of our external site which now uses the header and footer of Magento. Check the source to see the additional tags generated.</p>
<figure id="attachment_544" aria-describedby="caption-attachment-544" style="width: 473px" class="wp-caption aligncenter"><a href="https://i0.wp.com/mysillypointofview.richardferaro.com/wp-content/uploads/2010/07/sample_external_site_with_magento_blocks.png"><img data-attachment-id="544" data-permalink="https://mysillypointofview.com/2010/07/03/how-to-add-magento-blocks-css-and-javascript-to-an-external-site/sample_external_site_with_magento_blocks/" data-orig-file="https://i0.wp.com/mysillypointofview.com/wp-content/uploads/2010/07/sample_external_site_with_magento_blocks.png?fit=1192%2C688&amp;ssl=1" data-orig-size="1192,688" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="Our Sample External Page with Magento CSS, Prototype JS, Header and Footer" data-image-description="" data-image-caption="&lt;p&gt;Our Sample External Page with Magento CSS, Prototype JS, Header and Footer&lt;/p&gt;
" data-medium-file="https://i0.wp.com/mysillypointofview.com/wp-content/uploads/2010/07/sample_external_site_with_magento_blocks.png?fit=300%2C173&amp;ssl=1" data-large-file="https://i0.wp.com/mysillypointofview.com/wp-content/uploads/2010/07/sample_external_site_with_magento_blocks.png?fit=640%2C369&amp;ssl=1" loading="lazy" class="size-full wp-image-544    " title="Our Sample External Page with Magento CSS, Prototype JS, Header and Footer" src="https://i0.wp.com/mysillypointofview.richardferaro.com/wp-content/uploads/2010/07/sample_external_site_with_magento_blocks.png?resize=473%2C273" alt="" width="473" height="273" srcset="https://i0.wp.com/mysillypointofview.com/wp-content/uploads/2010/07/sample_external_site_with_magento_blocks.png?w=1192&amp;ssl=1 1192w, https://i0.wp.com/mysillypointofview.com/wp-content/uploads/2010/07/sample_external_site_with_magento_blocks.png?resize=300%2C173&amp;ssl=1 300w, https://i0.wp.com/mysillypointofview.com/wp-content/uploads/2010/07/sample_external_site_with_magento_blocks.png?resize=1024%2C591&amp;ssl=1 1024w" sizes="(max-width: 473px) 100vw, 473px" data-recalc-dims="1" /></a><figcaption id="caption-attachment-544" class="wp-caption-text">Our Sample External Page with Magento CSS, Prototype JS, Header and Footer</figcaption></figure>
<p>The full <strong>index.php</strong> can be found below:</p>
<pre><pre class="brush: php; title: ; notranslate">&amp;amp;amp;amp;lt;?php
// Your Magento Mage.php
// Mage Enabler WordPress plugin users may
// skip line numbers 5, 6 and 7
require_once (&quot;/your/magento/app/Mage.php&quot;);
umask(0);
Mage::app(&quot;default&quot;);

// Make sure to execute this block of code
// only if Mage object is present
if(class_exists('Mage')){
	// Instantiate session and generate needed cookie
	Mage::getSingleton('core/session', array('name' =&amp;amp;amp;amp;gt; 'frontend'));
	$Block = Mage::getSingleton('core/layout');

	// Start pulling the blocks
	$head = $Block-&amp;amp;amp;amp;gt;createBlock('Page/Html_Head');
	// Add default css
	// Magento adds the default skin directory
	// 'skin/frontend/default/default' before 'css/styles.css'
	// making it look like the URL below:
	// http://localhost/magento/skin/frontend/default/default/css/styles.css
	$head-&amp;amp;amp;amp;gt;addCss('css/styles.css');
	// Add Prototype JS file
	// Note that it automatically adds the 'js' directory at the beginning
	// making it look like the URL below:
	// http://localhost/magento/js/prototype/prototype.js
	$head-&amp;amp;amp;amp;gt;addJs('prototype/prototype.js');

	// Get the header's HTML
	$header = $Block-&amp;amp;amp;amp;gt;createBlock('Page/Html_Header');
	$header-&amp;amp;amp;amp;gt;setTemplate('page/html/header.phtml');

	// And the footer's HTML as well
	$footer = $Block-&amp;amp;amp;amp;gt;createBlock('Page/Html_Footer');
	$footer-&amp;amp;amp;amp;gt;setTemplate('page/html/footer.phtml');
}

?&amp;amp;amp;amp;gt;
&amp;amp;amp;amp;lt;html&amp;amp;amp;amp;gt;
  &amp;amp;amp;amp;lt;head&amp;amp;amp;amp;gt;
    &amp;amp;amp;amp;lt;script type=&quot;text/javascript&quot;&amp;amp;amp;amp;gt;
      WebFontConfig = {
        google: { families: [ 'Josefin Sans Std Light', 'Lobster' ] }
      };
      (function() {
        var wf = document.createElement('script');
        wf.src = ('https:' == document.location.protocol ? 'https' : 'http') +
            '://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js';
        wf.type = 'text/javascript';
        wf.async = 'true';
        var s = document.getElementsByTagName('script')[0];
        s.parentNode.insertBefore(wf, s);
      })();
    &amp;amp;amp;amp;lt;/script&amp;amp;amp;amp;gt;
    &amp;amp;amp;amp;lt;style type=&quot;text/css&quot;&amp;amp;amp;amp;gt;
      .wf-active p.text {
        font-family: 'Calibri', serif;
		font-size: 16px;
		text-align: justify;
		color:#666666;
		border: 1px solid #CCCCCC;
		-moz-border-radius: 20px;
		-webkit-border-radius: 20px;
		padding: 20px
      }

	  .wf-active h2 {
	  	font-family: 'Lobster', serif;
        font-size: 20px;
		color: #666666
      }

      .wf-active h1 {
        font-family: 'Lobster', serif;
        font-size: 45px;
		color: #006699;
		margin-bottom: 10px;
      }

	  div.body {
	  	max-width: 850px;
		margin: auto;
		background-color: #FFFFFF;
		padding: 30px 50px 0px 50px;
		text-align: left;
		height: 60%;
	  }

	  p.bugs {
	  	font: 12px/1.55 Arial,Helvetica,sans-serif;
		text-align: center;
	  }

	  p.otherdata {
	  	font-family: 'Calibri', serif;
		font-size: 15px;
		color: #999999;
		margin-bottom: 20px
	  }

	  .otherdata strong {
	  	color: #000000
	  }
    &amp;amp;amp;amp;lt;/style&amp;amp;amp;amp;gt;
	&amp;amp;amp;amp;lt;?php
		// Display the needed tags for CSS and JS
		echo (class_exists('Mage')) ? $head-&amp;amp;amp;amp;gt;getCssJsHtml() : '' ;
	?&amp;amp;amp;amp;gt;
  &amp;amp;amp;amp;lt;/head&amp;amp;amp;amp;gt;
  &amp;amp;amp;amp;lt;body&amp;amp;amp;amp;gt;
  	&amp;amp;amp;amp;lt;?php
		// Display the Header HTML
		echo (class_exists('Mage')) ? $header-&amp;amp;amp;amp;gt;toHTML() : '' ;
	?&amp;amp;amp;amp;gt;
  	&amp;amp;amp;amp;lt;div class=&quot;body&quot;&amp;amp;amp;amp;gt;
		&amp;amp;amp;amp;lt;h1&amp;amp;amp;amp;gt;How to add Magento blocks, CSS and Javascript to an external site&amp;amp;amp;amp;lt;/h1&amp;amp;amp;amp;gt;
		&amp;amp;amp;amp;lt;p class=&quot;otherdata&quot;&amp;amp;amp;amp;gt;Written by &amp;amp;amp;amp;lt;strong&amp;amp;amp;amp;gt;Richard Feraro&amp;amp;amp;amp;lt;/strong&amp;amp;amp;amp;gt; | Posted on &amp;amp;amp;amp;lt;strong&amp;amp;amp;amp;gt;July 2, 2010&amp;amp;amp;amp;lt;/strong&amp;amp;amp;amp;gt;&amp;amp;amp;amp;lt;/p&amp;amp;amp;amp;gt;
		&amp;amp;amp;amp;lt;p class=&quot;text&quot;&amp;amp;amp;amp;gt;Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis a quam massa. Nullam eget erat metus. Sed vel justo enim. Proin rhoncus laoreet bibendum. Nullam eget est nisi. In eget sem in erat sodales bibendum. Morbi gravida augue sed felis tincidunt a congue dui placerat. Aliquam purus risus, mollis sed ullamcorper non, viverra eu odio. Suspendisse nibh nisi, suscipit at viverra eu, convallis ac odio. Morbi nec sapien eros. Suspendisse nec nulla erat, ac porttitor neque. Integer felis dolor, sollicitudin sed semper et, imperdiet nec turpis. Proin blandit luctus egestas. &amp;amp;amp;amp;lt;/p&amp;amp;amp;amp;gt;
	&amp;amp;amp;amp;lt;/div&amp;amp;amp;amp;gt;
	&amp;amp;amp;amp;lt;?php
		// Display the Footer HTML
		echo (class_exists('Mage')) ? $footer-&amp;amp;amp;amp;gt;toHTML() : '' ;
	?&amp;amp;amp;amp;gt;
  &amp;amp;amp;amp;lt;/body&amp;amp;amp;amp;gt;
&amp;amp;amp;amp;lt;/html&amp;amp;amp;amp;gt;</pre>
<p>The post <a rel="nofollow" href="https://mysillypointofview.com/2010/07/03/how-to-add-magento-blocks-css-and-javascript-to-an-external-site/">How to add Magento blocks, CSS and Javascript to an external site</a> appeared first on <a rel="nofollow" href="https://mysillypointofview.com">My Silly Point of View</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://mysillypointofview.com/2010/07/03/how-to-add-magento-blocks-css-and-javascript-to-an-external-site/feed/</wfw:commentRss>
			<slash:comments>91</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">535</post-id>	</item>
	</channel>
</rss>
