Skip to content

Commit

Permalink
Let's make the footer optional in layout views, as we're only definin…
Browse files Browse the repository at this point in the history
…g it in the Index view for now
  • Loading branch information
gorohoroh committed Jul 6, 2018
1 parent b01fff2 commit 597aa18
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion OdeToFoodRider/OdeToFoodRider/Views/Shared/_Layout.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@
<div>
@RenderBody()
</div>
<footer>@RenderSection("footer", required: true)</footer>
<footer>@RenderSection("footer", required: false)</footer>
</body>
</html>
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@
<div>
@RenderBody()
</div>
<footer>@RenderSection("footer", required: true)</footer>
<footer>@RenderSection("footer", required: false)</footer>
</body>
</html>

0 comments on commit 597aa18

Please sign in to comment.