Footer layout

broken/ef
Paul Schneider 2 years ago
parent 5d59760a77
commit d7f0a5db36
7 changed files with 7888 additions and 27 deletions

30
.gitignore vendored

@ -1,17 +1,19 @@
src/isnd/bin/ .sass-cache/
src/isnd/obj/ /src/isnd/bin/
src/isn/obj /src/isnd/obj/
src/isn/bin /src/isn/obj
src/isn/.vscode/ /src/isn/bin
test/isnd.tests/obj/ /src/isn/.vscode/
test/isnd.tests/bin/ /test/isnd.tests/obj/
packages/ /test/isnd.tests/bin/
/packages/
bower_components/ bower_components/
test/isn.tests/bin /test/isn.tests/bin
test/isn.tests/obj/ /test/isn.tests/obj/
appsettings.Testing.json appsettings.Testing.json
appsettings.Development.json appsettings.Development.json
wwwroot/.sass-cache/ /wwwroot/.sass-cache/
src/isnd/wwwroot/.sass-cache/ /src/isnd/wwwroot/.sass-cache/
src/isn.abst/bin /src/isn.abst/bin
src/isn.abst/obj /src/isn.abst/obj
/src/isnd/packages/

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>@ViewData["Title"] - isnd</title> <title>@ViewData["Title"] - isnd</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous"> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel="stylesheet" href="~/css/site-g.css" /> <link rel="stylesheet" href="~/css/site.css" />
</head> </head>
<body> <body>
<header> <header>
@ -39,9 +39,8 @@
</main> </main>
</div> </div>
<footer class="border-top footer text-muted"> <footer class="border-top footer text-muted" style="position:bottom">
&copy; 2021 - isn <span>@SiteHelpers.SemVer</span>- <a asp-area="" asp-controller="Home" asp-action="Privacy">Privacy</a> isn @SiteHelpers.SemVer &copy; 2021-2022 Paul Schneider - <a asp-area="" asp-controller="Home" asp-action="Privacy">Privacy</a>
</div>
</footer> </footer>
<!-- <script src="/lib/jquery/dist/jquery.slim.min.js" ></script> <!-- <script src="/lib/jquery/dist/jquery.slim.min.js" ></script>
<script src="/lib/popper/popper.min.js"></script> <script src="/lib/popper/popper.min.js"></script>

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

@ -87,4 +87,9 @@ background-color: black;
color: rgb(119, 255, 255); color: rgb(119, 255, 255);
background-color: black; background-color: black;
} }
footer {
position: fixed;
bottom: 0;
z-index:-10;
}

@ -8,14 +8,14 @@ using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging; using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Options; using Microsoft.Extensions.Options;
using System.Collections.Generic; using System.Collections.Generic;
using System.Threading.Tasks;
using System.Diagnostics;
namespace isnd.host.tests namespace isnd.host.tests
{ {
public class UnitTestWebHost public class UnitTestWebHost
{ {
[Fact] [Fact]
public void TestHaveTestDbContextAndMigrate() public void TestHaveTestDbContextAndMigrate()
{ {
string envVar = Environment.GetEnvironmentVariable("ASPNETCORE_ENVIRONMENT"); string envVar = Environment.GetEnvironmentVariable("ASPNETCORE_ENVIRONMENT");
@ -44,15 +44,19 @@ namespace isnd.host.tests
.UseStartup<Startup>() .UseStartup<Startup>()
.Build(); .Build();
[Fact]
private class Butts: List<Butt> public async Task NugetInstallsTest()
{ {
public bool Im12 { get; set; } IWebHost webhost = BuildWebHost(new string[0]);
Task running = Task.Run(async () => await webhost.StartAsync());
ProcessStartInfo psi = new ProcessStartInfo("nuget");
psi.ArgumentList.Add("install");
psi.ArgumentList.Add("isn");
Process p = Process.Start(psi);
p.WaitForExit();
await webhost.StopAsync();
} }
private class Butt
{
public bool Im12 { get; set; }
}
} }
} }

@ -10,5 +10,12 @@
"Port": 25, "Port": 25,
"SenderName": "Paul Schneider", "SenderName": "Paul Schneider",
"SenderEmail": "paul@pschneider.fr" "SenderEmail": "paul@pschneider.fr"
},
"Kestrel": {
"Endpoints": {
"Http": {
"Url": "http://localhost:5005"
}
}
} }
} }

Loading…