Removed old version
This commit is contained in:
79
Pages/Shared/_Layout.cshtml
Normal file
79
Pages/Shared/_Layout.cshtml
Normal file
@@ -0,0 +1,79 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>@ViewData["Title"] - MyWebsite</title>
|
||||
<link rel="stylesheet" href="~/lib/bootstrap/dist/css/bootstrap.min.css" />
|
||||
<link rel="stylesheet" href="~/css/site.css" asp-append-version="true" />
|
||||
<link rel="stylesheet" href="~/MyWebsite.styles.css" asp-append-version="true" />
|
||||
<link rel="stylesheet" href="~/lib/FontAwesome/css/all.css">
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<header>
|
||||
<div class="row GradientText header">
|
||||
<div class="col">
|
||||
<a asp-area="" asp-page="/Index"><img src="~/Content/Logo.png" class="logo"/></a>
|
||||
</div>
|
||||
<div class="col menu">
|
||||
<ul>
|
||||
<li><a asp-area="" asp-page="/Index" class="GradientText"><button class="btn-hover color-1">Accueil</button></a></li>
|
||||
<li><a asp-area="" asp-page="/Technologies" class="GradientText"><button class="btn-hover color-1">Technologies</button></a></li>
|
||||
<li><a asp-area="" asp-page="/Portfolio" class="GradientText"><button class="btn-hover color-1">Projets</button></a></li>
|
||||
<li><a asp-area="" asp-page="/Objectif" class="GradientText"><button class="btn-hover color-1">Objectifs</button></a></li>
|
||||
<li><a asp-area="" asp-page="/Contact" class="GradientText"><button class="btn-hover color-1">Contact</button></a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<hr/>
|
||||
</header>
|
||||
<div class="row GradientBorder">
|
||||
<main role="main" class="pb-3">
|
||||
@RenderBody()
|
||||
</main>
|
||||
</div>
|
||||
<footer id="footer">
|
||||
<hr/>
|
||||
<div class="row Glow">
|
||||
<ul>
|
||||
<li>
|
||||
<a href="https://github.com/thatscringebro">
|
||||
<i class="fab fa-github"></i>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="https://gitlab.com/thatscringebro">
|
||||
<i class="fab fa-gitlab"></i>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="https://www.linkedin.com/in/merlin-g%C3%A9linas-4b5200243/">
|
||||
<i class="fab fa-linkedin-in"></i>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="https://www.facebook.com/merlin.gelinas.1">
|
||||
<i class="fab fa-facebook"></i>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="row">
|
||||
<i class="fa fa-phone" aria-hidden="true" style="margin-bottom: 0.2em;"> <a href="tel:+4502780433" class="tel" style="font-family: JetBrains_Mono;">(450)278-0433</a></i>
|
||||
<i class="fa fa-envelope" aria-hidden="true"> <a href="mailto:merlinge@tutanota.com" class="mail" style="font-family: JetBrains_Mono;">merlinge@tutanota.com</a></i>
|
||||
</div>
|
||||
<hr class="Copyright"/>
|
||||
<div class="row">
|
||||
<p>Copyright © 2022 Merlin Gélinas</p>
|
||||
</div>
|
||||
</footer>
|
||||
</div>
|
||||
|
||||
<script src="~/lib/jquery/dist/jquery.min.js"></script>
|
||||
<script src="~/lib/bootstrap/dist/js/bootstrap.bundle.min.js"></script>
|
||||
<script src="~/js/site.js" asp-append-version="true"></script>
|
||||
|
||||
@await RenderSectionAsync("Scripts", required: false)
|
||||
</body>
|
||||
</html>
|
||||
48
Pages/Shared/_Layout.cshtml.css
Normal file
48
Pages/Shared/_Layout.cshtml.css
Normal file
@@ -0,0 +1,48 @@
|
||||
/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
|
||||
for details on configuring this project to bundle and minify static web assets. */
|
||||
|
||||
a.navbar-brand {
|
||||
white-space: normal;
|
||||
text-align: center;
|
||||
word-break: break-all;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #0077cc;
|
||||
}
|
||||
|
||||
.btn-primary {
|
||||
color: #fff;
|
||||
background-color: #1b6ec2;
|
||||
border-color: #1861ac;
|
||||
}
|
||||
|
||||
.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
|
||||
color: #fff;
|
||||
background-color: #1b6ec2;
|
||||
border-color: #1861ac;
|
||||
}
|
||||
|
||||
.border-top {
|
||||
border-top: 1px solid #e5e5e5;
|
||||
}
|
||||
.border-bottom {
|
||||
border-bottom: 1px solid #e5e5e5;
|
||||
}
|
||||
|
||||
.box-shadow {
|
||||
box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
|
||||
}
|
||||
|
||||
button.accept-policy {
|
||||
font-size: 1rem;
|
||||
line-height: inherit;
|
||||
}
|
||||
|
||||
.footer {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
width: 100%;
|
||||
white-space: nowrap;
|
||||
line-height: 60px;
|
||||
}
|
||||
2
Pages/Shared/_ValidationScriptsPartial.cshtml
Normal file
2
Pages/Shared/_ValidationScriptsPartial.cshtml
Normal file
@@ -0,0 +1,2 @@
|
||||
<script src="~/lib/jquery-validation/dist/jquery.validate.min.js"></script>
|
||||
<script src="~/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js"></script>
|
||||
Reference in New Issue
Block a user