Skip to content

Instantly share code, notes, and snippets.

@ashour
Last active April 27, 2020 11:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ashour/448630bce1eb62af90370ae9b968f0f7 to your computer and use it in GitHub Desktop.
Save ashour/448630bce1eb62af90370ae9b968f0f7 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<!-- ... -->
<body>
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button
type="button"
class="navbar-toggle"
data-toggle="collapse"
data-target=".navbar-collapse"
>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
@Html.ActionLink(
Resources.AppName,
"Index",
"Home",
new { area = "" },
new { @class = "navbar-brand" })
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li>@Html.ActionLink("Home", "Index", "Home")</li>
</ul>
@Html.Partial("_CultureSwitcher")
</div>
</div>
</div>
<!-- ... -->
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment