|
1 | 1 | <!DOCTYPE html> |
2 | 2 | <html lang="en"> |
3 | 3 | <head> |
4 | | - <meta charset="utf-8" /> |
5 | | - <meta name="viewport" content="width=device-width, initial-scale=1.0" /> |
6 | | - <title>@ViewData["Title"] - Blog</title> |
| 4 | + <meta charset="utf-8" /> |
| 5 | + <meta name="viewport" content="width=device-width, initial-scale=1.0" /> |
| 6 | + <title>@ViewData["Title"] - Blog</title> |
7 | 7 |
|
8 | | - <meta name="description" content="@ViewBag.Description"/> |
9 | | - <meta name="keywords" content="@ViewBag.Keywords"/> |
| 8 | + <meta name="description" content="@ViewBag.Description" /> |
| 9 | + <meta name="keywords" content="@ViewBag.Keywords" /> |
| 10 | + <meta property="og:site_name" content="Blog"> |
10 | 11 |
|
11 | | - <link rel="stylesheet" href="~/lib/bootstrap/dist/css/bootstrap.min.css" /> |
12 | | - <link rel="stylesheet" href="~/css/site.css" /> |
| 12 | + <link rel="stylesheet" href="~/lib/bootstrap/dist/css/bootstrap-lux.min.css" /> |
| 13 | + <link rel="stylesheet" href="~/css/site.css" /> |
13 | 14 |
|
14 | | - <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.13/css/all.css" integrity="sha384-DNOHZ68U8hZfKXOrtjWvjxusGo9WQnrNx2sqG0tfsghAvtVlRW3tvkXWZh58N9jp" |
15 | | - crossorigin="anonymous"> |
| 15 | + <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.13/css/all.css" integrity="sha384-DNOHZ68U8hZfKXOrtjWvjxusGo9WQnrNx2sqG0tfsghAvtVlRW3tvkXWZh58N9jp" |
| 16 | + crossorigin="anonymous"> |
16 | 17 | </head> |
17 | 18 | <body> |
18 | 19 | <header> |
19 | | - <nav class="navbar navbar-expand-sm navbar-toggleable-sm navbar-light bg-white border-bottom box-shadow mb-3"> |
| 20 | + <nav class="navbar sticky-top navbar-expand-sm navbar-toggleable-sm navbar-light border-bottom box-shadow mb-3"> |
20 | 21 | <div class="container"> |
21 | 22 | <a class="navbar-brand" asp-area="" asp-controller="Home" asp-action="Index">Blog</a> |
22 | 23 | <button class="navbar-toggler" type="button" data-toggle="collapse" data-target=".navbar-collapse" aria-controls="navbarSupportedContent" |
|
25 | 26 | </button> |
26 | 27 | <div class="navbar-collapse collapse d-sm-inline-flex flex-sm-row-reverse"> |
27 | 28 | <partial name="_LoginPartial" /> |
28 | | - <ul class="navbar-nav flex-grow-1"> |
| 29 | + <ul class="navbar-nav"> |
29 | 30 | <li class="nav-item"> |
30 | | - <a class="nav-link text-dark" asp-area="" asp-controller="Home" asp-action="Index">Home</a> |
| 31 | + <a class="nav-link" asp-area="" asp-controller="Home" asp-action="Index">Home</a> |
31 | 32 | </li> |
32 | 33 | <li class="nav-item"> |
33 | | - <a class="nav-link text-dark" asp-area="" asp-controller="Posts" asp-action="Index">Posts</a> |
| 34 | + <a class="nav-link" asp-area="" asp-controller="Posts" asp-action="Index">Posts</a> |
34 | 35 | </li> |
35 | 36 | <li class="nav-item"> |
36 | | - <a class="nav-link text-dark" asp-area="" asp-controller="Tags" asp-action="Index">Tags</a> |
| 37 | + <a class="nav-link" asp-area="" asp-controller="Tags" asp-action="Index">Tags</a> |
37 | 38 | </li> |
38 | 39 | <li class="nav-item"> |
39 | | - <a class="nav-link text-dark" asp-area="" asp-controller="AboutMe" asp-action="Index">About Me</a> |
| 40 | + <a class="nav-link" asp-area="" asp-controller="AboutMe" asp-action="Index">About Me</a> |
40 | 41 | </li> |
41 | 42 | </ul> |
42 | 43 | </div> |
|
50 | 51 | </div> |
51 | 52 |
|
52 | 53 | <footer class="border-top footer text-muted"> |
53 | | - <div class="container"> |
54 | | - © 2020 - Blog - <a asp-area="" asp-controller="Home" asp-action="Privacy">Privacy</a> |
| 54 | + <div class="container text-center"> |
| 55 | + © @DateTime.Now.Year - <a asp-controller="Home" asp-action="Index">Blog</a> - @ViewBag?.Title |
55 | 56 | </div> |
56 | 57 | </footer> |
57 | 58 | <script src="~/lib/jquery/dist/jquery.min.js"></script> |
|
0 commit comments