PageRenderTime 29ms CodeModel.GetById 0ms RepoModel.GetById 0ms app.codeStats 0ms

/BlogEngine/BlogEngine.NET/themes/Garland-Revisited/WidgetContainer.cshtml

#
Razor | 14 lines | 13 code | 1 blank | 0 comment | 1 complexity | 8d20bba2bc6eed6f2b051055ac7a0da0 MD5 | raw file
Possible License(s): LGPL-2.1, Apache-2.0, BSD-3-Clause
  1. @using BlogEngine.Core
  2. <div class="widget @Model.Widget.Name.Replace(" ", String.Empty).ToLowerInvariant()"
  3. id="widget@(Model.Widget.WidgetId)">
  4. @Html.Raw(Model.AdminLinks)
  5. @if (Model.Widget.ShowTitle) {
  6. <h3>@Model.Widget.Title</h3>
  7. } else {
  8. <br />
  9. }
  10. <div class="content">
  11. @Html.WidgetContainerBody()
  12. </div>
  13. </div>