Skip to content
This repository was archived by the owner on Jul 10, 2024. It is now read-only.

Commit 3c52262

Browse files
natemcmasterdavidfowl
authored andcommitted
Update 3. Add front-end, render agenda, set up front-end models.md (#77)
1 parent f6eb644 commit 3c52262

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/3. Add front-end, render agenda, set up front-end models.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -378,9 +378,9 @@ In this session, we'll add the front end web site, with a public (anonymous) hom
378378
@model SessionModel
379379

380380
<ol class="breadcrumb">
381-
<li><a asp-page="/Index">Agenda</a></li>
382-
<li><a asp-page="/Index" asp-route-day="@Model.DayOffset">Day @(Model.DayOffset + 1)</a></li>
383-
<li class="active">@Model.Session.Title</li>
381+
<li class="breadcrumb-item"><a asp-page="/Index">Agenda</a></li>
382+
<li class="breadcrumb-item"><a asp-page="/Index" asp-route-day="@Model.DayOffset">Day @(Model.DayOffset + 1)</a></li>
383+
<li class="breadcrumb-item active">@Model.Session.Title</li>
384384
</ol>
385385

386386
<h1>@Model.Session.Title</h1>
@@ -457,8 +457,8 @@ Currently, the *Session* Abstract is displayed using `@Html.Raw()`. This makes i
457457
@model SpeakerModel
458458

459459
<ol class="breadcrumb">
460-
<li><a asp-page="/Speakers">Speakers</a></li>
461-
<li class="active">@Model.Speaker.Name</li>
460+
<li class="breadcrumb-item"><a asp-page="/Speakers">Speakers</a></li>
461+
<li class="breadcrumb-item active">@Model.Speaker.Name</li>
462462
</ol>
463463

464464
<h2>@Model.Speaker.Name</h2>

0 commit comments

Comments
 (0)