Updated Cotoso theme CSS.

Fixed triple site name in page title.
Removed trailing "Author" content at the end of blog pages.

--HG--
branch : dev
This commit is contained in:
Michael Dorian Bach
2010-03-09 20:55:06 -08:00
parent 189d1e9a10
commit 274b96449b
5 changed files with 5 additions and 7 deletions

View File

@@ -59,7 +59,7 @@ blockquote, q {
visibility: hidden;
}
.group {display: inline-block;} /* for IE/Mac */
/*========= General Typography =========*/

View File

@@ -10,5 +10,4 @@
<% Html.RegisterLink(new LinkEntry { Rel = "wlwmanifest", Type = "application/wlwmanifest+xml", Href = Url.BlogLiveWriterManifest(Model.Item.Slug) });%>
<% Html.RegisterLink(new LinkEntry { Rel = "EditURI", Type = "application/rsd+xml", Title = "RSD", Href = Url.BlogRsd(Model.Item.Slug) });%>
<% Html.Zone("primary", ":manage :metadata");
Html.ZonesAny(); %>
<% Html.Zone("primary"); %>

View File

@@ -3,5 +3,4 @@
<%@ Import Namespace="Orchard.Blogs.Extensions"%>
<%@ Import Namespace="Orchard.Blogs.Models"%>
<h1 class="page-title"><%=Html.TitleForPage(Model.Item.Title)%></h1>
<% Html.Zone("primary", ":manage :metadata");
Html.ZonesAny(); %>>
<% Html.Zone("primary"); %>

View File

@@ -2,7 +2,7 @@
<%@ Import Namespace="Orchard.Mvc.ViewModels" %>
<div class="footer group">
<ul class="group">
<li>&copy 2010 <%=Html.TitleForPage(Html.SiteName()) %>. All rights reserved.</li>
<li>&copy;2010 <%= Html.Encode(Html.SiteName()) %>. All rights reserved.</li>
<li><a href="http://www.orchardproject.net" title="Orchard Project">Powered by Orchard</a></li>
</ul>
</div>

View File

@@ -2,7 +2,7 @@
<div class="header">
<div class="brand group">
<div class="title"><%=Html.TitleForPage(Html.SiteName()) %></div>
<div class="title"><%=Html.Encode(Html.SiteName()) %></div>
<% Html.Include("User"); %>
</div>
</div>