Converted the logo html to haml.

This commit is contained in:
Chris Eppstein 2009-06-05 10:29:34 -07:00
parent 716960232c
commit 7a34f14018
2 changed files with 40 additions and 32 deletions

View File

@ -1,32 +0,0 @@
<html>
<head>
<link rel="stylesheet" href="stylesheets/screen.css" type="text/css" media="screen" charset="utf-8">
</head>
<body>
<div id="logo-large">
<span class="selector">un</span>
<span class="brace">{</span>
<span class="rule">ob:tru-sive;</span>
<span class="brace">}</span>
</div>
<div id="logo-medium">
<span class="selector">un</span>
<span class="brace">{</span>
<span class="rule">ob:tru-sive;</span>
<span class="brace">}</span>
</div>
<div id="logo">
<span class="selector">un</span>
<span class="brace">{</span>
<span class="rule">ob:tru-sive;</span>
<span class="brace">}</span>
</div>
<div id="logo-small">
<span class="selector">un</span>
<span class="brace">{</span>
<span class="rule">ob:tru-sive;</span>
<span class="brace">}</span>
</div>
</body>
</html>

View File

@ -0,0 +1,40 @@
%html
%head
%link{ :href => "stylesheets/screen.css", :rel => "stylesheet", :media => "screen", :type => "text/css", :charset => "utf-8" }
%body
#logo-large
%span.selector
un
%span.brace
{
%span.rule
ob:tru-sive;
%span.brace
}
#logo-medium
%span.selector
un
%span.brace
{
%span.rule
ob:tru-sive;
%span.brace
}
#logo
%span.selector
un
%span.brace
{
%span.rule
ob:tru-sive;
%span.brace
}
#logo-small
%span.selector
un
%span.brace
{
%span.rule
ob:tru-sive;
%span.brace
}