Compare commits
5 Commits
master
...
Production
Author | SHA1 | Date |
---|---|---|
RDeck | 6ffa222420 | |
RDeck | 6161668cd5 | |
RDeck | 4f9a8c466e | |
RDeck | c4c5ccd714 | |
RDeck | 31442e6b5f |
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"version": 1,
|
||||
"isRoot": true,
|
||||
"tools": {}
|
||||
}
|
|
@ -0,0 +1,63 @@
|
|||
###############################################################################
|
||||
# Set default behavior to automatically normalize line endings.
|
||||
###############################################################################
|
||||
* text=auto
|
||||
|
||||
###############################################################################
|
||||
# Set default behavior for command prompt diff.
|
||||
#
|
||||
# This is need for earlier builds of msysgit that does not have it on by
|
||||
# default for csharp files.
|
||||
# Note: This is only used by command line
|
||||
###############################################################################
|
||||
#*.cs diff=csharp
|
||||
|
||||
###############################################################################
|
||||
# Set the merge driver for project and solution files
|
||||
#
|
||||
# Merging from the command prompt will add diff markers to the files if there
|
||||
# are conflicts (Merging from VS is not affected by the settings below, in VS
|
||||
# the diff markers are never inserted). Diff markers may cause the following
|
||||
# file extensions to fail to load in VS. An alternative would be to treat
|
||||
# these files as binary and thus will always conflict and require user
|
||||
# intervention with every merge. To do so, just uncomment the entries below
|
||||
###############################################################################
|
||||
#*.sln merge=binary
|
||||
#*.csproj merge=binary
|
||||
#*.vbproj merge=binary
|
||||
#*.vcxproj merge=binary
|
||||
#*.vcproj merge=binary
|
||||
#*.dbproj merge=binary
|
||||
#*.fsproj merge=binary
|
||||
#*.lsproj merge=binary
|
||||
#*.wixproj merge=binary
|
||||
#*.modelproj merge=binary
|
||||
#*.sqlproj merge=binary
|
||||
#*.wwaproj merge=binary
|
||||
|
||||
###############################################################################
|
||||
# behavior for image files
|
||||
#
|
||||
# image files are treated as binary by default.
|
||||
###############################################################################
|
||||
#*.jpg binary
|
||||
#*.png binary
|
||||
#*.gif binary
|
||||
|
||||
###############################################################################
|
||||
# diff behavior for common document formats
|
||||
#
|
||||
# Convert binary document formats to text before diffing them. This feature
|
||||
# is only available from the command line. Turn it on by uncommenting the
|
||||
# entries below.
|
||||
###############################################################################
|
||||
#*.doc diff=astextplain
|
||||
#*.DOC diff=astextplain
|
||||
#*.docx diff=astextplain
|
||||
#*.DOCX diff=astextplain
|
||||
#*.dot diff=astextplain
|
||||
#*.DOT diff=astextplain
|
||||
#*.pdf diff=astextplain
|
||||
#*.PDF diff=astextplain
|
||||
#*.rtf diff=astextplain
|
||||
#*.RTF diff=astextplain
|
|
@ -0,0 +1,363 @@
|
|||
## Ignore Visual Studio temporary files, build results, and
|
||||
## files generated by popular Visual Studio add-ons.
|
||||
##
|
||||
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
|
||||
|
||||
# User-specific files
|
||||
*.rsuser
|
||||
*.suo
|
||||
*.user
|
||||
*.userosscache
|
||||
*.sln.docstates
|
||||
|
||||
# User-specific files (MonoDevelop/Xamarin Studio)
|
||||
*.userprefs
|
||||
|
||||
# Mono auto generated files
|
||||
mono_crash.*
|
||||
|
||||
# Build results
|
||||
[Dd]ebug/
|
||||
[Dd]ebugPublic/
|
||||
[Rr]elease/
|
||||
[Rr]eleases/
|
||||
x64/
|
||||
x86/
|
||||
[Ww][Ii][Nn]32/
|
||||
[Aa][Rr][Mm]/
|
||||
[Aa][Rr][Mm]64/
|
||||
bld/
|
||||
[Bb]in/
|
||||
[Oo]bj/
|
||||
[Oo]ut/
|
||||
[Ll]og/
|
||||
[Ll]ogs/
|
||||
|
||||
# Visual Studio 2015/2017 cache/options directory
|
||||
.vs/
|
||||
# Uncomment if you have tasks that create the project's static files in wwwroot
|
||||
#wwwroot/
|
||||
|
||||
# Visual Studio 2017 auto generated files
|
||||
Generated\ Files/
|
||||
|
||||
# MSTest test Results
|
||||
[Tt]est[Rr]esult*/
|
||||
[Bb]uild[Ll]og.*
|
||||
|
||||
# NUnit
|
||||
*.VisualState.xml
|
||||
TestResult.xml
|
||||
nunit-*.xml
|
||||
|
||||
# Build Results of an ATL Project
|
||||
[Dd]ebugPS/
|
||||
[Rr]eleasePS/
|
||||
dlldata.c
|
||||
|
||||
# Benchmark Results
|
||||
BenchmarkDotNet.Artifacts/
|
||||
|
||||
# .NET Core
|
||||
project.lock.json
|
||||
project.fragment.lock.json
|
||||
artifacts/
|
||||
|
||||
# ASP.NET Scaffolding
|
||||
ScaffoldingReadMe.txt
|
||||
|
||||
# StyleCop
|
||||
StyleCopReport.xml
|
||||
|
||||
# Files built by Visual Studio
|
||||
*_i.c
|
||||
*_p.c
|
||||
*_h.h
|
||||
*.ilk
|
||||
*.meta
|
||||
*.obj
|
||||
*.iobj
|
||||
*.pch
|
||||
*.pdb
|
||||
*.ipdb
|
||||
*.pgc
|
||||
*.pgd
|
||||
*.rsp
|
||||
*.sbr
|
||||
*.tlb
|
||||
*.tli
|
||||
*.tlh
|
||||
*.tmp
|
||||
*.tmp_proj
|
||||
*_wpftmp.csproj
|
||||
*.log
|
||||
*.vspscc
|
||||
*.vssscc
|
||||
.builds
|
||||
*.pidb
|
||||
*.svclog
|
||||
*.scc
|
||||
|
||||
# Chutzpah Test files
|
||||
_Chutzpah*
|
||||
|
||||
# Visual C++ cache files
|
||||
ipch/
|
||||
*.aps
|
||||
*.ncb
|
||||
*.opendb
|
||||
*.opensdf
|
||||
*.sdf
|
||||
*.cachefile
|
||||
*.VC.db
|
||||
*.VC.VC.opendb
|
||||
|
||||
# Visual Studio profiler
|
||||
*.psess
|
||||
*.vsp
|
||||
*.vspx
|
||||
*.sap
|
||||
|
||||
# Visual Studio Trace Files
|
||||
*.e2e
|
||||
|
||||
# TFS 2012 Local Workspace
|
||||
$tf/
|
||||
|
||||
# Guidance Automation Toolkit
|
||||
*.gpState
|
||||
|
||||
# ReSharper is a .NET coding add-in
|
||||
_ReSharper*/
|
||||
*.[Rr]e[Ss]harper
|
||||
*.DotSettings.user
|
||||
|
||||
# TeamCity is a build add-in
|
||||
_TeamCity*
|
||||
|
||||
# DotCover is a Code Coverage Tool
|
||||
*.dotCover
|
||||
|
||||
# AxoCover is a Code Coverage Tool
|
||||
.axoCover/*
|
||||
!.axoCover/settings.json
|
||||
|
||||
# Coverlet is a free, cross platform Code Coverage Tool
|
||||
coverage*.json
|
||||
coverage*.xml
|
||||
coverage*.info
|
||||
|
||||
# Visual Studio code coverage results
|
||||
*.coverage
|
||||
*.coveragexml
|
||||
|
||||
# NCrunch
|
||||
_NCrunch_*
|
||||
.*crunch*.local.xml
|
||||
nCrunchTemp_*
|
||||
|
||||
# MightyMoose
|
||||
*.mm.*
|
||||
AutoTest.Net/
|
||||
|
||||
# Web workbench (sass)
|
||||
.sass-cache/
|
||||
|
||||
# Installshield output folder
|
||||
[Ee]xpress/
|
||||
|
||||
# DocProject is a documentation generator add-in
|
||||
DocProject/buildhelp/
|
||||
DocProject/Help/*.HxT
|
||||
DocProject/Help/*.HxC
|
||||
DocProject/Help/*.hhc
|
||||
DocProject/Help/*.hhk
|
||||
DocProject/Help/*.hhp
|
||||
DocProject/Help/Html2
|
||||
DocProject/Help/html
|
||||
|
||||
# Click-Once directory
|
||||
publish/
|
||||
|
||||
# Publish Web Output
|
||||
*.[Pp]ublish.xml
|
||||
*.azurePubxml
|
||||
# Note: Comment the next line if you want to checkin your web deploy settings,
|
||||
# but database connection strings (with potential passwords) will be unencrypted
|
||||
*.pubxml
|
||||
*.publishproj
|
||||
|
||||
# Microsoft Azure Web App publish settings. Comment the next line if you want to
|
||||
# checkin your Azure Web App publish settings, but sensitive information contained
|
||||
# in these scripts will be unencrypted
|
||||
PublishScripts/
|
||||
|
||||
# NuGet Packages
|
||||
*.nupkg
|
||||
# NuGet Symbol Packages
|
||||
*.snupkg
|
||||
# The packages folder can be ignored because of Package Restore
|
||||
**/[Pp]ackages/*
|
||||
# except build/, which is used as an MSBuild target.
|
||||
!**/[Pp]ackages/build/
|
||||
# Uncomment if necessary however generally it will be regenerated when needed
|
||||
#!**/[Pp]ackages/repositories.config
|
||||
# NuGet v3's project.json files produces more ignorable files
|
||||
*.nuget.props
|
||||
*.nuget.targets
|
||||
|
||||
# Microsoft Azure Build Output
|
||||
csx/
|
||||
*.build.csdef
|
||||
|
||||
# Microsoft Azure Emulator
|
||||
ecf/
|
||||
rcf/
|
||||
|
||||
# Windows Store app package directories and files
|
||||
AppPackages/
|
||||
BundleArtifacts/
|
||||
Package.StoreAssociation.xml
|
||||
_pkginfo.txt
|
||||
*.appx
|
||||
*.appxbundle
|
||||
*.appxupload
|
||||
|
||||
# Visual Studio cache files
|
||||
# files ending in .cache can be ignored
|
||||
*.[Cc]ache
|
||||
# but keep track of directories ending in .cache
|
||||
!?*.[Cc]ache/
|
||||
|
||||
# Others
|
||||
ClientBin/
|
||||
~$*
|
||||
*~
|
||||
*.dbmdl
|
||||
*.dbproj.schemaview
|
||||
*.jfm
|
||||
*.pfx
|
||||
*.publishsettings
|
||||
orleans.codegen.cs
|
||||
|
||||
# Including strong name files can present a security risk
|
||||
# (https://github.com/github/gitignore/pull/2483#issue-259490424)
|
||||
#*.snk
|
||||
|
||||
# Since there are multiple workflows, uncomment next line to ignore bower_components
|
||||
# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
|
||||
#bower_components/
|
||||
|
||||
# RIA/Silverlight projects
|
||||
Generated_Code/
|
||||
|
||||
# Backup & report files from converting an old project file
|
||||
# to a newer Visual Studio version. Backup files are not needed,
|
||||
# because we have git ;-)
|
||||
_UpgradeReport_Files/
|
||||
Backup*/
|
||||
UpgradeLog*.XML
|
||||
UpgradeLog*.htm
|
||||
ServiceFabricBackup/
|
||||
*.rptproj.bak
|
||||
|
||||
# SQL Server files
|
||||
*.mdf
|
||||
*.ldf
|
||||
*.ndf
|
||||
|
||||
# Business Intelligence projects
|
||||
*.rdl.data
|
||||
*.bim.layout
|
||||
*.bim_*.settings
|
||||
*.rptproj.rsuser
|
||||
*- [Bb]ackup.rdl
|
||||
*- [Bb]ackup ([0-9]).rdl
|
||||
*- [Bb]ackup ([0-9][0-9]).rdl
|
||||
|
||||
# Microsoft Fakes
|
||||
FakesAssemblies/
|
||||
|
||||
# GhostDoc plugin setting file
|
||||
*.GhostDoc.xml
|
||||
|
||||
# Node.js Tools for Visual Studio
|
||||
.ntvs_analysis.dat
|
||||
node_modules/
|
||||
|
||||
# Visual Studio 6 build log
|
||||
*.plg
|
||||
|
||||
# Visual Studio 6 workspace options file
|
||||
*.opt
|
||||
|
||||
# Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
|
||||
*.vbw
|
||||
|
||||
# Visual Studio LightSwitch build output
|
||||
**/*.HTMLClient/GeneratedArtifacts
|
||||
**/*.DesktopClient/GeneratedArtifacts
|
||||
**/*.DesktopClient/ModelManifest.xml
|
||||
**/*.Server/GeneratedArtifacts
|
||||
**/*.Server/ModelManifest.xml
|
||||
_Pvt_Extensions
|
||||
|
||||
# Paket dependency manager
|
||||
.paket/paket.exe
|
||||
paket-files/
|
||||
|
||||
# FAKE - F# Make
|
||||
.fake/
|
||||
|
||||
# CodeRush personal settings
|
||||
.cr/personal
|
||||
|
||||
# Python Tools for Visual Studio (PTVS)
|
||||
__pycache__/
|
||||
*.pyc
|
||||
|
||||
# Cake - Uncomment if you are using it
|
||||
# tools/**
|
||||
# !tools/packages.config
|
||||
|
||||
# Tabs Studio
|
||||
*.tss
|
||||
|
||||
# Telerik's JustMock configuration file
|
||||
*.jmconfig
|
||||
|
||||
# BizTalk build output
|
||||
*.btp.cs
|
||||
*.btm.cs
|
||||
*.odx.cs
|
||||
*.xsd.cs
|
||||
|
||||
# OpenCover UI analysis results
|
||||
OpenCover/
|
||||
|
||||
# Azure Stream Analytics local run output
|
||||
ASALocalRun/
|
||||
|
||||
# MSBuild Binary and Structured Log
|
||||
*.binlog
|
||||
|
||||
# NVidia Nsight GPU debugger configuration file
|
||||
*.nvuser
|
||||
|
||||
# MFractors (Xamarin productivity tool) working folder
|
||||
.mfractor/
|
||||
|
||||
# Local History for Visual Studio
|
||||
.localhistory/
|
||||
|
||||
# BeatPulse healthcheck temp database
|
||||
healthchecksdb
|
||||
|
||||
# Backup folder for Package Reference Convert tool in Visual Studio 2017
|
||||
MigrationBackup/
|
||||
|
||||
# Ionide (cross platform F# VS Code tools) working folder
|
||||
.ionide/
|
||||
|
||||
# Fody - auto-generated XML schema
|
||||
FodyWeavers.xsd
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -1,12 +1,6 @@
|
|||
{
|
||||
"ExpandedNodes": [
|
||||
"",
|
||||
"\\Components",
|
||||
"\\Components\\Layout",
|
||||
"\\Components\\Pages",
|
||||
"\\obj",
|
||||
"\\Properties",
|
||||
"\\wwwroot"
|
||||
""
|
||||
],
|
||||
"PreviewInSolutionExplorer": false
|
||||
}
|
|
@ -12,7 +12,7 @@
|
|||
<HeadOutlet />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<body class="stretched is-expanded-menu">
|
||||
<Routes />
|
||||
<script src="/js/plugins.min.js"></script>
|
||||
<script src="/js/functions.bundle.js"></script>
|
||||
|
|
|
@ -0,0 +1,34 @@
|
|||
@*
|
||||
This will contain the HEAD elements to use the CANVAS template
|
||||
*@
|
||||
<HeadContent>
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||
<meta http-equiv="x-ua-compatible" content="IE=edge">
|
||||
<meta name="author" content="KeyMailSpecials">
|
||||
<meta name="description" content="Seamlessly connecting customers to their preferred service providers, resulting in streamlined experiences for today's fast-paced world!'" />
|
||||
|
||||
<!-- Font Imports -->
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap" rel="stylesheet">
|
||||
|
||||
<!-- Core Style -->
|
||||
<link rel="stylesheet" href="/style.css">
|
||||
|
||||
<!-- Font Icons -->
|
||||
<link rel="stylesheet" href="css/font-icons.css">
|
||||
|
||||
<!-- Plugins/Components CSS -->
|
||||
<link rel="stylesheet" href="css/components/datepicker.css">
|
||||
|
||||
<!-- Niche Demos -->
|
||||
<link rel="stylesheet" href="demos/movers/movers.css">
|
||||
|
||||
<!-- Custom CSS -->
|
||||
<link rel="stylesheet" href="css/custom.css">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<!-- Document Title
|
||||
============================================= -->
|
||||
<title>KeyMail Specials</title> @*Override in basepage if you want to, otherwise it will use this*@
|
||||
</HeadContent>
|
|
@ -0,0 +1,88 @@
|
|||
<header id="header" class="dark header-size-sm" data-sticky-shrink="false">
|
||||
<div class="container">
|
||||
<div class="header-row">
|
||||
|
||||
<!-- Logo
|
||||
============================================= -->
|
||||
<div id="logo" class="ms-auto ms-md-0">
|
||||
<a>
|
||||
<img class="logo-default" srcset="/images/logos/kms24w.png" alt="KeyMotive Logo">
|
||||
<img class="logo-dark" srcset="/images/logos/kms24w.png" alt="KeyMotive Logo">
|
||||
</a>
|
||||
</div><!-- #logo end -->
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="header-wrap">
|
||||
<div class="container">
|
||||
<div class="header-row justify-content-between flex-row-reverse flex-lg-row">
|
||||
|
||||
<div class="header-misc">
|
||||
<!-- Header Buttons
|
||||
============================================= -->
|
||||
<div class="header-buttons d-none d-sm-inline-block">
|
||||
<a href="contact" data-offset="-80" class="button button-rounded button-white button-light button-small m-0">Contact Us</a>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="primary-menu-trigger">
|
||||
<button class="cnvs-hamburger" type="button" title="Open Mobile Menu">
|
||||
<span class="cnvs-hamburger-box"><span class="cnvs-hamburger-inner"></span></span>
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<!-- Primary Navigation
|
||||
============================================= -->
|
||||
<nav class="primary-menu with-arrows navbar-expand">
|
||||
|
||||
<ul class="menu-container">
|
||||
<li class="menu-item @actChoice[0]"><a class="menu-link" href="/"><div>Home</div></a></li>
|
||||
<li class="menu-item @actChoice[1]"><a class="menu-link" href="/about"><div>About Us</div></a></li>
|
||||
<li class="menu-item @actChoice[2]"><a class="menu-link" href="/privacy"><div>Privacy</div></a></li>
|
||||
</ul>
|
||||
</nav><!-- #primary-menu end -->
|
||||
|
||||
<form class="top-search-form" action="search.html" method="get">
|
||||
<input type="text" name="q" class="form-control" value="" placeholder="Type & Hit Enter.." autocomplete="off">
|
||||
</form>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="header-wrap-clone"></div>
|
||||
</header><!-- #header end -->
|
||||
@code {
|
||||
[Parameter]
|
||||
public enuChoice ActiveChoice { get; set; } = enuChoice.Home;
|
||||
|
||||
public enum enuChoice : byte
|
||||
{
|
||||
Home = 0,
|
||||
AboutUs = 1,
|
||||
Privacy = 2,
|
||||
Nothing = 3
|
||||
}
|
||||
|
||||
string[] actChoice = { "", "", "" };
|
||||
|
||||
protected override void OnInitialized()
|
||||
{
|
||||
switch (ActiveChoice)
|
||||
{
|
||||
case enuChoice.AboutUs:
|
||||
actChoice[1] = "current";
|
||||
break;
|
||||
case enuChoice.Privacy:
|
||||
actChoice[2] = "current";
|
||||
break;
|
||||
case enuChoice.Nothing:
|
||||
//meh
|
||||
break;
|
||||
default:
|
||||
actChoice[0] = "current";
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
|
@ -1,38 +1,8 @@
|
|||
@page "/about"
|
||||
@inject Services.GlobalService gloService
|
||||
|
||||
<head>
|
||||
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||
<meta http-equiv="x-ua-compatible" content="IE=edge">
|
||||
|
||||
<!-- Font Imports -->
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap" rel="stylesheet">
|
||||
|
||||
<!-- Core Style -->
|
||||
<link rel="stylesheet" href="style.css">
|
||||
|
||||
<!-- Font Icons -->
|
||||
<link rel="stylesheet" href="css/font-icons.css">
|
||||
|
||||
<!-- Plugins/Components CSS -->
|
||||
<link rel="stylesheet" href="css/components/datepicker.css">
|
||||
|
||||
<!-- Niche Demos -->
|
||||
<link rel="stylesheet" href="demos/movers/movers.css">
|
||||
|
||||
<!-- Custom CSS -->
|
||||
<link rel="stylesheet" href="css/custom.css">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<!-- Document Title
|
||||
============================================= -->
|
||||
<title>About Us</title>
|
||||
|
||||
</head>
|
||||
|
||||
<body class="stretched is-expanded-menu">
|
||||
<CanvasHomePage />
|
||||
<PageTitle>About Us - @gloService.WebsiteName</PageTitle>
|
||||
|
||||
<!-- Document Wrapper
|
||||
============================================= -->
|
||||
|
@ -40,61 +10,7 @@
|
|||
|
||||
<!-- Header
|
||||
============================================= -->
|
||||
<header id="header" class="dark header-size-sm" data-sticky-shrink="false">
|
||||
<div class="container">
|
||||
<div class="header-row">
|
||||
|
||||
<!-- Logo
|
||||
============================================= -->
|
||||
<div id="logo" class="ms-auto ms-md-0">
|
||||
<a>
|
||||
<img class="logo-default" srcset="images/km_logo.png" alt="KeyMotive Logo">
|
||||
<img class="logo-dark" srcset="images/km_logo.png" alt="KeyMotive Logo">
|
||||
</a>
|
||||
</div><!-- #logo end -->
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="header-wrap">
|
||||
<div class="container">
|
||||
<div class="header-row justify-content-between flex-row-reverse flex-lg-row">
|
||||
|
||||
<div class="header-misc">
|
||||
<!-- Header Buttons
|
||||
============================================= -->
|
||||
<div class="header-buttons d-none d-sm-inline-block">
|
||||
<a href="contact" data-offset="-80" class="button button-rounded button-white button-light button-small m-0">Contact Us</a>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="primary-menu-trigger">
|
||||
<button class="cnvs-hamburger" type="button" title="Open Mobile Menu">
|
||||
<span class="cnvs-hamburger-box"><span class="cnvs-hamburger-inner"></span></span>
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<!-- Primary Navigation
|
||||
============================================= -->
|
||||
<nav class="primary-menu with-arrows navbar-expand">
|
||||
|
||||
<ul class="menu-container">
|
||||
<li class="menu-item"><a class="menu-link" href=""><div>Home</div></a></li>
|
||||
<li class="menu-item current"><a class="menu-link" href="about"><div>About Us</div></a></li>
|
||||
<li class="menu-item"><a class="menu-link" href="privacy"><div>Privacy</div></a></li>
|
||||
</ul>
|
||||
|
||||
</nav><!-- #primary-menu end -->
|
||||
|
||||
<form class="top-search-form" action="search.html" method="get">
|
||||
<input type="text" name="q" class="form-control" value="" placeholder="Type & Hit Enter.." autocomplete="off">
|
||||
</form>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="header-wrap-clone"></div>
|
||||
</header><!-- #header end -->
|
||||
<Header1 ActiveChoice=Header1.enuChoice.AboutUs />
|
||||
|
||||
<!-- Content
|
||||
============================================= -->
|
||||
|
@ -272,7 +188,7 @@
|
|||
|
||||
<div class="row justify-content-between align-items-center">
|
||||
<div class="col-md-6 text-black-50">
|
||||
Copyrights © 2024 All Rights Reserved by KeyMotive LLC.
|
||||
Copyright © 2010 - @gloService.YearInFooter All Rights Reserved by KeyMotive LLC.
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
@ -286,5 +202,3 @@
|
|||
<!-- Go To Top
|
||||
============================================= -->
|
||||
<div id="gotoTop" class="uil uil-angle-up"></div>
|
||||
|
||||
</body>
|
|
@ -1,42 +1,8 @@
|
|||
@page "/contact"
|
||||
@inject Services.GlobalService gloService
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html dir="ltr" lang="en-US">
|
||||
<head>
|
||||
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||
<meta http-equiv="x-ua-compatible" content="IE=edge">
|
||||
<meta name="author" content="SemiColonWeb">
|
||||
<meta name="description" content="Create Packers, Movers & Shipping Websites with Canvas Template. Get Canvas to build powerful websites easily with the Highly Customizable & Best Selling Bootstrap Template, today.">
|
||||
|
||||
<!-- Font Imports -->
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap" rel="stylesheet">
|
||||
|
||||
<!-- Core Style -->
|
||||
<link rel="stylesheet" href="style.css">
|
||||
|
||||
<!-- Font Icons -->
|
||||
<link rel="stylesheet" href="css/font-icons.css">
|
||||
|
||||
<!-- Plugins/Components CSS -->
|
||||
<link rel="stylesheet" href="css/components/datepicker.css">
|
||||
|
||||
<!-- Niche Demos -->
|
||||
<link rel="stylesheet" href="demos/movers/movers.css">
|
||||
|
||||
<!-- Custom CSS -->
|
||||
<link rel="stylesheet" href="css/custom.css">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<!-- Document Title
|
||||
============================================= -->
|
||||
<title>Contact Us</title>
|
||||
|
||||
</head>
|
||||
|
||||
<body class="stretched is-expanded-menu">
|
||||
<CanvasHomePage />
|
||||
<PageTitle>Contact Us - @gloService.WebsiteName</PageTitle>
|
||||
|
||||
<!-- Document Wrapper
|
||||
============================================= -->
|
||||
|
@ -44,59 +10,8 @@
|
|||
|
||||
<!-- Header
|
||||
============================================= -->
|
||||
<header id="header" class="dark header-size-sm" data-sticky-shrink="false">
|
||||
<div class="container">
|
||||
<div class="header-row">
|
||||
<Header1 ActiveChoice=Header1.enuChoice.Nothing/>
|
||||
|
||||
<!-- Logo
|
||||
============================================= -->
|
||||
<div id="logo" class="ms-auto ms-md-0">
|
||||
<a>
|
||||
<img class="logo-default" srcset="images/km_logo.png" alt="KeyMotive Logo">
|
||||
<img class="logo-dark" srcset="images/km_logo.png" alt="KeyMotive Logo">
|
||||
</a>
|
||||
</div><!-- #logo end -->
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="header-wrap">
|
||||
<div class="container">
|
||||
<div class="header-row justify-content-between flex-row-reverse flex-lg-row">
|
||||
|
||||
<div class="header-misc">
|
||||
|
||||
<!-- Header Buttons
|
||||
============================================= -->
|
||||
<div class="header-buttons d-none d-sm-inline-block">
|
||||
<a href="contact" data-offset="-80" class="button button-rounded button-white button-light button-small m-0">Contact Us</a>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="primary-menu-trigger">
|
||||
<button class="cnvs-hamburger" type="button" title="Open Mobile Menu">
|
||||
<span class="cnvs-hamburger-box"><span class="cnvs-hamburger-inner"></span></span>
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<!-- Primary Navigation
|
||||
============================================= -->
|
||||
<nav class="primary-menu with-arrows">
|
||||
|
||||
<ul class="menu-container">
|
||||
<li class="menu-item"><a class="menu-link" href=""><div>Home</div></a></li>
|
||||
<li class="menu-item"><a class="menu-link" href="about"><div>About Us</div></a></li>
|
||||
<li class="menu-item"><a class="menu-link" href="privacy"><div>Privacy</div></a></li>
|
||||
</ul>
|
||||
|
||||
</nav><!-- #primary-menu end -->
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="header-wrap-clone"></div>
|
||||
</header><!-- #header end -->
|
||||
<!-- Page Title
|
||||
============================================= -->
|
||||
<section class="page-title bg-color dark py-6">
|
||||
|
@ -137,7 +52,7 @@
|
|||
<div class="row">
|
||||
<div class="col-12 form-group">
|
||||
<label for="template-contactform-name">Name <small>*</small></label>
|
||||
<input type="text" id="template-contactform-name" name="template-contactform-name" value="" class="form-control required">
|
||||
<input type="text" autofocus="autofocus" id="template-contactform-name" name="template-contactform-name" value="" class="form-control required">
|
||||
</div>
|
||||
|
||||
<div class="col-12 form-group">
|
||||
|
@ -189,7 +104,7 @@
|
|||
c/o KeyMotive LLC<br>
|
||||
40503 Koppernick Rd, Canton MI 48187<br>
|
||||
</address>
|
||||
Phone: <a href="#" class="text-dark">(734) 217-4940</a><br>
|
||||
Phone: <a href="#" class="text-dark">(888) 422-7390</a><br>
|
||||
</div>
|
||||
</div>
|
||||
<div class="line my-5"></div>
|
||||
|
@ -230,7 +145,7 @@
|
|||
|
||||
<div class="row justify-content-between align-items-center">
|
||||
<div class="col-md-6 text-black-50">
|
||||
Copyrights © 2024 All Rights Reserved by KeyMotive LLC.
|
||||
Copyright © 2010 - @gloService.YearInFooter All Rights Reserved by KeyMotive LLC.
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
@ -244,5 +159,3 @@
|
|||
<!-- Go To Top
|
||||
============================================= -->
|
||||
<div id="gotoTop" class="uil uil-angle-up"></div>
|
||||
</body>
|
||||
</html>
|
|
@ -1,42 +1,8 @@
|
|||
@page "/"
|
||||
@inject Services.GlobalService gloService
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html dir="ltr" lang="en-US">
|
||||
<head>
|
||||
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||
<meta http-equiv="x-ua-compatible" content="IE=edge">
|
||||
<meta name="author" content="SemiColonWeb">
|
||||
<meta name="description" content="Create Packers, Movers & Shipping Websites with Canvas Template. Get Canvas to build powerful websites easily with the Highly Customizable & Best Selling Bootstrap Template, today.">
|
||||
|
||||
<!-- Font Imports -->
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap" rel="stylesheet">
|
||||
|
||||
<!-- Core Style -->
|
||||
<link rel="stylesheet" href="/style.css">
|
||||
|
||||
<!-- Font Icons -->
|
||||
<link rel="stylesheet" href="css/font-icons.css">
|
||||
|
||||
<!-- Plugins/Components CSS -->
|
||||
<link rel="stylesheet" href="css/components/datepicker.css">
|
||||
|
||||
<!-- Niche Demos -->
|
||||
<link rel="stylesheet" href="demos/movers/movers.css">
|
||||
|
||||
<!-- Custom CSS -->
|
||||
<link rel="stylesheet" href="css/custom.css">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<!-- Document Title
|
||||
============================================= -->
|
||||
<title>KeyMail Specials</title>
|
||||
|
||||
</head>
|
||||
|
||||
<body class="stretched is-expanded-menu">
|
||||
<CanvasHomePage />
|
||||
<PageTitle>Home - @gloService.WebsiteName</PageTitle>
|
||||
|
||||
<!-- Document Wrapper
|
||||
============================================= -->
|
||||
|
@ -44,62 +10,7 @@
|
|||
|
||||
<!-- Header
|
||||
============================================= -->
|
||||
<header id="header" class="dark header-size-sm" data-sticky-shrink="false">
|
||||
<div class="container">
|
||||
<div class="header-row">
|
||||
|
||||
<!-- Logo
|
||||
============================================= -->
|
||||
<div id="logo" class="ms-auto ms-md-0">
|
||||
<a>
|
||||
<img class="logo-default" srcset="images/km_logo.png" alt="KeyMotive Logo">
|
||||
<img class="logo-dark" srcset="images/km_logo.png" alt="KeyMotive Logo">
|
||||
</a>
|
||||
</div><!-- #logo end -->
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="header-wrap">
|
||||
<div class="container">
|
||||
<div class="header-row justify-content-between flex-row-reverse flex-lg-row">
|
||||
|
||||
<div class="header-misc">
|
||||
|
||||
<!-- Header Buttons
|
||||
============================================= -->
|
||||
<div class="header-buttons d-none d-sm-inline-block">
|
||||
<a href="contact" data-offset="-80" class="button button-rounded button-white button-light button-small m-0">Contact Us</a>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="primary-menu-trigger">
|
||||
<button class="cnvs-hamburger" type="button" title="Open Mobile Menu">
|
||||
<span class="cnvs-hamburger-box"><span class="cnvs-hamburger-inner"></span></span>
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<!-- Primary Navigation
|
||||
============================================= -->
|
||||
<nav class="primary-menu with-arrows">
|
||||
|
||||
<ul class="menu-container">
|
||||
<li class="menu-item current"><a class="menu-link"><div>Home</div></a></li>
|
||||
<li class="menu-item"><a class="menu-link" href="about"><div>About Us</div></a></li>
|
||||
<li class="menu-item"><a class="menu-link" href="privacy"><div>Privacy</div></a></li>
|
||||
</ul>
|
||||
|
||||
</nav><!-- #primary-menu end -->
|
||||
|
||||
<form class="top-search-form" action="search.html" method="get">
|
||||
<input type="text" name="q" class="form-control" value="" placeholder="Type & Hit Enter.." autocomplete="off">
|
||||
</form>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="header-wrap-clone"></div>
|
||||
</header><!-- #header end -->
|
||||
<Header1 ActiveChoice=Header1.enuChoice.Home />
|
||||
|
||||
<!-- Slider
|
||||
============================================= -->
|
||||
|
@ -107,7 +18,7 @@
|
|||
|
||||
<div class="container mt-4" style="z-index: 2">
|
||||
<div class="text-center">
|
||||
<h2 class="text-white h2 fw-semibold mb-2">Welcome to KeyMailSpecials.com!</h2>
|
||||
<h2 class="text-white h2 fw-semibold mb-2">Welcome to<br /><img src="/images/logos/kms24w.png" width="20%" class="img-fluid" /></h2>
|
||||
<p class="text-white-50"></p>
|
||||
</div>
|
||||
<div class="row mt-5 justify-content-center">
|
||||
|
@ -224,9 +135,21 @@
|
|||
<div>
|
||||
<svg preserveAspectRatio="xMidYMax meet" viewBox="0 0 1600 100" data-height="100">
|
||||
<path style="opacity: 1;fill: rgba(255,255,255,0.75);" d="M1040,56c0.5,0,1,0,1.6,0c-16.6-8.9-36.4-15.7-66.4-15.7c-56,0-76.8,23.7-106.9,41C881.1,89.3,895.6,96,920,96
|
||||
C979.5,96,980,56,1040,56z"></path> <path style="opacity: 1;fill: rgba(255,255,255,0.75);" d="M1699.8,96l0,10H1946l-0.3-6.9c0,0,0,0-88,0s-88.6-58.8-176.5-58.8c-51.4,0-73,20.1-99.6,36.8 c14.5,9.6,29.6,18.9,58.4,18.9C1699.8,96,1699.8,96,1699.8,96z"></path> <path style="opacity: 1;fill: rgba(255,255,255,0.75);" d="M1400,96c19.5,0,32.7-4.3,43.7-10c-35.2-17.3-54.1-45.7-115.5-45.7c-32.3,0-52.8,7.9-70.2,17.8 c6.4-1.3,13.6-2.1,22-2.1C1340.1,56,1340.3,96,1400,96z"></path> <path style="opacity: 1;fill: rgba(255,255,255,0.75);" d="M320,56c6.6,0,12.4,0.5,17.7,1.3c-17-9.6-37.3-17-68.5-17c-60.4,0-79.5,27.8-114,45.2 c11.2,6,24.6,10.5,44.8,10.5C260,96,259.9,56,320,56z"></path> <path style="opacity: 1;fill: rgba(255,255,255,0.75);" d="M680,96c23.7,0,38.1-6.3,50.5-13.9C699.6,64.8,679,40.3,622.2,40.3c-30,0-49.8,6.8-66.3,15.8 c1.3,0,2.7-0.1,4.1-0.1C619.7,56,620.2,96,680,96z"></path> <path style="opacity: 1;fill: rgba(255,255,255,0.75);" d="M-40,95.6c28.3,0,43.3-8.7,57.4-18C-9.6,60.8-31,40.2-83.2,40.2c-14.3,0-26.3,1.6-36.8,4.2V106h60V96L-40,95.6
|
||||
C979.5,96,980,56,1040,56z"></path>
|
||||
<path style="opacity: 1;fill: rgba(255,255,255,0.75);" d="M1699.8,96l0,10H1946l-0.3-6.9c0,0,0,0-88,0s-88.6-58.8-176.5-58.8c-51.4,0-73,20.1-99.6,36.8 c14.5,9.6,29.6,18.9,58.4,18.9C1699.8,96,1699.8,96,1699.8,96z"></path>
|
||||
<path style="opacity: 1;fill: rgba(255,255,255,0.75);" d="M1400,96c19.5,0,32.7-4.3,43.7-10c-35.2-17.3-54.1-45.7-115.5-45.7c-32.3,0-52.8,7.9-70.2,17.8 c6.4-1.3,13.6-2.1,22-2.1C1340.1,56,1340.3,96,1400,96z"></path>
|
||||
<path style="opacity: 1;fill: rgba(255,255,255,0.75);" d="M320,56c6.6,0,12.4,0.5,17.7,1.3c-17-9.6-37.3-17-68.5-17c-60.4,0-79.5,27.8-114,45.2 c11.2,6,24.6,10.5,44.8,10.5C260,96,259.9,56,320,56z"></path>
|
||||
<path style="opacity: 1;fill: rgba(255,255,255,0.75);" d="M680,96c23.7,0,38.1-6.3,50.5-13.9C699.6,64.8,679,40.3,622.2,40.3c-30,0-49.8,6.8-66.3,15.8 c1.3,0,2.7-0.1,4.1-0.1C619.7,56,620.2,96,680,96z"></path>
|
||||
<path style="opacity: 1;fill: rgba(255,255,255,0.75);" d="M-40,95.6c28.3,0,43.3-8.7,57.4-18C-9.6,60.8-31,40.2-83.2,40.2c-14.3,0-26.3,1.6-36.8,4.2V106h60V96L-40,95.6
|
||||
z"></path>
|
||||
<path style="opacity: 1;fill: rgba(255,255,255,0.3);;" d="M504,73.4c-2.6-0.8-5.7-1.4-9.6-1.4c-19.4,0-19.6,13-39,13c-19.4,0-19.5-13-39-13c-14,0-18,6.7-26.3,10.4 C402.4,89.9,416.7,96,440,96C472.5,96,487.5,84.2,504,73.4z"></path> <path style="opacity: 1;fill: rgba(255,255,255,0.3);;" d="M1205.4,85c-0.2,0-0.4,0-0.6,0c-19.5,0-19.5-13-39-13s-19.4,12.9-39,12.9c0,0-5.9,0-12.3,0.1 c11.4,6.3,24.9,11,45.5,11C1180.6,96,1194.1,91.2,1205.4,85z"></path> <path style="opacity: 1;fill: rgba(255,255,255,0.3);;" d="M1447.4,83.9c-2.4,0.7-5.2,1.1-8.6,1.1c-19.3,0-19.6-13-39-13s-19.6,13-39,13c-3,0-5.5-0.3-7.7-0.8 c11.6,6.6,25.4,11.8,46.9,11.8C1421.8,96,1435.7,90.7,1447.4,83.9z"></path> <path style="opacity: 1;fill: rgba(255,255,255,0.3);;" d="M985.8,72c-17.6,0.8-18.3,13-37,13c-19.4,0-19.5-13-39-13c-18.2,0-19.6,11.4-35.5,12.8 c11.4,6.3,25,11.2,45.7,11.2C953.7,96,968.5,83.2,985.8,72z"></path> <path style="opacity: 1;fill: rgba(255,255,255,0.3);;" d="M743.8,73.5c-10.3,3.4-13.6,11.5-29,11.5c-19.4,0-19.5-13-39-13s-19.5,13-39,13c-0.9,0-1.7,0-2.5-0.1 c11.4,6.3,25,11.1,45.7,11.1C712.4,96,727.3,84.2,743.8,73.5z"></path> <path style="opacity: 1;fill: rgba(255,255,255,0.3);;" d="M265.5,72.3c-1.5-0.2-3.2-0.3-5.1-0.3c-19.4,0-19.6,13-39,13c-19.4,0-19.6-13-39-13 c-15.9,0-18.9,8.7-30.1,11.9C164.1,90.6,178,96,200,96C233.7,96,248.4,83.4,265.5,72.3z"></path> <path style="opacity: 1;fill: rgba(255,255,255,0.3);;" d="M1692.3,96V85c0,0,0,0-19.5,0s-19.6-13-39-13s-19.6,13-39,13c-0.1,0-0.2,0-0.4,0c11.4,6.2,24.9,11,45.6,11 C1669.9,96,1684.8,96,1692.3,96z"></path> <path style="opacity: 1;fill: rgba(255,255,255,0.3);;" d="M25.5,72C6,72,6.1,84.9-13.5,84.9L-20,85v8.9C0.7,90.1,12.6,80.6,25.9,72C25.8,72,25.7,72,25.5,72z"></path>
|
||||
<path style="opacity: 1;fill: rgba(255,255,255,0.3);;" d="M504,73.4c-2.6-0.8-5.7-1.4-9.6-1.4c-19.4,0-19.6,13-39,13c-19.4,0-19.5-13-39-13c-14,0-18,6.7-26.3,10.4 C402.4,89.9,416.7,96,440,96C472.5,96,487.5,84.2,504,73.4z"></path>
|
||||
<path style="opacity: 1;fill: rgba(255,255,255,0.3);;" d="M1205.4,85c-0.2,0-0.4,0-0.6,0c-19.5,0-19.5-13-39-13s-19.4,12.9-39,12.9c0,0-5.9,0-12.3,0.1 c11.4,6.3,24.9,11,45.5,11C1180.6,96,1194.1,91.2,1205.4,85z"></path>
|
||||
<path style="opacity: 1;fill: rgba(255,255,255,0.3);;" d="M1447.4,83.9c-2.4,0.7-5.2,1.1-8.6,1.1c-19.3,0-19.6-13-39-13s-19.6,13-39,13c-3,0-5.5-0.3-7.7-0.8 c11.6,6.6,25.4,11.8,46.9,11.8C1421.8,96,1435.7,90.7,1447.4,83.9z"></path>
|
||||
<path style="opacity: 1;fill: rgba(255,255,255,0.3);;" d="M985.8,72c-17.6,0.8-18.3,13-37,13c-19.4,0-19.5-13-39-13c-18.2,0-19.6,11.4-35.5,12.8 c11.4,6.3,25,11.2,45.7,11.2C953.7,96,968.5,83.2,985.8,72z"></path>
|
||||
<path style="opacity: 1;fill: rgba(255,255,255,0.3);;" d="M743.8,73.5c-10.3,3.4-13.6,11.5-29,11.5c-19.4,0-19.5-13-39-13s-19.5,13-39,13c-0.9,0-1.7,0-2.5-0.1 c11.4,6.3,25,11.1,45.7,11.1C712.4,96,727.3,84.2,743.8,73.5z"></path>
|
||||
<path style="opacity: 1;fill: rgba(255,255,255,0.3);;" d="M265.5,72.3c-1.5-0.2-3.2-0.3-5.1-0.3c-19.4,0-19.6,13-39,13c-19.4,0-19.6-13-39-13 c-15.9,0-18.9,8.7-30.1,11.9C164.1,90.6,178,96,200,96C233.7,96,248.4,83.4,265.5,72.3z"></path>
|
||||
<path style="opacity: 1;fill: rgba(255,255,255,0.3);;" d="M1692.3,96V85c0,0,0,0-19.5,0s-19.6-13-39-13s-19.6,13-39,13c-0.1,0-0.2,0-0.4,0c11.4,6.2,24.9,11,45.6,11 C1669.9,96,1684.8,96,1692.3,96z"></path>
|
||||
<path style="opacity: 1;fill: rgba(255,255,255,0.3);;" d="M25.5,72C6,72,6.1,84.9-13.5,84.9L-20,85v8.9C0.7,90.1,12.6,80.6,25.9,72C25.8,72,25.7,72,25.5,72z"></path>
|
||||
<path style="fill: rgb(255, 255, 255);" d="M-40,95.6C20.3,95.6,20.1,56,80,56s60,40,120,40s59.9-40,120-40s60.3,40,120,40s60.3-40,120-40s60.2,40,120,40s60.1-40,120-40s60.5,40,120,40s60-40,120-40s60.4,40,120,40s59.9-40,120-40s60.3,40,120,40s60.2-40,120-40s60.2,40,120,40s59.8,0,59.8,0l0.2,143H-60V96L-40,95.6z"></path>
|
||||
</svg>
|
||||
<div class="bg-white" style="height: 150px"></div>
|
||||
|
@ -387,9 +310,6 @@
|
|||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="clear"></div>
|
||||
|
||||
<div class="clear"></div>
|
||||
|
||||
<div class="section dark pt-0 mb-0 bg-color" style="background: url('demos/movers/images/bg-2.png') no-repeat center bottom / 100%; overflow: visible">
|
||||
|
@ -413,7 +333,6 @@
|
|||
</div>
|
||||
</div>
|
||||
</section><!-- #content end -->
|
||||
|
||||
<!-- Footer
|
||||
============================================= -->
|
||||
<footer id="footer" class="bg-transparent border-0">
|
||||
|
@ -421,26 +340,22 @@
|
|||
<!-- Copyrights
|
||||
============================================= -->
|
||||
<div id="copyrights" class="bg-transparent">
|
||||
|
||||
<div class="container">
|
||||
|
||||
<div class="row justify-content-between align-items-center">
|
||||
<div class="col-md-6 text-black-50">
|
||||
Copyrights © 2024 All Rights Reserved by KeyMotive LLC.
|
||||
Copyright © 2010 - @gloService.YearInFooter All Rights Reserved by KeyMotive LLC.
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div><!-- #copyrights end -->
|
||||
|
||||
</footer><!-- #footer end -->
|
||||
|
||||
</div><!-- #wrapper end -->
|
||||
|
||||
<!-- Go To Top
|
||||
============================================= -->
|
||||
<div id="gotoTop" class="uil uil-angle-up"></div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
||||
@code {
|
||||
|
||||
}
|
|
@ -1,42 +1,8 @@
|
|||
@page "/privacy"
|
||||
@inject Services.GlobalService gloService
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html dir="ltr" lang="en-US">
|
||||
<head>
|
||||
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||
<meta http-equiv="x-ua-compatible" content="IE=edge">
|
||||
<meta name="author" content="SemiColonWeb">
|
||||
<meta name="description" content="Create Packers, Movers & Shipping Websites with Canvas Template. Get Canvas to build powerful websites easily with the Highly Customizable & Best Selling Bootstrap Template, today.">
|
||||
|
||||
<!-- Font Imports -->
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap" rel="stylesheet">
|
||||
|
||||
<!-- Core Style -->
|
||||
<link rel="stylesheet" href="style.css?version=0.1">
|
||||
|
||||
<!-- Font Icons -->
|
||||
<link rel="stylesheet" href="css/font-icons.css">
|
||||
|
||||
<!-- Plugins/Components CSS -->
|
||||
<link rel="stylesheet" href="css/components/datepicker.css">
|
||||
|
||||
<!-- Niche Demos -->
|
||||
<link rel="stylesheet" href="demos/movers/movers.css">
|
||||
|
||||
<!-- Custom CSS -->
|
||||
<link rel="stylesheet" href="css/custom.css">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<!-- Document Title
|
||||
============================================= -->
|
||||
<title>Privacy</title>
|
||||
|
||||
</head>
|
||||
|
||||
<body class="stretched is-expanded-menu">
|
||||
<CanvasHomePage />
|
||||
<PageTitle>Privacy - @gloService.WebsiteName</PageTitle>
|
||||
|
||||
<!-- Document Wrapper
|
||||
============================================= -->
|
||||
|
@ -44,62 +10,8 @@
|
|||
|
||||
<!-- Header
|
||||
============================================= -->
|
||||
<header id="header" class="dark header-size-sm" data-sticky-shrink="false">
|
||||
<div class="container">
|
||||
<div class="header-row">
|
||||
<Header1 ActiveChoice=Header1.enuChoice.Privacy/>
|
||||
|
||||
<!-- Logo
|
||||
============================================= -->
|
||||
<div id="logo" class="ms-auto ms-md-0">
|
||||
<a>
|
||||
<img class="logo-default" srcset="images/km_logo.png" alt="KeyMotive Logo">
|
||||
<img class="logo-dark" srcset="images/km_logo.png" alt="KeyMotive Logo">
|
||||
</a>
|
||||
</div><!-- #logo end -->
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="header-wrap">
|
||||
<div class="container">
|
||||
<div class="header-row justify-content-between flex-row-reverse flex-lg-row">
|
||||
|
||||
<div class="header-misc">
|
||||
|
||||
<!-- Header Buttons
|
||||
============================================= -->
|
||||
<div class="header-buttons d-none d-sm-inline-block">
|
||||
<a href="contact" data-offset="-80" class="button button-rounded button-white button-light button-small m-0">Contact Us</a>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="primary-menu-trigger">
|
||||
<button class="cnvs-hamburger" type="button" title="Open Mobile Menu">
|
||||
<span class="cnvs-hamburger-box"><span class="cnvs-hamburger-inner"></span></span>
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<!-- Primary Navigation
|
||||
============================================= -->
|
||||
<nav class="primary-menu with-arrows">
|
||||
|
||||
<ul class="menu-container">
|
||||
<li class="menu-item"><a class="menu-link" href=""><div>Home</div></a></li>
|
||||
<li class="menu-item"><a class="menu-link" href="about"><div>About Us</div></a></li>
|
||||
<li class="menu-item current"><a class="menu-link" href="privacy"><div>Privacy</div></a></li>
|
||||
</ul>
|
||||
|
||||
</nav><!-- #primary-menu end -->
|
||||
|
||||
<form class="top-search-form" action="search.html" method="get">
|
||||
<input type="text" name="q" class="form-control" value="" placeholder="Type & Hit Enter.." autocomplete="off">
|
||||
</form>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="header-wrap-clone"></div>
|
||||
</header><!-- #header end -->
|
||||
<!-- Page Title
|
||||
============================================= -->
|
||||
<section class="page-title bg-color dark py-6">
|
||||
|
@ -284,7 +196,6 @@
|
|||
<!-- Footer
|
||||
============================================= -->
|
||||
<footer id="footer" class="bg-transparent border-0">
|
||||
|
||||
<!-- Copyrights
|
||||
============================================= -->
|
||||
<div id="copyrights" class="bg-transparent">
|
||||
|
@ -293,7 +204,7 @@
|
|||
|
||||
<div class="row justify-content-between align-items-center">
|
||||
<div class="col-md-6 text-black-50">
|
||||
Copyrights © 2024 All Rights Reserved by KeyMotive LLC.
|
||||
Copyright © 2010 - @gloService.YearInFooter All Rights Reserved by KeyMotive LLC.
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
@ -307,6 +218,3 @@
|
|||
<!-- Go To Top
|
||||
============================================= -->
|
||||
<div id="gotoTop" class="uil uil-angle-up"></div>
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,8 @@
|
|||
namespace KeymailSpecials2.Components.Services;
|
||||
|
||||
public class GlobalService
|
||||
{
|
||||
public string WebsiteName { get; set; } = "KeyMail Specials";
|
||||
public int YearInFooter { get; set; } = DateTime.Today.AddDays(-14).Year;
|
||||
|
||||
}
|
|
@ -8,3 +8,4 @@
|
|||
@using Microsoft.JSInterop
|
||||
@using KeymailSpecials2
|
||||
@using KeymailSpecials2.Components
|
||||
@using KeymailSpecials2.Components.Components
|
||||
|
|
|
@ -2085,4 +2085,12 @@
|
|||
<None Include="wwwroot\style.css.map" />
|
||||
</ItemGroup>
|
||||
|
||||
<Target Name="CustomActionsAfterPublish" AfterTargets="AfterPublish">
|
||||
<!--<Exec Command="echo '$(PublishOutputFolder)' / '$(TargetDir)' / '$(TargetPath)' / '$(TargetName)' / '$(TargetFileName)' / '$(TargetExt)'" />-->
|
||||
<!--<Exec Command="xcopy /s/e/q/r/k/y "$(TargetDir)"..\publish\win-x64\ \\salem\dev\DevVBnet\JobBuilder\ProcessJobPacket2\ " />-->
|
||||
<!--<Exec Command="echo. > $(PublishUrl)_publishFinished.txt" />-->
|
||||
<Exec Command="copy $(PublishUrl)web.config $(PublishUrl)_publishFinished.txt" />
|
||||
<!--<Exec Command="echo $(PublishUrl) / $(PublishDir) " />-->
|
||||
</Target>
|
||||
|
||||
</Project>
|
||||
|
|
|
@ -2,5 +2,6 @@
|
|||
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup>
|
||||
<ActiveDebugProfile>https</ActiveDebugProfile>
|
||||
<NameOfLastUsedPublishProfile>FolderProfile</NameOfLastUsedPublishProfile>
|
||||
</PropertyGroup>
|
||||
</Project>
|
16
Program.cs
16
Program.cs
|
@ -1,11 +1,20 @@
|
|||
using KeymailSpecials2.Components;
|
||||
using KeymailSpecials2.Components.Services;
|
||||
using Microsoft.AspNetCore.Builder;
|
||||
using Microsoft.Extensions.FileProviders;
|
||||
|
||||
internal class Program
|
||||
{
|
||||
private static void Main(string[] args)
|
||||
{
|
||||
var builder = WebApplication.CreateBuilder(args);
|
||||
|
||||
// Add services to the container.
|
||||
builder.Services.AddRazorComponents()
|
||||
.AddInteractiveServerComponents();
|
||||
|
||||
builder.Services.AddSingleton<GlobalService>(); // Global variables shared by all users
|
||||
|
||||
var app = builder.Build();
|
||||
|
||||
// Configure the HTTP request pipeline.
|
||||
|
@ -19,9 +28,16 @@ if (!app.Environment.IsDevelopment())
|
|||
app.UseHttpsRedirection();
|
||||
|
||||
app.UseStaticFiles();
|
||||
app.UseStaticFiles(new StaticFileOptions()
|
||||
{
|
||||
FileProvider = new PhysicalFileProvider(@"\\toronto\d$\EmailMarketing\im3"),
|
||||
RequestPath = "/im3"
|
||||
});
|
||||
app.UseAntiforgery();
|
||||
|
||||
app.MapRazorComponents<App>()
|
||||
.AddInteractiveServerRenderMode();
|
||||
|
||||
app.Run();
|
||||
}
|
||||
}
|
||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because one or more lines are too long
|
@ -14,7 +14,7 @@ using System.Reflection;
|
|||
[assembly: System.Reflection.AssemblyCompanyAttribute("KeymailSpecials2")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+6161668cd5e55358c88b857aac08439229ac7cb7")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("KeymailSpecials2")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("KeymailSpecials2")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
|
|
|
@ -1 +1 @@
|
|||
409a22eda8d5868c5adcd68014fbf39c9fd5174b385348919d5a74ddaa6e2632
|
||||
a2dd8edaf4c74bd3596207a45e51a50c5eb8a56851bf30335cd54307a30361ce
|
||||
|
|
|
@ -9,55 +9,51 @@ build_property.EnforceExtendedAnalyzerRules =
|
|||
build_property._SupportedPlatformList = Linux,macOS,Windows
|
||||
build_property.RootNamespace = KeymailSpecials2
|
||||
build_property.RootNamespace = KeymailSpecials2
|
||||
build_property.ProjectDir = C:\Users\joshdeck.KEYMTV\Documents\Playground\KeymailSpecials2\
|
||||
build_property.ProjectDir = C:\Repos\KeymailSpecials2\
|
||||
build_property.EnableComHosting =
|
||||
build_property.EnableGeneratedComInterfaceComImportInterop =
|
||||
build_property.RazorLangVersion = 8.0
|
||||
build_property.SupportLocalizedComponentNames =
|
||||
build_property.GenerateRazorMetadataSourceChecksumAttributes =
|
||||
build_property.MSBuildProjectDirectory = C:\Users\joshdeck.KEYMTV\Documents\Playground\KeymailSpecials2
|
||||
build_property.MSBuildProjectDirectory = C:\Repos\KeymailSpecials2
|
||||
build_property._RazorSourceGeneratorDebug =
|
||||
|
||||
[C:/Users/joshdeck.KEYMTV/Documents/Playground/KeymailSpecials2/Components/App.razor]
|
||||
[C:/Repos/KeymailSpecials2/Components/App.razor]
|
||||
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xBcHAucmF6b3I=
|
||||
build_metadata.AdditionalFiles.CssScope =
|
||||
|
||||
[C:/Users/joshdeck.KEYMTV/Documents/Playground/KeymailSpecials2/Components/Layout/NoNav.razor]
|
||||
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xMYXlvdXRcTm9OYXYucmF6b3I=
|
||||
[C:/Repos/KeymailSpecials2/Components/Components/CanvasHomePage.razor]
|
||||
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xDb21wb25lbnRzXENhbnZhc0hvbWVQYWdlLnJhem9y
|
||||
build_metadata.AdditionalFiles.CssScope =
|
||||
|
||||
[C:/Users/joshdeck.KEYMTV/Documents/Playground/KeymailSpecials2/Components/Pages/Counter.razor]
|
||||
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xDb3VudGVyLnJhem9y
|
||||
[C:/Repos/KeymailSpecials2/Components/Components/Header1.razor]
|
||||
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xDb21wb25lbnRzXEhlYWRlcjEucmF6b3I=
|
||||
build_metadata.AdditionalFiles.CssScope =
|
||||
|
||||
[C:/Users/joshdeck.KEYMTV/Documents/Playground/KeymailSpecials2/Components/Pages/Error.razor]
|
||||
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xFcnJvci5yYXpvcg==
|
||||
[C:/Repos/KeymailSpecials2/Components/Layout/DefaultLayout.razor]
|
||||
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xMYXlvdXRcRGVmYXVsdExheW91dC5yYXpvcg==
|
||||
build_metadata.AdditionalFiles.CssScope =
|
||||
|
||||
[C:/Users/joshdeck.KEYMTV/Documents/Playground/KeymailSpecials2/Components/Pages/Home.razor]
|
||||
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xIb21lLnJhem9y
|
||||
[C:/Repos/KeymailSpecials2/Components/Pages/About.razor]
|
||||
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xBYm91dC5yYXpvcg==
|
||||
build_metadata.AdditionalFiles.CssScope =
|
||||
|
||||
[C:/Users/joshdeck.KEYMTV/Documents/Playground/KeymailSpecials2/Components/Pages/Movers.razor]
|
||||
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xNb3ZlcnMucmF6b3I=
|
||||
[C:/Repos/KeymailSpecials2/Components/Pages/Contact.razor]
|
||||
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xDb250YWN0LnJhem9y
|
||||
build_metadata.AdditionalFiles.CssScope =
|
||||
|
||||
[C:/Users/joshdeck.KEYMTV/Documents/Playground/KeymailSpecials2/Components/Pages/Weather.razor]
|
||||
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xXZWF0aGVyLnJhem9y
|
||||
[C:/Repos/KeymailSpecials2/Components/Pages/Index.razor]
|
||||
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xJbmRleC5yYXpvcg==
|
||||
build_metadata.AdditionalFiles.CssScope =
|
||||
|
||||
[C:/Users/joshdeck.KEYMTV/Documents/Playground/KeymailSpecials2/Components/Routes.razor]
|
||||
[C:/Repos/KeymailSpecials2/Components/Pages/Privacy.razor]
|
||||
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xQcml2YWN5LnJhem9y
|
||||
build_metadata.AdditionalFiles.CssScope =
|
||||
|
||||
[C:/Repos/KeymailSpecials2/Components/Routes.razor]
|
||||
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xSb3V0ZXMucmF6b3I=
|
||||
build_metadata.AdditionalFiles.CssScope =
|
||||
|
||||
[C:/Users/joshdeck.KEYMTV/Documents/Playground/KeymailSpecials2/Components/_Imports.razor]
|
||||
[C:/Repos/KeymailSpecials2/Components/_Imports.razor]
|
||||
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xfSW1wb3J0cy5yYXpvcg==
|
||||
build_metadata.AdditionalFiles.CssScope =
|
||||
|
||||
[C:/Users/joshdeck.KEYMTV/Documents/Playground/KeymailSpecials2/Components/Layout/MainLayout.razor]
|
||||
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xMYXlvdXRcTWFpbkxheW91dC5yYXpvcg==
|
||||
build_metadata.AdditionalFiles.CssScope = b-fazdk3iuyr
|
||||
|
||||
[C:/Users/joshdeck.KEYMTV/Documents/Playground/KeymailSpecials2/Components/Layout/NavMenu.razor]
|
||||
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xMYXlvdXRcTmF2TWVudS5yYXpvcg==
|
||||
build_metadata.AdditionalFiles.CssScope = b-q5015zael5
|
||||
|
|
Binary file not shown.
|
@ -1 +1 @@
|
|||
5cf2a5cdf00dd089e91bd58de45358a98b0f2bc0980f855120b535a0a79c506d
|
||||
effbff73f9f49d57c3dae22bf76c88153d7c2c6efb4f4b4f693130e26e366a1e
|
||||
|
|
|
@ -27,3 +27,29 @@ C:\Users\joshdeck.KEYMTV\Documents\Playground\KeymailSpecials2\obj\Debug\net8.0\
|
|||
C:\Users\joshdeck.KEYMTV\Documents\Playground\KeymailSpecials2\obj\Debug\net8.0\KeymailSpecials2.pdb
|
||||
C:\Users\joshdeck.KEYMTV\Documents\Playground\KeymailSpecials2\obj\Debug\net8.0\KeymailSpecials2.genruntimeconfig.cache
|
||||
C:\Users\joshdeck.KEYMTV\Documents\Playground\KeymailSpecials2\obj\Debug\net8.0\ref\KeymailSpecials2.dll
|
||||
C:\Repos\KeymailSpecials2\bin\Debug\net8.0\appsettings.Development.json
|
||||
C:\Repos\KeymailSpecials2\bin\Debug\net8.0\appsettings.json
|
||||
C:\Repos\KeymailSpecials2\bin\Debug\net8.0\KeymailSpecials2.staticwebassets.runtime.json
|
||||
C:\Repos\KeymailSpecials2\bin\Debug\net8.0\KeymailSpecials2.exe
|
||||
C:\Repos\KeymailSpecials2\bin\Debug\net8.0\KeymailSpecials2.deps.json
|
||||
C:\Repos\KeymailSpecials2\bin\Debug\net8.0\KeymailSpecials2.runtimeconfig.json
|
||||
C:\Repos\KeymailSpecials2\bin\Debug\net8.0\KeymailSpecials2.dll
|
||||
C:\Repos\KeymailSpecials2\bin\Debug\net8.0\KeymailSpecials2.pdb
|
||||
C:\Repos\KeymailSpecials2\obj\Debug\net8.0\KeymailSpecials2.GeneratedMSBuildEditorConfig.editorconfig
|
||||
C:\Repos\KeymailSpecials2\obj\Debug\net8.0\KeymailSpecials2.AssemblyInfoInputs.cache
|
||||
C:\Repos\KeymailSpecials2\obj\Debug\net8.0\KeymailSpecials2.AssemblyInfo.cs
|
||||
C:\Repos\KeymailSpecials2\obj\Debug\net8.0\KeymailSpecials2.csproj.CoreCompileInputs.cache
|
||||
C:\Repos\KeymailSpecials2\obj\Debug\net8.0\KeymailSpecials2.MvcApplicationPartsAssemblyInfo.cache
|
||||
C:\Repos\KeymailSpecials2\obj\Debug\net8.0\staticwebassets.build.json
|
||||
C:\Repos\KeymailSpecials2\obj\Debug\net8.0\staticwebassets.development.json
|
||||
C:\Repos\KeymailSpecials2\obj\Debug\net8.0\staticwebassets\msbuild.KeymailSpecials2.Microsoft.AspNetCore.StaticWebAssets.props
|
||||
C:\Repos\KeymailSpecials2\obj\Debug\net8.0\staticwebassets\msbuild.build.KeymailSpecials2.props
|
||||
C:\Repos\KeymailSpecials2\obj\Debug\net8.0\staticwebassets\msbuild.buildMultiTargeting.KeymailSpecials2.props
|
||||
C:\Repos\KeymailSpecials2\obj\Debug\net8.0\staticwebassets\msbuild.buildTransitive.KeymailSpecials2.props
|
||||
C:\Repos\KeymailSpecials2\obj\Debug\net8.0\staticwebassets.pack.json
|
||||
C:\Repos\KeymailSpecials2\obj\Debug\net8.0\scopedcss\bundle\KeymailSpecials2.styles.css
|
||||
C:\Repos\KeymailSpecials2\obj\Debug\net8.0\KeymailSpecials2.dll
|
||||
C:\Repos\KeymailSpecials2\obj\Debug\net8.0\refint\KeymailSpecials2.dll
|
||||
C:\Repos\KeymailSpecials2\obj\Debug\net8.0\KeymailSpecials2.pdb
|
||||
C:\Repos\KeymailSpecials2\obj\Debug\net8.0\KeymailSpecials2.genruntimeconfig.cache
|
||||
C:\Repos\KeymailSpecials2\obj\Debug\net8.0\ref\KeymailSpecials2.dll
|
||||
|
|
Binary file not shown.
|
@ -1 +1 @@
|
|||
9a4eaf49489ac670fd322d536d4c83a4dc7d3698ebe4b201ccdffd1c8fb475ee
|
||||
8e826a41a73f0e77136e300991dc8674e8e8c4cf82f47084f53eb8a9f7c72695
|
||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -1,203 +0,0 @@
|
|||
/* _content/KeymailSpecials2/Components/Layout/MainLayout.razor.rz.scp.css */
|
||||
.page[b-tdermkid1v] {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
main[b-tdermkid1v] {
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.sidebar[b-tdermkid1v] {
|
||||
background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
|
||||
}
|
||||
|
||||
.top-row[b-tdermkid1v] {
|
||||
background-color: #f7f7f7;
|
||||
border-bottom: 1px solid #d6d5d5;
|
||||
justify-content: flex-end;
|
||||
height: 3.5rem;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.top-row[b-tdermkid1v] a, .top-row[b-tdermkid1v] .btn-link {
|
||||
white-space: nowrap;
|
||||
margin-left: 1.5rem;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.top-row[b-tdermkid1v] a:hover, .top-row[b-tdermkid1v] .btn-link:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.top-row[b-tdermkid1v] a:first-child {
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
|
||||
@media (max-width: 640.98px) {
|
||||
.top-row[b-tdermkid1v] {
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.top-row[b-tdermkid1v] a, .top-row[b-tdermkid1v] .btn-link {
|
||||
margin-left: 0;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 641px) {
|
||||
.page[b-tdermkid1v] {
|
||||
flex-direction: row;
|
||||
}
|
||||
|
||||
.sidebar[b-tdermkid1v] {
|
||||
width: 250px;
|
||||
height: 100vh;
|
||||
position: sticky;
|
||||
top: 0;
|
||||
}
|
||||
|
||||
.top-row[b-tdermkid1v] {
|
||||
position: sticky;
|
||||
top: 0;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.top-row.auth[b-tdermkid1v] a:first-child {
|
||||
flex: 1;
|
||||
text-align: right;
|
||||
width: 0;
|
||||
}
|
||||
|
||||
.top-row[b-tdermkid1v], article[b-tdermkid1v] {
|
||||
padding-left: 2rem !important;
|
||||
padding-right: 1.5rem !important;
|
||||
}
|
||||
}
|
||||
|
||||
#blazor-error-ui[b-tdermkid1v] {
|
||||
background: lightyellow;
|
||||
bottom: 0;
|
||||
box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
|
||||
display: none;
|
||||
left: 0;
|
||||
padding: 0.6rem 1.25rem 0.7rem 1.25rem;
|
||||
position: fixed;
|
||||
width: 100%;
|
||||
z-index: 1000;
|
||||
}
|
||||
|
||||
#blazor-error-ui .dismiss[b-tdermkid1v] {
|
||||
cursor: pointer;
|
||||
position: absolute;
|
||||
right: 0.75rem;
|
||||
top: 0.5rem;
|
||||
}
|
||||
/* _content/KeymailSpecials2/Components/Layout/NavMenu.razor.rz.scp.css */
|
||||
.navbar-toggler[b-z1xlmncceh] {
|
||||
appearance: none;
|
||||
cursor: pointer;
|
||||
width: 3.5rem;
|
||||
height: 2.5rem;
|
||||
color: white;
|
||||
position: absolute;
|
||||
top: 0.5rem;
|
||||
right: 1rem;
|
||||
border: 1px solid rgba(255, 255, 255, 0.1);
|
||||
background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
|
||||
}
|
||||
|
||||
.navbar-toggler:checked[b-z1xlmncceh] {
|
||||
background-color: rgba(255, 255, 255, 0.5);
|
||||
}
|
||||
|
||||
.top-row[b-z1xlmncceh] {
|
||||
height: 3.5rem;
|
||||
background-color: rgba(0,0,0,0.4);
|
||||
}
|
||||
|
||||
.navbar-brand[b-z1xlmncceh] {
|
||||
font-size: 1.1rem;
|
||||
}
|
||||
|
||||
.bi[b-z1xlmncceh] {
|
||||
display: inline-block;
|
||||
position: relative;
|
||||
width: 1.25rem;
|
||||
height: 1.25rem;
|
||||
margin-right: 0.75rem;
|
||||
top: -1px;
|
||||
background-size: cover;
|
||||
}
|
||||
|
||||
.bi-house-door-fill-nav-menu[b-z1xlmncceh] {
|
||||
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
|
||||
}
|
||||
|
||||
.bi-plus-square-fill-nav-menu[b-z1xlmncceh] {
|
||||
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
|
||||
}
|
||||
|
||||
.bi-list-nested-nav-menu[b-z1xlmncceh] {
|
||||
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
|
||||
}
|
||||
|
||||
.nav-item[b-z1xlmncceh] {
|
||||
font-size: 0.9rem;
|
||||
padding-bottom: 0.5rem;
|
||||
}
|
||||
|
||||
.nav-item:first-of-type[b-z1xlmncceh] {
|
||||
padding-top: 1rem;
|
||||
}
|
||||
|
||||
.nav-item:last-of-type[b-z1xlmncceh] {
|
||||
padding-bottom: 1rem;
|
||||
}
|
||||
|
||||
.nav-item[b-z1xlmncceh] .nav-link {
|
||||
color: #d7d7d7;
|
||||
background: none;
|
||||
border: none;
|
||||
border-radius: 4px;
|
||||
height: 3rem;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
line-height: 3rem;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.nav-item[b-z1xlmncceh] a.active {
|
||||
background-color: rgba(255,255,255,0.37);
|
||||
color: white;
|
||||
}
|
||||
|
||||
.nav-item[b-z1xlmncceh] .nav-link:hover {
|
||||
background-color: rgba(255,255,255,0.1);
|
||||
color: white;
|
||||
}
|
||||
|
||||
.nav-scrollable[b-z1xlmncceh] {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.navbar-toggler:checked ~ .nav-scrollable[b-z1xlmncceh] {
|
||||
display: block;
|
||||
}
|
||||
|
||||
@media (min-width: 641px) {
|
||||
.navbar-toggler[b-z1xlmncceh] {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.nav-scrollable[b-z1xlmncceh] {
|
||||
/* Never collapse the sidebar for wide screens */
|
||||
display: block;
|
||||
|
||||
/* Allow sidebar to scroll for tall menus */
|
||||
height: calc(100vh - 3.5rem);
|
||||
overflow-y: auto;
|
||||
}
|
||||
}
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
|
@ -1888,12 +1888,12 @@
|
|||
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
||||
<OriginalItemSpec>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\demos\hosting\images\svg\map-light.svg))</OriginalItemSpec>
|
||||
</StaticWebAsset>
|
||||
<StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\demos\hosting\images\svg\map.png))">
|
||||
<StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\demos\hosting\images\svg\map.svg))">
|
||||
<SourceType>Package</SourceType>
|
||||
<SourceId>KeymailSpecials2</SourceId>
|
||||
<ContentRoot>$(MSBuildThisFileDirectory)..\staticwebassets\</ContentRoot>
|
||||
<BasePath>_content/KeymailSpecials2</BasePath>
|
||||
<RelativePath>demos/hosting/images/svg/map.png</RelativePath>
|
||||
<RelativePath>demos/hosting/images/svg/map.svg</RelativePath>
|
||||
<AssetKind>All</AssetKind>
|
||||
<AssetMode>All</AssetMode>
|
||||
<AssetRole>Primary</AssetRole>
|
||||
|
@ -1902,7 +1902,7 @@
|
|||
<AssetTraitValue></AssetTraitValue>
|
||||
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
|
||||
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
||||
<OriginalItemSpec>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\demos\hosting\images\svg\map.png))</OriginalItemSpec>
|
||||
<OriginalItemSpec>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\demos\hosting\images\svg\map.svg))</OriginalItemSpec>
|
||||
</StaticWebAsset>
|
||||
<StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\demos\hosting\images\svg\shared.svg))">
|
||||
<SourceType>Package</SourceType>
|
||||
|
@ -2064,12 +2064,12 @@
|
|||
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
||||
<OriginalItemSpec>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\demos\hosting\images\users\5.jpg))</OriginalItemSpec>
|
||||
</StaticWebAsset>
|
||||
<StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\demos\movers\images\2.svg))">
|
||||
<StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\demos\movers\images\12w3qdaad2.svg.bak))">
|
||||
<SourceType>Package</SourceType>
|
||||
<SourceId>KeymailSpecials2</SourceId>
|
||||
<ContentRoot>$(MSBuildThisFileDirectory)..\staticwebassets\</ContentRoot>
|
||||
<BasePath>_content/KeymailSpecials2</BasePath>
|
||||
<RelativePath>demos/movers/images/2.svg</RelativePath>
|
||||
<RelativePath>demos/movers/images/12w3qdaad2.svg.bak</RelativePath>
|
||||
<AssetKind>All</AssetKind>
|
||||
<AssetMode>All</AssetMode>
|
||||
<AssetRole>Primary</AssetRole>
|
||||
|
@ -2078,7 +2078,7 @@
|
|||
<AssetTraitValue></AssetTraitValue>
|
||||
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
|
||||
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
||||
<OriginalItemSpec>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\demos\movers\images\2.svg))</OriginalItemSpec>
|
||||
<OriginalItemSpec>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\demos\movers\images\12w3qdaad2.svg.bak))</OriginalItemSpec>
|
||||
</StaticWebAsset>
|
||||
<StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\demos\movers\images\baggage.png))">
|
||||
<SourceType>Package</SourceType>
|
||||
|
@ -2464,6 +2464,38 @@
|
|||
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
||||
<OriginalItemSpec>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\demos\movers\images\featured-img\Thumbs.db))</OriginalItemSpec>
|
||||
</StaticWebAsset>
|
||||
<StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\demos\movers\images\happy.svg))">
|
||||
<SourceType>Package</SourceType>
|
||||
<SourceId>KeymailSpecials2</SourceId>
|
||||
<ContentRoot>$(MSBuildThisFileDirectory)..\staticwebassets\</ContentRoot>
|
||||
<BasePath>_content/KeymailSpecials2</BasePath>
|
||||
<RelativePath>demos/movers/images/happy.svg</RelativePath>
|
||||
<AssetKind>All</AssetKind>
|
||||
<AssetMode>All</AssetMode>
|
||||
<AssetRole>Primary</AssetRole>
|
||||
<RelatedAsset></RelatedAsset>
|
||||
<AssetTraitName></AssetTraitName>
|
||||
<AssetTraitValue></AssetTraitValue>
|
||||
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
|
||||
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
||||
<OriginalItemSpec>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\demos\movers\images\happy.svg))</OriginalItemSpec>
|
||||
</StaticWebAsset>
|
||||
<StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\demos\movers\images\join.svg))">
|
||||
<SourceType>Package</SourceType>
|
||||
<SourceId>KeymailSpecials2</SourceId>
|
||||
<ContentRoot>$(MSBuildThisFileDirectory)..\staticwebassets\</ContentRoot>
|
||||
<BasePath>_content/KeymailSpecials2</BasePath>
|
||||
<RelativePath>demos/movers/images/join.svg</RelativePath>
|
||||
<AssetKind>All</AssetKind>
|
||||
<AssetMode>All</AssetMode>
|
||||
<AssetRole>Primary</AssetRole>
|
||||
<RelatedAsset></RelatedAsset>
|
||||
<AssetTraitName></AssetTraitName>
|
||||
<AssetTraitValue></AssetTraitValue>
|
||||
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
|
||||
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
||||
<OriginalItemSpec>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\demos\movers\images\join.svg))</OriginalItemSpec>
|
||||
</StaticWebAsset>
|
||||
<StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\demos\movers\images\others\1.png))">
|
||||
<SourceType>Package</SourceType>
|
||||
<SourceId>KeymailSpecials2</SourceId>
|
||||
|
@ -2528,12 +2560,12 @@
|
|||
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
||||
<OriginalItemSpec>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\demos\movers\images\others\4.png))</OriginalItemSpec>
|
||||
</StaticWebAsset>
|
||||
<StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\demos\movers\images\section\1.jpg))">
|
||||
<StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\demos\movers\images\privacy.svg))">
|
||||
<SourceType>Package</SourceType>
|
||||
<SourceId>KeymailSpecials2</SourceId>
|
||||
<ContentRoot>$(MSBuildThisFileDirectory)..\staticwebassets\</ContentRoot>
|
||||
<BasePath>_content/KeymailSpecials2</BasePath>
|
||||
<RelativePath>demos/movers/images/section/1.jpg</RelativePath>
|
||||
<RelativePath>demos/movers/images/privacy.svg</RelativePath>
|
||||
<AssetKind>All</AssetKind>
|
||||
<AssetMode>All</AssetMode>
|
||||
<AssetRole>Primary</AssetRole>
|
||||
|
@ -2542,7 +2574,7 @@
|
|||
<AssetTraitValue></AssetTraitValue>
|
||||
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
|
||||
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
||||
<OriginalItemSpec>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\demos\movers\images\section\1.jpg))</OriginalItemSpec>
|
||||
<OriginalItemSpec>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\demos\movers\images\privacy.svg))</OriginalItemSpec>
|
||||
</StaticWebAsset>
|
||||
<StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\demos\movers\images\section\2.jpg))">
|
||||
<SourceType>Package</SourceType>
|
||||
|
@ -2560,6 +2592,38 @@
|
|||
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
||||
<OriginalItemSpec>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\demos\movers\images\section\2.jpg))</OriginalItemSpec>
|
||||
</StaticWebAsset>
|
||||
<StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\demos\movers\images\section\backdrop.jpg))">
|
||||
<SourceType>Package</SourceType>
|
||||
<SourceId>KeymailSpecials2</SourceId>
|
||||
<ContentRoot>$(MSBuildThisFileDirectory)..\staticwebassets\</ContentRoot>
|
||||
<BasePath>_content/KeymailSpecials2</BasePath>
|
||||
<RelativePath>demos/movers/images/section/backdrop.jpg</RelativePath>
|
||||
<AssetKind>All</AssetKind>
|
||||
<AssetMode>All</AssetMode>
|
||||
<AssetRole>Primary</AssetRole>
|
||||
<RelatedAsset></RelatedAsset>
|
||||
<AssetTraitName></AssetTraitName>
|
||||
<AssetTraitValue></AssetTraitValue>
|
||||
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
|
||||
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
||||
<OriginalItemSpec>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\demos\movers\images\section\backdrop.jpg))</OriginalItemSpec>
|
||||
</StaticWebAsset>
|
||||
<StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\demos\movers\images\section\collab.svg))">
|
||||
<SourceType>Package</SourceType>
|
||||
<SourceId>KeymailSpecials2</SourceId>
|
||||
<ContentRoot>$(MSBuildThisFileDirectory)..\staticwebassets\</ContentRoot>
|
||||
<BasePath>_content/KeymailSpecials2</BasePath>
|
||||
<RelativePath>demos/movers/images/section/collab.svg</RelativePath>
|
||||
<AssetKind>All</AssetKind>
|
||||
<AssetMode>All</AssetMode>
|
||||
<AssetRole>Primary</AssetRole>
|
||||
<RelatedAsset></RelatedAsset>
|
||||
<AssetTraitName></AssetTraitName>
|
||||
<AssetTraitValue></AssetTraitValue>
|
||||
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
|
||||
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
||||
<OriginalItemSpec>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\demos\movers\images\section\collab.svg))</OriginalItemSpec>
|
||||
</StaticWebAsset>
|
||||
<StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\demos\movers\images\section\company.jpg))">
|
||||
<SourceType>Package</SourceType>
|
||||
<SourceId>KeymailSpecials2</SourceId>
|
||||
|
@ -2576,6 +2640,22 @@
|
|||
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
||||
<OriginalItemSpec>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\demos\movers\images\section\company.jpg))</OriginalItemSpec>
|
||||
</StaticWebAsset>
|
||||
<StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\demos\movers\images\section\success.jpg))">
|
||||
<SourceType>Package</SourceType>
|
||||
<SourceId>KeymailSpecials2</SourceId>
|
||||
<ContentRoot>$(MSBuildThisFileDirectory)..\staticwebassets\</ContentRoot>
|
||||
<BasePath>_content/KeymailSpecials2</BasePath>
|
||||
<RelativePath>demos/movers/images/section/success.jpg</RelativePath>
|
||||
<AssetKind>All</AssetKind>
|
||||
<AssetMode>All</AssetMode>
|
||||
<AssetRole>Primary</AssetRole>
|
||||
<RelatedAsset></RelatedAsset>
|
||||
<AssetTraitName></AssetTraitName>
|
||||
<AssetTraitValue></AssetTraitValue>
|
||||
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
|
||||
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
||||
<OriginalItemSpec>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\demos\movers\images\section\success.jpg))</OriginalItemSpec>
|
||||
</StaticWebAsset>
|
||||
<StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\demos\movers\images\slider\1.png))">
|
||||
<SourceType>Package</SourceType>
|
||||
<SourceId>KeymailSpecials2</SourceId>
|
||||
|
@ -2592,6 +2672,38 @@
|
|||
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
||||
<OriginalItemSpec>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\demos\movers\images\slider\1.png))</OriginalItemSpec>
|
||||
</StaticWebAsset>
|
||||
<StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\demos\movers\images\startae-team-7tXA8xwe4W4-unsplash.jpg))">
|
||||
<SourceType>Package</SourceType>
|
||||
<SourceId>KeymailSpecials2</SourceId>
|
||||
<ContentRoot>$(MSBuildThisFileDirectory)..\staticwebassets\</ContentRoot>
|
||||
<BasePath>_content/KeymailSpecials2</BasePath>
|
||||
<RelativePath>demos/movers/images/startae-team-7tXA8xwe4W4-unsplash.jpg</RelativePath>
|
||||
<AssetKind>All</AssetKind>
|
||||
<AssetMode>All</AssetMode>
|
||||
<AssetRole>Primary</AssetRole>
|
||||
<RelatedAsset></RelatedAsset>
|
||||
<AssetTraitName></AssetTraitName>
|
||||
<AssetTraitValue></AssetTraitValue>
|
||||
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
|
||||
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
||||
<OriginalItemSpec>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\demos\movers\images\startae-team-7tXA8xwe4W4-unsplash.jpg))</OriginalItemSpec>
|
||||
</StaticWebAsset>
|
||||
<StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\demos\movers\images\stats.svg))">
|
||||
<SourceType>Package</SourceType>
|
||||
<SourceId>KeymailSpecials2</SourceId>
|
||||
<ContentRoot>$(MSBuildThisFileDirectory)..\staticwebassets\</ContentRoot>
|
||||
<BasePath>_content/KeymailSpecials2</BasePath>
|
||||
<RelativePath>demos/movers/images/stats.svg</RelativePath>
|
||||
<AssetKind>All</AssetKind>
|
||||
<AssetMode>All</AssetMode>
|
||||
<AssetRole>Primary</AssetRole>
|
||||
<RelatedAsset></RelatedAsset>
|
||||
<AssetTraitName></AssetTraitName>
|
||||
<AssetTraitValue></AssetTraitValue>
|
||||
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
|
||||
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
||||
<OriginalItemSpec>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\demos\movers\images\stats.svg))</OriginalItemSpec>
|
||||
</StaticWebAsset>
|
||||
<StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\demos\movers\images\team\1.jpg))">
|
||||
<SourceType>Package</SourceType>
|
||||
<SourceId>KeymailSpecials2</SourceId>
|
||||
|
@ -2752,6 +2864,22 @@
|
|||
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
||||
<OriginalItemSpec>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\demos\movers\images\team\section.jpg))</OriginalItemSpec>
|
||||
</StaticWebAsset>
|
||||
<StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\demos\movers\images\user_nums.svg))">
|
||||
<SourceType>Package</SourceType>
|
||||
<SourceId>KeymailSpecials2</SourceId>
|
||||
<ContentRoot>$(MSBuildThisFileDirectory)..\staticwebassets\</ContentRoot>
|
||||
<BasePath>_content/KeymailSpecials2</BasePath>
|
||||
<RelativePath>demos/movers/images/user_nums.svg</RelativePath>
|
||||
<AssetKind>All</AssetKind>
|
||||
<AssetMode>All</AssetMode>
|
||||
<AssetRole>Primary</AssetRole>
|
||||
<RelatedAsset></RelatedAsset>
|
||||
<AssetTraitName></AssetTraitName>
|
||||
<AssetTraitValue></AssetTraitValue>
|
||||
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
|
||||
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
||||
<OriginalItemSpec>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\demos\movers\images\user_nums.svg))</OriginalItemSpec>
|
||||
</StaticWebAsset>
|
||||
<StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\demos\movers\movers.css))">
|
||||
<SourceType>Package</SourceType>
|
||||
<SourceId>KeymailSpecials2</SourceId>
|
||||
|
@ -23280,6 +23408,22 @@
|
|||
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
||||
<OriginalItemSpec>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\images\intro\templates-mega-menu.jpg))</OriginalItemSpec>
|
||||
</StaticWebAsset>
|
||||
<StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\images\km_logo.png))">
|
||||
<SourceType>Package</SourceType>
|
||||
<SourceId>KeymailSpecials2</SourceId>
|
||||
<ContentRoot>$(MSBuildThisFileDirectory)..\staticwebassets\</ContentRoot>
|
||||
<BasePath>_content/KeymailSpecials2</BasePath>
|
||||
<RelativePath>images/km_logo.png</RelativePath>
|
||||
<AssetKind>All</AssetKind>
|
||||
<AssetMode>All</AssetMode>
|
||||
<AssetRole>Primary</AssetRole>
|
||||
<RelatedAsset></RelatedAsset>
|
||||
<AssetTraitName></AssetTraitName>
|
||||
<AssetTraitValue></AssetTraitValue>
|
||||
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
|
||||
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
||||
<OriginalItemSpec>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\images\km_logo.png))</OriginalItemSpec>
|
||||
</StaticWebAsset>
|
||||
<StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\images\landing\bootstrap.png))">
|
||||
<SourceType>Package</SourceType>
|
||||
<SourceId>KeymailSpecials2</SourceId>
|
||||
|
@ -24048,22 +24192,6 @@
|
|||
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
||||
<OriginalItemSpec>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\images\logo-v7.png))</OriginalItemSpec>
|
||||
</StaticWebAsset>
|
||||
<StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\images\logo.png))">
|
||||
<SourceType>Package</SourceType>
|
||||
<SourceId>KeymailSpecials2</SourceId>
|
||||
<ContentRoot>$(MSBuildThisFileDirectory)..\staticwebassets\</ContentRoot>
|
||||
<BasePath>_content/KeymailSpecials2</BasePath>
|
||||
<RelativePath>images/logo.png</RelativePath>
|
||||
<AssetKind>All</AssetKind>
|
||||
<AssetMode>All</AssetMode>
|
||||
<AssetRole>Primary</AssetRole>
|
||||
<RelatedAsset></RelatedAsset>
|
||||
<AssetTraitName></AssetTraitName>
|
||||
<AssetTraitValue></AssetTraitValue>
|
||||
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
|
||||
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
||||
<OriginalItemSpec>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\images\logo.png))</OriginalItemSpec>
|
||||
</StaticWebAsset>
|
||||
<StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\images\logo@2x.png))">
|
||||
<SourceType>Package</SourceType>
|
||||
<SourceId>KeymailSpecials2</SourceId>
|
||||
|
@ -24080,6 +24208,70 @@
|
|||
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
||||
<OriginalItemSpec>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\images\logo@2x.png))</OriginalItemSpec>
|
||||
</StaticWebAsset>
|
||||
<StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\images\logos\kms24.png))">
|
||||
<SourceType>Package</SourceType>
|
||||
<SourceId>KeymailSpecials2</SourceId>
|
||||
<ContentRoot>$(MSBuildThisFileDirectory)..\staticwebassets\</ContentRoot>
|
||||
<BasePath>_content/KeymailSpecials2</BasePath>
|
||||
<RelativePath>images/logos/kms24.png</RelativePath>
|
||||
<AssetKind>All</AssetKind>
|
||||
<AssetMode>All</AssetMode>
|
||||
<AssetRole>Primary</AssetRole>
|
||||
<RelatedAsset></RelatedAsset>
|
||||
<AssetTraitName></AssetTraitName>
|
||||
<AssetTraitValue></AssetTraitValue>
|
||||
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
|
||||
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
||||
<OriginalItemSpec>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\images\logos\kms24.png))</OriginalItemSpec>
|
||||
</StaticWebAsset>
|
||||
<StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\images\logos\kms24w.png))">
|
||||
<SourceType>Package</SourceType>
|
||||
<SourceId>KeymailSpecials2</SourceId>
|
||||
<ContentRoot>$(MSBuildThisFileDirectory)..\staticwebassets\</ContentRoot>
|
||||
<BasePath>_content/KeymailSpecials2</BasePath>
|
||||
<RelativePath>images/logos/kms24w.png</RelativePath>
|
||||
<AssetKind>All</AssetKind>
|
||||
<AssetMode>All</AssetMode>
|
||||
<AssetRole>Primary</AssetRole>
|
||||
<RelatedAsset></RelatedAsset>
|
||||
<AssetTraitName></AssetTraitName>
|
||||
<AssetTraitValue></AssetTraitValue>
|
||||
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
|
||||
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
||||
<OriginalItemSpec>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\images\logos\kms24w.png))</OriginalItemSpec>
|
||||
</StaticWebAsset>
|
||||
<StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\images\logos\kms34a.jpg))">
|
||||
<SourceType>Package</SourceType>
|
||||
<SourceId>KeymailSpecials2</SourceId>
|
||||
<ContentRoot>$(MSBuildThisFileDirectory)..\staticwebassets\</ContentRoot>
|
||||
<BasePath>_content/KeymailSpecials2</BasePath>
|
||||
<RelativePath>images/logos/kms34a.jpg</RelativePath>
|
||||
<AssetKind>All</AssetKind>
|
||||
<AssetMode>All</AssetMode>
|
||||
<AssetRole>Primary</AssetRole>
|
||||
<RelatedAsset></RelatedAsset>
|
||||
<AssetTraitName></AssetTraitName>
|
||||
<AssetTraitValue></AssetTraitValue>
|
||||
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
|
||||
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
||||
<OriginalItemSpec>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\images\logos\kms34a.jpg))</OriginalItemSpec>
|
||||
</StaticWebAsset>
|
||||
<StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\images\logos\kms34a.png))">
|
||||
<SourceType>Package</SourceType>
|
||||
<SourceId>KeymailSpecials2</SourceId>
|
||||
<ContentRoot>$(MSBuildThisFileDirectory)..\staticwebassets\</ContentRoot>
|
||||
<BasePath>_content/KeymailSpecials2</BasePath>
|
||||
<RelativePath>images/logos/kms34a.png</RelativePath>
|
||||
<AssetKind>All</AssetKind>
|
||||
<AssetMode>All</AssetMode>
|
||||
<AssetRole>Primary</AssetRole>
|
||||
<RelatedAsset></RelatedAsset>
|
||||
<AssetTraitName></AssetTraitName>
|
||||
<AssetTraitValue></AssetTraitValue>
|
||||
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
|
||||
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
||||
<OriginalItemSpec>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\images\logos\kms34a.png))</OriginalItemSpec>
|
||||
</StaticWebAsset>
|
||||
<StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\images\mac.png))">
|
||||
<SourceType>Package</SourceType>
|
||||
<SourceId>KeymailSpecials2</SourceId>
|
||||
|
@ -37728,22 +37920,6 @@
|
|||
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
||||
<OriginalItemSpec>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\js\plugins.youtube.js))</OriginalItemSpec>
|
||||
</StaticWebAsset>
|
||||
<StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\KeymailSpecials2.bundle.scp.css))">
|
||||
<SourceType>Package</SourceType>
|
||||
<SourceId>KeymailSpecials2</SourceId>
|
||||
<ContentRoot>$(MSBuildThisFileDirectory)..\staticwebassets\</ContentRoot>
|
||||
<BasePath>_content/KeymailSpecials2</BasePath>
|
||||
<RelativePath>KeymailSpecials2.bundle.scp.css</RelativePath>
|
||||
<AssetKind>All</AssetKind>
|
||||
<AssetMode>Reference</AssetMode>
|
||||
<AssetRole>Primary</AssetRole>
|
||||
<RelatedAsset></RelatedAsset>
|
||||
<AssetTraitName>ScopedCss</AssetTraitName>
|
||||
<AssetTraitValue>ProjectBundle</AssetTraitValue>
|
||||
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
|
||||
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
||||
<OriginalItemSpec>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\KeymailSpecials2.bundle.scp.css))</OriginalItemSpec>
|
||||
</StaticWebAsset>
|
||||
<StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\style.css))">
|
||||
<SourceType>Package</SourceType>
|
||||
<SourceId>KeymailSpecials2</SourceId>
|
||||
|
|
|
@ -1,23 +1,23 @@
|
|||
{
|
||||
"format": 1,
|
||||
"restore": {
|
||||
"C:\\Users\\joshdeck.KEYMTV\\Documents\\Playground\\KeymailSpecials2\\KeymailSpecials2.csproj": {}
|
||||
"C:\\Repos\\KeymailSpecials2\\KeymailSpecials2.csproj": {}
|
||||
},
|
||||
"projects": {
|
||||
"C:\\Users\\joshdeck.KEYMTV\\Documents\\Playground\\KeymailSpecials2\\KeymailSpecials2.csproj": {
|
||||
"C:\\Repos\\KeymailSpecials2\\KeymailSpecials2.csproj": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "C:\\Users\\joshdeck.KEYMTV\\Documents\\Playground\\KeymailSpecials2\\KeymailSpecials2.csproj",
|
||||
"projectUniqueName": "C:\\Repos\\KeymailSpecials2\\KeymailSpecials2.csproj",
|
||||
"projectName": "KeymailSpecials2",
|
||||
"projectPath": "C:\\Users\\joshdeck.KEYMTV\\Documents\\Playground\\KeymailSpecials2\\KeymailSpecials2.csproj",
|
||||
"packagesPath": "C:\\Users\\joshdeck.KEYMTV\\.nuget\\packages\\",
|
||||
"outputPath": "C:\\Users\\joshdeck.KEYMTV\\Documents\\Playground\\KeymailSpecials2\\obj\\",
|
||||
"projectPath": "C:\\Repos\\KeymailSpecials2\\KeymailSpecials2.csproj",
|
||||
"packagesPath": "C:\\Users\\RDeck.KEYMTV\\.nuget\\packages\\",
|
||||
"outputPath": "C:\\Repos\\KeymailSpecials2\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||
],
|
||||
"configFilePaths": [
|
||||
"C:\\Users\\joshdeck.KEYMTV\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||
"C:\\Users\\RDeck.KEYMTV\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
||||
],
|
||||
|
@ -27,7 +27,8 @@
|
|||
"sources": {
|
||||
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||
"C:\\Program Files\\dotnet\\library-packs": {},
|
||||
"https://api.nuget.org/v3/index.json": {}
|
||||
"https://api.nuget.org/v3/index.json": {},
|
||||
"https://nuget.telerik.com/v3/index.json": {}
|
||||
},
|
||||
"frameworks": {
|
||||
"net8.0": {
|
||||
|
@ -39,6 +40,11 @@
|
|||
"warnAsError": [
|
||||
"NU1605"
|
||||
]
|
||||
},
|
||||
"restoreAuditProperties": {
|
||||
"enableAudit": "true",
|
||||
"auditLevel": "low",
|
||||
"auditMode": "direct"
|
||||
}
|
||||
},
|
||||
"frameworks": {
|
||||
|
@ -63,7 +69,7 @@
|
|||
"privateAssets": "all"
|
||||
}
|
||||
},
|
||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.101/PortableRuntimeIdentifierGraph.json"
|
||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.400/PortableRuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -5,12 +5,12 @@
|
|||
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
|
||||
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
|
||||
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
|
||||
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\joshdeck.KEYMTV\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages</NuGetPackageFolders>
|
||||
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\RDeck.KEYMTV\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages</NuGetPackageFolders>
|
||||
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.8.0</NuGetToolVersion>
|
||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.11.0</NuGetToolVersion>
|
||||
</PropertyGroup>
|
||||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<SourceRoot Include="C:\Users\joshdeck.KEYMTV\.nuget\packages\" />
|
||||
<SourceRoot Include="C:\Users\RDeck.KEYMTV\.nuget\packages\" />
|
||||
<SourceRoot Include="C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages\" />
|
||||
</ItemGroup>
|
||||
</Project>
|
|
@ -14,7 +14,7 @@ using System.Reflection;
|
|||
[assembly: System.Reflection.AssemblyCompanyAttribute("KeymailSpecials2")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+6161668cd5e55358c88b857aac08439229ac7cb7")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("KeymailSpecials2")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("KeymailSpecials2")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
|
|
|
@ -1 +1 @@
|
|||
a4b1ba513a750d2ada915061d50cbda53a50d32c212d28e14187eee0c851695b
|
||||
892af85462e02284f6fe2ddaec052e4cb30fb4ed2bd3b43bf67236f278343bcb
|
||||
|
|
|
@ -9,55 +9,51 @@ build_property.EnforceExtendedAnalyzerRules =
|
|||
build_property._SupportedPlatformList = Linux,macOS,Windows
|
||||
build_property.RootNamespace = KeymailSpecials2
|
||||
build_property.RootNamespace = KeymailSpecials2
|
||||
build_property.ProjectDir = C:\Users\joshdeck.KEYMTV\Documents\Playground\KeymailSpecials2\
|
||||
build_property.ProjectDir = C:\Repos\KeymailSpecials2\
|
||||
build_property.EnableComHosting =
|
||||
build_property.EnableGeneratedComInterfaceComImportInterop =
|
||||
build_property.RazorLangVersion = 8.0
|
||||
build_property.SupportLocalizedComponentNames =
|
||||
build_property.GenerateRazorMetadataSourceChecksumAttributes =
|
||||
build_property.MSBuildProjectDirectory = C:\Users\joshdeck.KEYMTV\Documents\Playground\KeymailSpecials2
|
||||
build_property.MSBuildProjectDirectory = C:\Repos\KeymailSpecials2
|
||||
build_property._RazorSourceGeneratorDebug =
|
||||
|
||||
[C:/Users/joshdeck.KEYMTV/Documents/Playground/KeymailSpecials2/Components/App.razor]
|
||||
[C:/Repos/KeymailSpecials2/Components/App.razor]
|
||||
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xBcHAucmF6b3I=
|
||||
build_metadata.AdditionalFiles.CssScope =
|
||||
|
||||
[C:/Users/joshdeck.KEYMTV/Documents/Playground/KeymailSpecials2/Components/Layout/NoNav.razor]
|
||||
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xMYXlvdXRcTm9OYXYucmF6b3I=
|
||||
[C:/Repos/KeymailSpecials2/Components/Components/CanvasHomePage.razor]
|
||||
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xDb21wb25lbnRzXENhbnZhc0hvbWVQYWdlLnJhem9y
|
||||
build_metadata.AdditionalFiles.CssScope =
|
||||
|
||||
[C:/Users/joshdeck.KEYMTV/Documents/Playground/KeymailSpecials2/Components/Pages/Counter.razor]
|
||||
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xDb3VudGVyLnJhem9y
|
||||
[C:/Repos/KeymailSpecials2/Components/Components/Header1.razor]
|
||||
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xDb21wb25lbnRzXEhlYWRlcjEucmF6b3I=
|
||||
build_metadata.AdditionalFiles.CssScope =
|
||||
|
||||
[C:/Users/joshdeck.KEYMTV/Documents/Playground/KeymailSpecials2/Components/Pages/Error.razor]
|
||||
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xFcnJvci5yYXpvcg==
|
||||
[C:/Repos/KeymailSpecials2/Components/Layout/DefaultLayout.razor]
|
||||
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xMYXlvdXRcRGVmYXVsdExheW91dC5yYXpvcg==
|
||||
build_metadata.AdditionalFiles.CssScope =
|
||||
|
||||
[C:/Users/joshdeck.KEYMTV/Documents/Playground/KeymailSpecials2/Components/Pages/Home.razor]
|
||||
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xIb21lLnJhem9y
|
||||
[C:/Repos/KeymailSpecials2/Components/Pages/About.razor]
|
||||
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xBYm91dC5yYXpvcg==
|
||||
build_metadata.AdditionalFiles.CssScope =
|
||||
|
||||
[C:/Users/joshdeck.KEYMTV/Documents/Playground/KeymailSpecials2/Components/Pages/Movers.razor]
|
||||
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xNb3ZlcnMucmF6b3I=
|
||||
[C:/Repos/KeymailSpecials2/Components/Pages/Contact.razor]
|
||||
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xDb250YWN0LnJhem9y
|
||||
build_metadata.AdditionalFiles.CssScope =
|
||||
|
||||
[C:/Users/joshdeck.KEYMTV/Documents/Playground/KeymailSpecials2/Components/Pages/Weather.razor]
|
||||
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xXZWF0aGVyLnJhem9y
|
||||
[C:/Repos/KeymailSpecials2/Components/Pages/Index.razor]
|
||||
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xJbmRleC5yYXpvcg==
|
||||
build_metadata.AdditionalFiles.CssScope =
|
||||
|
||||
[C:/Users/joshdeck.KEYMTV/Documents/Playground/KeymailSpecials2/Components/Routes.razor]
|
||||
[C:/Repos/KeymailSpecials2/Components/Pages/Privacy.razor]
|
||||
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xQcml2YWN5LnJhem9y
|
||||
build_metadata.AdditionalFiles.CssScope =
|
||||
|
||||
[C:/Repos/KeymailSpecials2/Components/Routes.razor]
|
||||
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xSb3V0ZXMucmF6b3I=
|
||||
build_metadata.AdditionalFiles.CssScope =
|
||||
|
||||
[C:/Users/joshdeck.KEYMTV/Documents/Playground/KeymailSpecials2/Components/_Imports.razor]
|
||||
[C:/Repos/KeymailSpecials2/Components/_Imports.razor]
|
||||
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xfSW1wb3J0cy5yYXpvcg==
|
||||
build_metadata.AdditionalFiles.CssScope =
|
||||
|
||||
[C:/Users/joshdeck.KEYMTV/Documents/Playground/KeymailSpecials2/Components/Layout/MainLayout.razor]
|
||||
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xMYXlvdXRcTWFpbkxheW91dC5yYXpvcg==
|
||||
build_metadata.AdditionalFiles.CssScope = b-fazdk3iuyr
|
||||
|
||||
[C:/Users/joshdeck.KEYMTV/Documents/Playground/KeymailSpecials2/Components/Layout/NavMenu.razor]
|
||||
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xMYXlvdXRcTmF2TWVudS5yYXpvcg==
|
||||
build_metadata.AdditionalFiles.CssScope = b-q5015zael5
|
||||
|
|
Binary file not shown.
|
@ -8,23 +8,23 @@
|
|||
"net8.0": []
|
||||
},
|
||||
"packageFolders": {
|
||||
"C:\\Users\\joshdeck.KEYMTV\\.nuget\\packages\\": {},
|
||||
"C:\\Users\\RDeck.KEYMTV\\.nuget\\packages\\": {},
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
|
||||
},
|
||||
"project": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "C:\\Users\\joshdeck.KEYMTV\\Documents\\Playground\\KeymailSpecials2\\KeymailSpecials2.csproj",
|
||||
"projectUniqueName": "C:\\Repos\\KeymailSpecials2\\KeymailSpecials2.csproj",
|
||||
"projectName": "KeymailSpecials2",
|
||||
"projectPath": "C:\\Users\\joshdeck.KEYMTV\\Documents\\Playground\\KeymailSpecials2\\KeymailSpecials2.csproj",
|
||||
"packagesPath": "C:\\Users\\joshdeck.KEYMTV\\.nuget\\packages\\",
|
||||
"outputPath": "C:\\Users\\joshdeck.KEYMTV\\Documents\\Playground\\KeymailSpecials2\\obj\\",
|
||||
"projectPath": "C:\\Repos\\KeymailSpecials2\\KeymailSpecials2.csproj",
|
||||
"packagesPath": "C:\\Users\\RDeck.KEYMTV\\.nuget\\packages\\",
|
||||
"outputPath": "C:\\Repos\\KeymailSpecials2\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||
],
|
||||
"configFilePaths": [
|
||||
"C:\\Users\\joshdeck.KEYMTV\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||
"C:\\Users\\RDeck.KEYMTV\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
||||
],
|
||||
|
@ -34,7 +34,8 @@
|
|||
"sources": {
|
||||
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||
"C:\\Program Files\\dotnet\\library-packs": {},
|
||||
"https://api.nuget.org/v3/index.json": {}
|
||||
"https://api.nuget.org/v3/index.json": {},
|
||||
"https://nuget.telerik.com/v3/index.json": {}
|
||||
},
|
||||
"frameworks": {
|
||||
"net8.0": {
|
||||
|
@ -46,6 +47,11 @@
|
|||
"warnAsError": [
|
||||
"NU1605"
|
||||
]
|
||||
},
|
||||
"restoreAuditProperties": {
|
||||
"enableAudit": "true",
|
||||
"auditLevel": "low",
|
||||
"auditMode": "direct"
|
||||
}
|
||||
},
|
||||
"frameworks": {
|
||||
|
@ -70,7 +76,7 @@
|
|||
"privateAssets": "all"
|
||||
}
|
||||
},
|
||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.101/PortableRuntimeIdentifierGraph.json"
|
||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.400/PortableRuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
{
|
||||
"version": 2,
|
||||
"dgSpecHash": "/R+oHBLNm/Igl7KyeR6wTs8+nFFqjgP19xheg9A2WzJTSf5unLksnAKdzPw52Ztfywr35w0tfIFhsFwjQB1ncw==",
|
||||
"dgSpecHash": "HpWzlQ5WX/k=",
|
||||
"success": true,
|
||||
"projectFilePath": "C:\\Users\\joshdeck.KEYMTV\\Documents\\Playground\\KeymailSpecials2\\KeymailSpecials2.csproj",
|
||||
"projectFilePath": "C:\\Repos\\KeymailSpecials2\\KeymailSpecials2.csproj",
|
||||
"expectedPackageFiles": [],
|
||||
"logs": []
|
||||
}
|
Binary file not shown.
After Width: | Height: | Size: 149 KiB |
Binary file not shown.
After Width: | Height: | Size: 146 KiB |
Binary file not shown.
After Width: | Height: | Size: 67 KiB |
Binary file not shown.
After Width: | Height: | Size: 38 KiB |
Loading…
Reference in New Issue