Ça fait Bonk.
This commit is contained in:
parent
da91c6ea28
commit
9e0a6916ea
@ -23,6 +23,20 @@ namespace GrossesMitaines.Controllers {
|
||||
return View();
|
||||
}
|
||||
|
||||
public IActionResult AboutUs() {
|
||||
return View();
|
||||
}
|
||||
|
||||
public IActionResult ContactUs() {
|
||||
return View();
|
||||
}
|
||||
|
||||
public class ContactModel { }; // À DELETER QUAND LA CLASSE/FORMULAIRE SERONT FAIT.
|
||||
[HttpPost]
|
||||
public IActionResult ContactUs(ContactModel model) {
|
||||
return View(model);
|
||||
}
|
||||
|
||||
[ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore = true)]
|
||||
public IActionResult Error() {
|
||||
return View(new ErrorViewModel { RequestId = Activity.Current?.Id ?? HttpContext.TraceIdentifier });
|
||||
|
@ -0,0 +1,4 @@
|
||||
@{
|
||||
ViewData["Title"] = "À propos de nous";
|
||||
}
|
||||
WFWFFW
|
@ -0,0 +1,4 @@
|
||||
@{
|
||||
ViewData["Title"] = "Nous contacter";
|
||||
}
|
||||
PFSFNMFW
|
@ -1,9 +1,13 @@
|
||||
@{
|
||||
ViewData["Title"] = "Maison";
|
||||
}
|
||||
|
||||
<br>
|
||||
<br>
|
||||
<div class="container col-10 offset-1 text-primary text-right text-sm-right" style="font-family:Comic Sans MS;">
|
||||
<h1>Des produits bien commodes faits par des aînées d'expérience.</h1>
|
||||
</div>
|
||||
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<vc:en-vedette></vc:en-vedette>
|
@ -1,4 +1,6 @@
|
||||
@{
|
||||
ViewData["Title"] = "Privacy Policy";
|
||||
ViewData["Title"] = "Police de vie privée";
|
||||
}
|
||||
<h1>@ViewData["Title"]</h1>
|
||||
<h1 class="text-primary">@ViewData["Title"]</h1>
|
||||
|
||||
<p class="text-primary">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
|
@ -1,6 +1,9 @@
|
||||
<div class="container col-7 offset-1 text-primary" style="font-family:Comic Sans MS;">
|
||||
<div style="height:250px;">
|
||||
<div class="row">
|
||||
<div class="col-md-7 col-sm-12 offset-md-1 offset-sm-0 text-primary" style="font-family:Comic Sans MS;">
|
||||
<h1>Nos produits vedettes:</h1>
|
||||
</div>
|
||||
</div>
|
||||
<div class="carousel slide" data-ride="carousel">
|
||||
<div class="carousel-inner">
|
||||
<div class="carousel-item active">
|
||||
@ -12,7 +15,7 @@
|
||||
<h3>Ceinture flèchée</h3>
|
||||
<p>Pour faire votre propre bonhomme de 1837, comme dans le bon vieux temps.</p>
|
||||
<h5>Seulement</h5>
|
||||
<h4 class="offset-1">85,86$+tx</h4>
|
||||
<h4 class="offset-1 text-success">85,86$+tx</h4>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@ -25,7 +28,7 @@
|
||||
<h3>Pantoufles du Canadien en Phentex</h3>
|
||||
<p>Parce que ça sent la coupe!</p>
|
||||
<h5>Seulement</h5>
|
||||
<h4 class="offset-1">15,64$+tx</h4>
|
||||
<h4 class="offset-1 text-success">15,64$+tx</h4>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@ -38,9 +41,10 @@
|
||||
<h3>Jean-Luc Mongrain</h3>
|
||||
<p>On ne lui ferait pas mal, en tout cas!!</p>
|
||||
<h5>Seulement</h5>
|
||||
<h4 class="offset-1">1453,12$+tx</h4>
|
||||
<h4 class="offset-1 text-success">1453,12$+tx</h4>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
@ -9,14 +9,14 @@
|
||||
<link rel="stylesheet" href="~/font-awesome/css/all.min.css" />
|
||||
</head>
|
||||
<body class="bg-dark">
|
||||
<audio autoplay>
|
||||
<Source src="audio/poupee.mp3" type="audio/mpeg" />
|
||||
<audio autoplay muted>
|
||||
<Source src="~/audio/poupee.mp3" type="audio/mpeg" />
|
||||
</audio>
|
||||
|
||||
<header class="bg-primary">
|
||||
<nav class="navbar navbar-expand-sm navbar-toggleable-sm navbar-light border-bottom box-shadow text-white mb-3">
|
||||
<div class="container">
|
||||
<a class="navbar-brand" asp-area="" asp-controller="Home" asp-action="Index"><img style="width:64px;" src="img/LesGrossesMitaines.png" /></a>
|
||||
<a class="navbar-brand" asp-area="" asp-controller="Home" asp-action="Index"><img style="width:64px;" src="~/img/LesGrossesMitaines.png" /></a>
|
||||
<button class="navbar-toggler bg-light text-primary" type="button" data-toggle="collapse" data-target=".navbar-collapse" aria-controls="navbarSupportedContent"
|
||||
aria-expanded="false" aria-label="Toggle navigation">
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
@ -41,6 +41,7 @@
|
||||
<div id="search-icon" class="fa fa-search"></div>
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<div class="container">
|
||||
|
||||
<main role="main" class="pb-3">
|
||||
@ -48,9 +49,25 @@
|
||||
</main>
|
||||
</div>
|
||||
|
||||
<div style="height:100px;"/>
|
||||
<footer class="border-top footer text-light bg-primary">
|
||||
<div class="container" style="font-family:Comic Sans MS;">
|
||||
© 2022 - Les Grosses Mitaines à Ginette et Monique, inc. - <a asp-area="" asp-controller="Home" asp-action="Privacy" class="text-info" style="font-family:Comic Sans MS;">Vie Privée</a>
|
||||
<div class="offset-1">
|
||||
<div class="row">
|
||||
<div class="col">
|
||||
<a asp-area="" asp-controller="Home" asp-action="AboutUs" class="text-light" style="font-family:Comic Sans MS;">À Propos</a>
|
||||
</div>
|
||||
<div class="col">
|
||||
<a asp-area="" asp-controller="Home" asp-action="ContactUs" class="text-light" style="font-family:Comic Sans MS;">Nous Contacter</a>
|
||||
</div>
|
||||
<div class="col">
|
||||
<a asp-area="" asp-controller="Home" asp-action="Privacy" class="text-light" style="font-family:Comic Sans MS;">Vie Privée</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="container text-info" style="font-family:Comic Sans MS;">
|
||||
© 2022 - Les Grosses Mitaines à Ginette et Monique, inc.
|
||||
</div>
|
||||
</footer>
|
||||
<script src="~/lib/jquery/dist/jquery.min.js"></script>
|
||||
|
Loading…
Reference in New Issue
Block a user