CSS Fixes for Contoso Theme.

Add HTML for markup around various elements in module views index/search

--HG--
branch : dev
This commit is contained in:
Michael Dorian Bach
2010-03-09 19:35:06 -08:00
parent c52f802827
commit bdff945dbc
15 changed files with 171 additions and 108 deletions

View File

@@ -1,6 +1,6 @@
<%@ Control Language="C#" Inherits="Orchard.Mvc.ViewUserControl<TagsIndexViewModel>" %>
<%@ Import Namespace="Orchard.Tags.ViewModels"%>
<h1><%=Html.TitleForPage(T("Tags").ToString())%></h1>
<h1 class="page-title"><%=Html.TitleForPage(T("Tags").ToString())%></h1>
<%=Html.UnorderedList(
Model.Tags,
(t, i) => Html.ActionLink(

View File

@@ -1,5 +1,5 @@
<%@ Control Language="C#" Inherits="Orchard.Mvc.ViewUserControl<TagsSearchViewModel>" %>
<%@ Import Namespace="Orchard.Tags.ViewModels"%>
<% Html.AddTitleParts(T("Tags").ToString(), T("Contents tagged with {0}", Model.TagName).ToString()); %>
<h1><%=T("Contents tagged with <span>{0}</span>", Html.Encode(Model.TagName)) %></h1>
<%=Html.UnorderedList(Model.Items, (c, i) => Html.DisplayForItem(c).ToHtmlString(), "contentItems") %>
<h1 class="page-title"><%=T("Contents tagged with <span>{0}</span>", Html.Encode(Model.TagName)) %></h1>
<%=Html.UnorderedList(Model.Items, (c, i) => Html.DisplayForItem(c).ToHtmlString(), "taggedPosts contentItems") %>