OK, since you want this to be set as soon as you can use the partial view. However, depending on your needs, you will need to have a few partial views (maybe not ideal if the sections are scattered across the _layout page)
your partial view will look like
@model KarateAqua.schoolModel
<div class="bottom_logo">
<a href="/"><span class="inv">@Model.schoolName</span>
</div>
controller
public class SchoolController : Controller
{
public ActionResult Index()
{
return PartialView(schoolModel);
}
}
_layout.cshtml , ,
@Html.Action("Index","School")