You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@deltacloud.apache.org by lu...@apache.org on 2010/07/09 01:35:41 UTC

svn commit: r962195 - /incubator/deltacloud/trunk/server/libexec/views/layout.html.haml

Author: lutter
Date: Thu Jul  8 23:35:41 2010
New Revision: 962195

URL: http://svn.apache.org/viewvc?rev=962195&view=rev
Log:
* views/layout.html.haml: fix links to stylesheets/images for Sinatra

Modified:
    incubator/deltacloud/trunk/server/libexec/views/layout.html.haml

Modified: incubator/deltacloud/trunk/server/libexec/views/layout.html.haml
URL: http://svn.apache.org/viewvc/incubator/deltacloud/trunk/server/libexec/views/layout.html.haml?rev=962195&r1=962194&r2=962195&view=diff
==============================================================================
--- incubator/deltacloud/trunk/server/libexec/views/layout.html.haml (original)
+++ incubator/deltacloud/trunk/server/libexec/views/layout.html.haml Thu Jul  8 23:35:41 2010
@@ -3,16 +3,16 @@
 
 %html
   %head
-    = stylesheet_link_tag 'compiled/screen.css', :media => 'screen, projection'
-    = stylesheet_link_tag 'compiled/print.css', :media => 'print'
+    = stylesheet_link_tag '/stylesheets/compiled/screen.css', :media => 'screen, projection'
+    = stylesheet_link_tag '/stylesheets/compiled/print.css', :media => 'print'
     /[if lt IE 8]
-      = stylesheet_link_tag 'compiled/ie.css', :media => 'screen, projection'
-    = stylesheet_link_tag 'compiled/application.css', :media => 'screen, projection'
+      = stylesheet_link_tag '/stylesheets/compiled/ie.css', :media => 'screen, projection'
+    = stylesheet_link_tag '/stylesheets/compiled/application.css', :media => 'screen, projection'
   %body
     #wrapper
       #header
-        = link_to image_tag( "logo-wide.png" ), root_url
-      = bread_crumb 
+        = link_to image_tag( "/images/logo-wide.png" ), root_url
+      = bread_crumb
       #content
         = yield
       #footer
@@ -21,5 +21,3 @@
         #copyright
           Copyright 2009, 2010
           #{link_to 'Red Hat', 'http://redhat.com'} and individual contributors.
-      
-