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/
src/isnd/obj/
src/isn/obj
src/isn/bin
src/isn/.vscode/
test/isnd.tests/obj/
test/isnd.tests/bin/
packages/
.sass-cache/
/src/isnd/bin/
/src/isnd/obj/
/src/isn/obj
/src/isn/bin
/src/isn/.vscode/
/test/isnd.tests/obj/
/test/isnd.tests/bin/
/packages/
bower_components/
test/isn.tests/bin
test/isn.tests/obj/
/test/isn.tests/bin
/test/isn.tests/obj/
appsettings.Testing.json
appsettings.Development.json
wwwroot/.sass-cache/
src/isnd/wwwroot/.sass-cache/
src/isn.abst/bin
src/isn.abst/obj
/wwwroot/.sass-cache/
/src/isnd/wwwroot/.sass-cache/
/src/isn.abst/bin
/src/isn.abst/obj
/src/isnd/packages/

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<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="~/css/site-g.css" />
<link rel="stylesheet" href="~/css/site.css" />
</head>
<body>
<header>
@ -39,9 +39,8 @@
</main>
</div>
<footer class="border-top footer text-muted">
&copy; 2021 - isn <span>@SiteHelpers.SemVer</span>- <a asp-area="" asp-controller="Home" asp-action="Privacy">Privacy</a>
</div>
<footer class="border-top footer text-muted" style="position:bottom">
isn @SiteHelpers.SemVer &copy; 2021-2022 Paul Schneider - <a asp-area="" asp-controller="Home" asp-action="Privacy">Privacy</a>
</footer>
<!-- <script src="/lib/jquery/dist/jquery.slim.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);
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.Options;
using System.Collections.Generic;
using System.Threading.Tasks;
using System.Diagnostics;
namespace isnd.host.tests
{
public class UnitTestWebHost
{
[Fact]
public void TestHaveTestDbContextAndMigrate()
{
string envVar = Environment.GetEnvironmentVariable("ASPNETCORE_ENVIRONMENT");
@ -44,15 +44,19 @@ namespace isnd.host.tests
.UseStartup<Startup>()
.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,
"SenderName": "Paul Schneider",
"SenderEmail": "paul@pschneider.fr"
},
"Kestrel": {
"Endpoints": {
"Http": {
"Url": "http://localhost:5005"
}
}
}
}

Loading…