Title fixes meta tags SEO fixes
This commit is contained in:
parent
b313a67300
commit
df86ce611e
|
|
@ -5,7 +5,7 @@
|
||||||
<meta charset="utf-8" />
|
<meta charset="utf-8" />
|
||||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1.0, user-scalable=0, minimum-scale=1.0, maximum-scale=1.0">
|
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1.0, user-scalable=0, minimum-scale=1.0, maximum-scale=1.0">
|
||||||
<!--<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, viewport-fit=cover" />-->
|
<!--<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, viewport-fit=cover" />-->
|
||||||
<title>MissNationBlazorWASM</title>
|
<title>MissNation</title>
|
||||||
|
|
||||||
|
|
||||||
<!-- inject:css -->
|
<!-- inject:css -->
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@
|
||||||
<meta charset="utf-8" />
|
<meta charset="utf-8" />
|
||||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1.0, user-scalable=0, minimum-scale=1.0, maximum-scale=1.0">
|
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1.0, user-scalable=0, minimum-scale=1.0, maximum-scale=1.0">
|
||||||
<!--<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, viewport-fit=cover" />-->
|
<!--<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, viewport-fit=cover" />-->
|
||||||
<title>MissNationBlazorWASM</title>
|
<title>MissNation</title>
|
||||||
|
|
||||||
|
|
||||||
<!-- inject:css -->
|
<!-- inject:css -->
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,15 @@
|
||||||
|
<div class="container-fluid" style="padding-top:100px">
|
||||||
|
<div class="row text-center py-5 my-5 text-white">
|
||||||
|
|
||||||
|
<h1>@PageTitle</h1>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
@code {
|
||||||
|
|
||||||
|
[Parameter]
|
||||||
|
public string PageTitle { get; set; }
|
||||||
|
|
||||||
|
}
|
||||||
|
|
@ -27,9 +27,9 @@
|
||||||
<img class="image-zoom" src="_content/MissNationSharedUI/assets/img/kidsmom.png" alt="Image">
|
<img class="image-zoom" src="_content/MissNationSharedUI/assets/img/kidsmom.png" alt="Image">
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="responsive-img">
|
<!--div class="responsive-img">
|
||||||
<img class="responsive-img @AddiontionalCssClass" style="width:100%" src="_content/MissNationSharedUI/assets/img/kidsmom.png" alt="">
|
<img class="responsive-img @AddiontionalCssClass" style="width:100%" src="_content/MissNationSharedUI/assets/img/kidsmom.png" alt="">
|
||||||
</div>
|
</div-->
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,8 @@
|
||||||
@page "/apply"
|
@page "/apply"
|
||||||
|
@using MissNationSharedUI.Shared.Components.Layout
|
||||||
|
<PageTitle>Apply</PageTitle>
|
||||||
|
|
||||||
|
<MyTitleComponent PageTitle="Apply"></MyTitleComponent>
|
||||||
|
|
||||||
<!--body content start-->
|
<!--body content start-->
|
||||||
<section class="body-content">
|
<section class="body-content">
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,8 @@
|
||||||
@page "/contact"
|
@page "/contact"
|
||||||
|
@using MissNationSharedUI.Shared.Components.Layout
|
||||||
|
<PageTitle>Contact</PageTitle>
|
||||||
|
|
||||||
|
<MyTitleComponent PageTitle="Contact"></MyTitleComponent>
|
||||||
|
|
||||||
<div class="page-content gray-bg">
|
<div class="page-content gray-bg">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
|
|
@ -8,7 +12,6 @@
|
||||||
<div class="col- 12 ">
|
<div class="col- 12 ">
|
||||||
|
|
||||||
<div class="panel-body" style="">
|
<div class="panel-body" style="">
|
||||||
<h1 class="text-center element-top-20 element-bottom-20 text-normal normal regular" style="color: #333;">Contacts</h1>
|
|
||||||
<div class="divider-border divider-border-center element-top-20 element-bottom-40 os-animation animated fadeIn" data-os-animation="fadeIn" data-os-animation-delay="0.1s" style="height: 3px; animation-delay: 0.1s;">
|
<div class="divider-border divider-border-center element-top-20 element-bottom-40 os-animation animated fadeIn" data-os-animation="fadeIn" data-os-animation-delay="0.1s" style="height: 3px; animation-delay: 0.1s;">
|
||||||
<div class="divider-border-inner" style="width:60px;"></div>
|
<div class="divider-border-inner" style="width:60px;"></div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
@page "/corporateabout"
|
@page "/corporateabout"
|
||||||
@layout SecondaryLayout
|
@layout SecondaryLayout
|
||||||
|
@inject NavigationManager NavigationManager
|
||||||
@using MissNationSharedUI.Shared.Components.Layout
|
@using MissNationSharedUI.Shared.Components.Layout
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -41,6 +42,17 @@
|
||||||
|
|
||||||
private IJSObjectReference _jsModule;
|
private IJSObjectReference _jsModule;
|
||||||
|
|
||||||
|
protected override void OnInitialized()
|
||||||
|
{
|
||||||
|
base.OnInitialized();
|
||||||
|
|
||||||
|
var currentUri = new Uri(NavigationManager.Uri);
|
||||||
|
if (currentUri.Host == "missnationllc.com")
|
||||||
|
{
|
||||||
|
NavigationManager.NavigateTo("/corporateabout");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
protected override async Task OnAfterRenderAsync(bool firstRender)
|
protected override async Task OnAfterRenderAsync(bool firstRender)
|
||||||
{
|
{
|
||||||
base.OnAfterRender(firstRender);
|
base.OnAfterRender(firstRender);
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,11 @@
|
||||||
@page "/gallery"
|
@page "/gallery"
|
||||||
|
@using MissNationSharedUI.Shared.Components.Layout
|
||||||
|
<PageTitle>Gallery</PageTitle>
|
||||||
|
|
||||||
|
<MyTitleComponent PageTitle="Gallery"></MyTitleComponent>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<!--body content start-->
|
|
||||||
<section class="body-content page-content">
|
<section class="body-content page-content">
|
||||||
|
|
||||||
<div class="container-fluid">
|
<div class="container-fluid">
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,8 @@
|
||||||
@page "/help"
|
@page "/help"
|
||||||
|
@using MissNationSharedUI.Shared.Components.Layout
|
||||||
|
<PageTitle>Help</PageTitle>
|
||||||
|
|
||||||
|
<MyTitleComponent PageTitle="Help"></MyTitleComponent>
|
||||||
|
|
||||||
<!--body content start-->
|
<!--body content start-->
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,15 @@
|
||||||
@page "/"
|
@page "/"
|
||||||
@using MissNationSharedUI.Shared.Components.Layout
|
@using MissNationSharedUI.Shared.Components.Layout
|
||||||
|
|
||||||
|
<PageTitle>Home</PageTitle>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<!--body content start-->
|
<!--body content start-->
|
||||||
<section class="body-content gray-bg">
|
<section class="body-content gray-bg">
|
||||||
<SuperHeroComponent />
|
<SuperHeroComponent />
|
||||||
|
<MyTitleComponent PageTitle="Welcome"></MyTitleComponent>
|
||||||
<HeroComponent />
|
<HeroComponent />
|
||||||
<!--slider box-->
|
<!--slider box-->
|
||||||
<!--ads box-->
|
<!--ads box-->
|
||||||
|
|
|
||||||
|
|
@ -290,18 +290,19 @@ pre {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
.image-zoom {
|
.image-zoom {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: auto;
|
height: auto;
|
||||||
transition: transform .2s;
|
transition: transform .1s;
|
||||||
}
|
}
|
||||||
|
|
||||||
.zoom-wrapper {
|
.zoom-wrapper {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
position: relative;
|
position: relative;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100vh;
|
height: 300px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue