diff --git a/foo/templates/index.html b/foo/templates/index.html
index 47c85ab..1fb0c3e 100644
--- a/foo/templates/index.html
+++ b/foo/templates/index.html
@@ -26,18 +26,18 @@
   <meta name="viewport" content="width=device-width, initial-scale=1.0">
 
   <!-- Place favicon.ico & apple-touch-icon.png in the root of your domain and delete these references -->
-  <link rel="shortcut icon" href="/favicon.ico">
-  <link rel="apple-touch-icon" href="/apple-touch-icon.png">
+  <link rel="shortcut icon" href="${request.static_url('foo:static/favicon.ico')}">
+  <link rel="apple-touch-icon" href="${request.static_url('foo:static/apple-touch-icon.png')}">
 
 
   <!-- CSS : implied media="all" -->
-  <link rel="stylesheet" href="css/style.css?v=2">
+  <link rel="stylesheet" href="${request.static_url('foo:static/css/style.css')}?v=2">
 
   <!-- Uncomment if you are specifically targeting less enabled mobile browsers
   <link rel="stylesheet" media="handheld" href="css/handheld.css?v=2">  -->
  
   <!-- All JavaScript at the bottom, except for Modernizr which enables HTML5 elements & feature detects -->
-  <script src="js/libs/modernizr-1.6.min.js"></script>
+  <script src="${request.static_url('foo:static/js/libs/modernizr-1.6.min.js')}"></script>
 
 </head>
 
@@ -61,17 +61,17 @@
 
   <!-- Grab Google CDN's jQuery. fall back to local if necessary -->
   <script src="//ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.js"></script>
-  <script>!window.jQuery && document.write(unescape('%3Cscript src="js/libs/jquery-1.4.4.js"%3E%3C/script%3E'))</script>
+  <script>!window.jQuery && document.write(unescape('%3Cscript src="${request.static_url('foo:static/js/libs/jquery-1.4.4.js')}"%3E%3C/script%3E'))</script>
   
   
   <!-- scripts concatenated and minified via ant build script-->
-  <script src="js/plugins.js"></script>
-  <script src="js/script.js"></script>
+  <script src="${request.static_url('foo:static/js/plugins.js')}"></script>
+  <script src="${request.static_url('foo:static/js/script.js')}"></script>
   <!-- end concatenated and minified scripts-->
   
   
   <!--[if lt IE 7 ]>
-    <script src="js/libs/dd_belatedpng.js"></script>
+    <script src="${request.static_url('foo:static/js/libs/dd_belatedpng.js')}"></script>
     <script>DD_belatedPNG.fix('img, .png_bg'); // Fix any <img> or .png_bg bg-images. Also, please read goo.gl/mZiyb </script>
   <![endif]-->
