Skip to content

Commit

Permalink
Default theme - minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
KrzysztofPajak committed Feb 20, 2019
1 parent 6172d35 commit 7f2acfd
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
if (Model.PagingFilteringContext.ViewMode == "grid")
{
<div class="manufactureGrid">
<div class="row flex-grid px-3">
<div class="row flex-grid">
@foreach (var product in Model.Products)
{
<div class="col-lg-4 col-sm-6 col-6 product-container">
Expand All @@ -73,8 +73,8 @@
}
else
{
<div class="col-12">
<div class="row">
<div class="row">
<div class="col-12">
@foreach (var product in Model.Products)
{
<partial name="_ProductBoxList" model="product" />
Expand All @@ -83,7 +83,6 @@
</div>
}
}

@{
var pager = Html.Pager(Model.PagingFilteringContext).QueryParam("pagenumber");
}
Expand All @@ -94,7 +93,6 @@
</div>
}
@await Component.InvokeAsync("Widget", new { widgetZone = "manufacturerdetails_bottom", additionalData = Model.Id })

</div>


Expand Down
2 changes: 1 addition & 1 deletion Grand.Web/Views/Common/ContactUs.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
Html.AddTitleParts(T("PageTitle.ContactUs").Text);
}
<div class="page contact-page">
<h1 class="generalTitle">@T("PageTitle.ContactUs")</h1>
<h1 class="generalTitle">@T("PageTitle.ContactUs")</h1>
<div class="generalMarginSupporter text-xs-left">
@await Component.InvokeAsync("TopicBlock", new { systemName = "ContactUs" })
@await Component.InvokeAsync("Widget", new { widgetZone = "contactus_top" })
Expand Down
4 changes: 2 additions & 2 deletions Grand.Web/Views/Common/PageNotFound.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
Html.AddTitleParts(T("PageTitle.PageNotFound").Text);
}
<div class="page text-xs-center not-found-page">
<h2 class="text-xs-center generalTitle">@T("PageTitle.PageNotFound")</h2>
@await Component.InvokeAsync("TopicBlock", new { systemName = "PageNotFound" })
<h2 class="text-xs-center generalTitle">@T("PageTitle.PageNotFound")</h2>
@await Component.InvokeAsync("TopicBlock", new { systemName = "PageNotFound" })
</div>
1 change: 0 additions & 1 deletion Grand.Web/Views/Common/Sitemap.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,5 @@
</div>
}
@await Component.InvokeAsync("Widget", new { widgetZone = "sitemap_after" })

</div>

4 changes: 2 additions & 2 deletions Grand.Web/Views/Common/StoreClosed.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
Html.AddTitleParts(T("PageTitle.StoreClosed").Text);
}
<div class="page store-closed-page">
<h1 class="h2 generalTitle">@T("StoreClosed")</h1>
@T("StoreClosed.Hint")
<h1 class="h2 generalTitle">@T("StoreClosed")</h1>
@T("StoreClosed.Hint")
</div>

0 comments on commit 7f2acfd

Please sign in to comment.