diff options
| author | Syndamia <kamen.d.mladenov@protonmail.com> | 2021-05-06 19:38:51 +0300 |
|---|---|---|
| committer | Syndamia <kamen.d.mladenov@protonmail.com> | 2021-05-06 19:38:51 +0300 |
| commit | 985d0a6f6dcfffaa227c117aaa184b4846009c0a (patch) | |
| tree | f80370308f7492e9df0f5dc3e113659ae63d839a /ExamTemplate/Web/Views/Shared/_Navbar.cshtml | |
| parent | 53921ccea49bd8a7840d5bbc71c57c8691ed92bf (diff) | |
| download | it-kariera-exam-template-985d0a6f6dcfffaa227c117aaa184b4846009c0a.tar it-kariera-exam-template-985d0a6f6dcfffaa227c117aaa184b4846009c0a.tar.gz it-kariera-exam-template-985d0a6f6dcfffaa227c117aaa184b4846009c0a.zip | |
Moved nabvar to it's own cshtml and simplified it a lot; Removed most of the default css and js from wwwroot; Implemented a very simple custom styling that mimmics the default asp.net bootstrap one
Diffstat (limited to 'ExamTemplate/Web/Views/Shared/_Navbar.cshtml')
| -rw-r--r-- | ExamTemplate/Web/Views/Shared/_Navbar.cshtml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/ExamTemplate/Web/Views/Shared/_Navbar.cshtml b/ExamTemplate/Web/Views/Shared/_Navbar.cshtml new file mode 100644 index 0000000..f81d082 --- /dev/null +++ b/ExamTemplate/Web/Views/Shared/_Navbar.cshtml @@ -0,0 +1,14 @@ +<nav class="navbar border-bottom box-shadow"> + <div class="middle-content-container navbar-contents"> + <section> + <b> + <a asp-controller="Home" asp-action="Index">Web</a> + </b> + </section> + <div class="flex-spacer"></div> + <section> + <a asp-controller="Home" asp-action="Index">Home</a> + <a asp-controller="Home" asp-action="Privacy">Privacy</a> + </section> + </div> +</nav> |
