This commit is contained in:
2022-05-20 19:48:39 +00:00
parent 92e5cf8062
commit bfaa3b03d1
4 changed files with 57 additions and 12 deletions

View File

@@ -5,6 +5,6 @@
}
<div class="text-center">
<h1 class="display-4">Welcome</h1>
<p>Learn about <a href="https://docs.microsoft.com/aspnet/core">building Web apps with ASP.NET Core</a>.</p>
<h1 class="display-4">Welcome</h1>
blah blah blah
</div>

View File

@@ -1,20 +1,23 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>@ViewData["Title"] - ayanova</title>
<title>@ViewData["Title"] - AyaNova</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="~/ayanova.styles.css" asp-append-version="true" />
</head>
<body>
<header>
<nav class="navbar navbar-expand-sm navbar-toggleable-sm navbar-light bg-white border-bottom box-shadow mb-3">
<div class="container">
<a class="navbar-brand" asp-area="" asp-page="/index"><img src="images/AyaNova60x60.png" alt="AyaNova" title="AyaNova service management software" class="pull-left" />ayanova</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target=".navbar-collapse" aria-controls="navbarSupportedContent"
aria-expanded="false" aria-label="Toggle navigation">
<a class="navbar-brand" asp-area="" asp-page="/index"><img src="images/AyaNova60x60.png" alt="AyaNova"
title="AyaNova service management software" class="pull-left" />AyaNova</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target=".navbar-collapse"
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="navbar-collapse collapse d-sm-inline-flex justify-content-between">
@@ -23,8 +26,20 @@
<a class="nav-link text-dark" asp-area="" asp-page="/index">Home</a>
</li>
<li class="nav-item">
<a class="nav-link text-dark" asp-area="" asp-page="/Privacy">Privacy</a>
<a class="nav-link text-dark" asp-area="" asp-page="/products">Products</a>
</li>
<li class="nav-item">
<a class="nav-link text-dark" asp-area="" asp-page="/pricing">Pricing</a>
</li>
<li class="nav-item">
<a class="nav-link text-dark" asp-area="" asp-page="/support">Support</a>
</li>
<li class="nav-item">
<a class="nav-link text-dark" asp-area="" asp-page="/more">More</a>
</li>
@* <li class="nav-item">
<a class="nav-link text-dark" asp-area="" asp-page="/Privacy">Privacy</a>
</li> *@
</ul>
</div>
</div>
@@ -36,11 +51,36 @@
</main>
</div>
<footer class="border-top footer text-muted">
<div class="container">
&copy; 2022 - ayanova - <a asp-area="" asp-page="/Privacy">Privacy</a>
<div class="container">
<footer class="d-flex flex-wrap justify-content-between align-items-center py-3 my-4 border-top">
<p class="col-md-6 mb-0 text-muted">Copyright © 1999-2022&nbsp;Ground Zero Tech-Works Inc.&nbsp;All&nbsp;Rights&nbsp;Reserved.</p>
<ul class="nav col-md-6 justify-content-end">
<li class="nav-item"><a asp-area="" asp-page="/privacy" class="nav-link px-2 text-muted">Privacy Policy</a></li>
<li class="nav-item"> <a asp-area="" asp-page="/license" class="nav-link px-2 text-muted">License Agreement</a></li>
</ul>
</footer>
</div>
@* <footer class="border-top footer text-muted">
<div class="container border-top py-3 text-center text-md-left">
<div class="row">
<div class="col-12 col-md-8">
<div class="text-muted"><small>Copyright © 1999-2022&nbsp;Ground Zero Tech-Works Inc.
All&nbsp;Rights&nbsp;Reserved.</small>
</br> test
<ul class="list-unstyled list-inline">
<li class="list-inline-item">
<a asp-area="" asp-page="/privacy" class="text-muted"><small>Privacy Policy</small></a>
</li>
<li class="list-inline-item">
<a asp-area="" asp-page="/license" class="text-muted"><small>License Agreement</small></a>
</li>
</ul></div>
</div>
</footer>
</div>
</div>
</footer> *@
<script src="~/lib/jquery/dist/jquery.min.js"></script>
<script src="~/lib/bootstrap/dist/js/bootstrap.bundle.min.js"></script>
@@ -48,4 +88,5 @@
@await RenderSectionAsync("Scripts", required: false)
</body>
</html>

View File

@@ -12,7 +12,7 @@
"commandName": "Project",
"dotnetRunMessages": true,
"launchBrowser": true,
"applicationUrl": "http://localhost:3000",
"applicationUrl": "http://localhost:5000",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}

View File

@@ -1,2 +1,6 @@
deploy
dotnet publish -c Release -o ./../publish/ --no-self-contained -r linux-x64
Hot reload during development:
open a terminal type dotnet watch and that's about it from here:
https://davemateer.com/2022/03/09/hot-reload-vscode-razor-pages-net6