I made a clean installation of uBlogsy 3.0 in umbraco 6.0.0 and I get this error when I publish the site.
@*
Sample home layout template. Your home layout does NOT have to inherit from _uBlogsyBaseSite.
*@
@inherits UmbracoTemplatePage
@{
Layout = "_uBlogsyBaseSite.cshtml";
}
@section uBlogsyHead
{
}
@section uBlogsyMain
{
@Umbraco.Field("uBlogsyContentTitle")
@Umbraco.Field("uBlogsyContentBody")
@* list posts for home - this only works if the home page is
a parent, or sibling of uBlogsyLanding *@
@Html.CachedPartial("uBlogsy/Widgets/uBlogsyWidgetListPostsForHome",
Model, 0, false, true, new ViewDataDictionary(ViewData) { { "ItemLimit",
5 } })
Your home layout does NOT have to inherit from...
Hi,
I made a clean installation of uBlogsy 3.0 in umbraco 6.0.0 and I get this error when I publish the site.
@* Sample home layout template. Your home layout does NOT have to inherit from _uBlogsyBaseSite. *@ @inherits UmbracoTemplatePage @{ Layout = "_uBlogsyBaseSite.cshtml"; } @section uBlogsyHead { } @section uBlogsyMain {
@Umbraco.Field("uBlogsyContentTitle")
@Umbraco.Field("uBlogsyContentBody") @* list posts for home - this only works if the home page is a parent, or sibling of uBlogsyLanding *@ @Html.CachedPartial("uBlogsy/Widgets/uBlogsyWidgetListPostsForHome", Model, 0, false, true, new ViewDataDictionary(ViewData) { { "ItemLimit", 5 } })}
were you in mvc mode before installing the package?
That solved the problem, thanks!
is working on a reply...