Fin de la convertion vers Razor
This commit is contained in:
parent
b814e62080
commit
a05768f405
15
MyWebsite/Pages/Contact.cshtml
Normal file
15
MyWebsite/Pages/Contact.cshtml
Normal file
@ -0,0 +1,15 @@
|
||||
@page
|
||||
@model MyApp.Namespace.ContactModel
|
||||
@{
|
||||
}
|
||||
|
||||
<div class="row text-center">
|
||||
<h1>Me contacter</h1>
|
||||
<hr class="dessous_titre"/>
|
||||
</div>
|
||||
<div class="row text-center">
|
||||
<p>Vous pouvez me contacter par téléphone et par courrier électronique<br></p>
|
||||
<i class="fa fa-phone contact" aria-hidden="true"><a href="tel:+4502780433" class="tel" style="font-family: JetBrains_Mono;">(450)278-0433</a></i>
|
||||
<i class="fa fa-envelope contact" aria-hidden="true"> <a href="mailto:merlinge@tutanota.com" class="mail" style="font-family: JetBrains_Mono;">merlinge@tutanota.com</a></i>
|
||||
<p style="font-size: 0.6em;"><br><br><br>**Prévoir de 3 à 5 jours ouvrables pour recevoir une réponse**</p>
|
||||
</div>
|
||||
12
MyWebsite/Pages/Contact.cshtml.cs
Normal file
12
MyWebsite/Pages/Contact.cshtml.cs
Normal file
@ -0,0 +1,12 @@
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using Microsoft.AspNetCore.Mvc.RazorPages;
|
||||
|
||||
namespace MyApp.Namespace
|
||||
{
|
||||
public class ContactModel : PageModel
|
||||
{
|
||||
public void OnGet()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
9
MyWebsite/Pages/Objectif.cshtml
Normal file
9
MyWebsite/Pages/Objectif.cshtml
Normal file
@ -0,0 +1,9 @@
|
||||
@page
|
||||
@model MyApp.Namespace.ObjectifModel
|
||||
@{
|
||||
}
|
||||
|
||||
<div class="row text-center">
|
||||
<h1>Mes objectifs</h1>
|
||||
<hr class="dessous_titre"/>
|
||||
</div>
|
||||
12
MyWebsite/Pages/Objectif.cshtml.cs
Normal file
12
MyWebsite/Pages/Objectif.cshtml.cs
Normal file
@ -0,0 +1,12 @@
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using Microsoft.AspNetCore.Mvc.RazorPages;
|
||||
|
||||
namespace MyApp.Namespace
|
||||
{
|
||||
public class ObjectifModel : PageModel
|
||||
{
|
||||
public void OnGet()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
9
MyWebsite/Pages/Portfolio.cshtml
Normal file
9
MyWebsite/Pages/Portfolio.cshtml
Normal file
@ -0,0 +1,9 @@
|
||||
@page
|
||||
@model MyApp.Namespace.PortfolioModel
|
||||
@{
|
||||
}
|
||||
|
||||
<div class="row text-center">
|
||||
<h1>Mes projets</h1>
|
||||
<hr class="dessous_titre"/>
|
||||
</div>
|
||||
12
MyWebsite/Pages/Portfolio.cshtml.cs
Normal file
12
MyWebsite/Pages/Portfolio.cshtml.cs
Normal file
@ -0,0 +1,12 @@
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using Microsoft.AspNetCore.Mvc.RazorPages;
|
||||
|
||||
namespace MyApp.Namespace
|
||||
{
|
||||
public class PortfolioModel : PageModel
|
||||
{
|
||||
public void OnGet()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -14,15 +14,15 @@
|
||||
<header>
|
||||
<div class="row GradientText header">
|
||||
<div class="col">
|
||||
<a href="../index.html"><img src="../Content/Logo.png" class="logo"/></a>
|
||||
<a asp-area="" asp-page="/Index"><img src="~/Content/Logo.png" class="logo"/></a>
|
||||
</div>
|
||||
<div class="col menu">
|
||||
<ul>
|
||||
<li><a href="../index.html" class="GradientText"><button class="btn-hover color-1">Accueil</button></a></li>
|
||||
<li><a href="../Views/Technologies.html" class="GradientText"><button class="btn-hover color-1">Technologies</button></a></li>
|
||||
<li><a href="../Views/Portfolio.html" class="GradientText"><button class="btn-hover color-1">Projets</button></a></li>
|
||||
<li><a href="../Views/Objectif.html" class="GradientText"><button class="btn-hover color-1">Objectifs</button></a></li>
|
||||
<li><a href="../Views/Contact.html" class="GradientText"><button class="btn-hover color-1">Contact</button></a></li>
|
||||
<li><a asp-area="" asp-page="/Index" class="GradientText"><button class="btn-hover color-1">Accueil</button></a></li>
|
||||
<li><a asp-area="" asp-page="/Technologies" class="GradientText"><button class="btn-hover color-1">Technologies</button></a></li>
|
||||
<li><a asp-area="" asp-page="/Portfolio" class="GradientText"><button class="btn-hover color-1">Projets</button></a></li>
|
||||
<li><a asp-area="" asp-page="/Objectif" class="GradientText"><button class="btn-hover color-1">Objectifs</button></a></li>
|
||||
<li><a asp-area="" asp-page="/Contact" class="GradientText"><button class="btn-hover color-1">Contact</button></a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
9
MyWebsite/Pages/Technologies.cshtml
Normal file
9
MyWebsite/Pages/Technologies.cshtml
Normal file
@ -0,0 +1,9 @@
|
||||
@page
|
||||
@model MyApp.Namespace.TechnologiesModel
|
||||
@{
|
||||
}
|
||||
|
||||
<div class="row text-center">
|
||||
<h1>Technologies</h1>
|
||||
<hr class="dessous_titre"/>
|
||||
</div>
|
||||
12
MyWebsite/Pages/Technologies.cshtml.cs
Normal file
12
MyWebsite/Pages/Technologies.cshtml.cs
Normal file
@ -0,0 +1,12 @@
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using Microsoft.AspNetCore.Mvc.RazorPages;
|
||||
|
||||
namespace MyApp.Namespace
|
||||
{
|
||||
public class TechnologiesModel : PageModel
|
||||
{
|
||||
public void OnGet()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
Binary file not shown.
Binary file not shown.
File diff suppressed because one or more lines are too long
@ -16,6 +16,10 @@ build_property.GenerateRazorMetadataSourceChecksumAttributes =
|
||||
build_property.MSBuildProjectDirectory = /home/merlin/MyWebsite/MyWebsite
|
||||
build_property._RazorSourceGeneratorDebug =
|
||||
|
||||
[/home/merlin/MyWebsite/MyWebsite/Pages/Contact.cshtml]
|
||||
build_metadata.AdditionalFiles.TargetPath = UGFnZXMvQ29udGFjdC5jc2h0bWw=
|
||||
build_metadata.AdditionalFiles.CssScope =
|
||||
|
||||
[/home/merlin/MyWebsite/MyWebsite/Pages/Error.cshtml]
|
||||
build_metadata.AdditionalFiles.TargetPath = UGFnZXMvRXJyb3IuY3NodG1s
|
||||
build_metadata.AdditionalFiles.CssScope =
|
||||
@ -24,6 +28,14 @@ build_metadata.AdditionalFiles.CssScope =
|
||||
build_metadata.AdditionalFiles.TargetPath = UGFnZXMvSW5kZXguY3NodG1s
|
||||
build_metadata.AdditionalFiles.CssScope =
|
||||
|
||||
[/home/merlin/MyWebsite/MyWebsite/Pages/Objectif.cshtml]
|
||||
build_metadata.AdditionalFiles.TargetPath = UGFnZXMvT2JqZWN0aWYuY3NodG1s
|
||||
build_metadata.AdditionalFiles.CssScope =
|
||||
|
||||
[/home/merlin/MyWebsite/MyWebsite/Pages/Portfolio.cshtml]
|
||||
build_metadata.AdditionalFiles.TargetPath = UGFnZXMvUG9ydGZvbGlvLmNzaHRtbA==
|
||||
build_metadata.AdditionalFiles.CssScope =
|
||||
|
||||
[/home/merlin/MyWebsite/MyWebsite/Pages/Privacy.cshtml]
|
||||
build_metadata.AdditionalFiles.TargetPath = UGFnZXMvUHJpdmFjeS5jc2h0bWw=
|
||||
build_metadata.AdditionalFiles.CssScope =
|
||||
@ -32,6 +44,10 @@ build_metadata.AdditionalFiles.CssScope =
|
||||
build_metadata.AdditionalFiles.TargetPath = UGFnZXMvU2hhcmVkL19WYWxpZGF0aW9uU2NyaXB0c1BhcnRpYWwuY3NodG1s
|
||||
build_metadata.AdditionalFiles.CssScope =
|
||||
|
||||
[/home/merlin/MyWebsite/MyWebsite/Pages/Technologies.cshtml]
|
||||
build_metadata.AdditionalFiles.TargetPath = UGFnZXMvVGVjaG5vbG9naWVzLmNzaHRtbA==
|
||||
build_metadata.AdditionalFiles.CssScope =
|
||||
|
||||
[/home/merlin/MyWebsite/MyWebsite/Pages/_ViewImports.cshtml]
|
||||
build_metadata.AdditionalFiles.TargetPath = UGFnZXMvX1ZpZXdJbXBvcnRzLmNzaHRtbA==
|
||||
build_metadata.AdditionalFiles.CssScope =
|
||||
|
||||
@ -1 +1 @@
|
||||
435a65377a208681d87a29c8d30a5031100b8e89
|
||||
40a425a10a7fb90e7cc34287ad05337a1b458ea7
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1,6 +1,6 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"Hash": "n6eXy8xubnSIttKXi30NJmMhQAgvpo/MogwrvLT6ji0=",
|
||||
"Hash": "cNhgoNBFmR05a8kaM6qb/MhlFKBVk/+gqjxk74PEgIg=",
|
||||
"Source": "MyWebsite",
|
||||
"BasePath": "_content/MyWebsite",
|
||||
"Mode": "Default",
|
||||
@ -50,6 +50,23 @@
|
||||
"CopyToPublishDirectory": "PreserveNewest",
|
||||
"OriginalItemSpec": "/home/merlin/MyWebsite/MyWebsite/obj/Debug/net7.0/scopedcss/projectbundle/MyWebsite.bundle.scp.css"
|
||||
},
|
||||
{
|
||||
"Identity": "/home/merlin/MyWebsite/MyWebsite/wwwroot/Content/Logo.png",
|
||||
"SourceId": "MyWebsite",
|
||||
"SourceType": "Discovered",
|
||||
"ContentRoot": "/home/merlin/MyWebsite/MyWebsite/wwwroot/",
|
||||
"BasePath": "_content/MyWebsite",
|
||||
"RelativePath": "Content/Logo.png",
|
||||
"AssetKind": "All",
|
||||
"AssetMode": "All",
|
||||
"AssetRole": "Primary",
|
||||
"RelatedAsset": "",
|
||||
"AssetTraitName": "",
|
||||
"AssetTraitValue": "",
|
||||
"CopyToOutputDirectory": "Never",
|
||||
"CopyToPublishDirectory": "PreserveNewest",
|
||||
"OriginalItemSpec": "wwwroot/Content/Logo.png"
|
||||
},
|
||||
{
|
||||
"Identity": "/home/merlin/MyWebsite/MyWebsite/wwwroot/css/site.css",
|
||||
"SourceId": "MyWebsite",
|
||||
|
||||
File diff suppressed because one or more lines are too long
@ -4,6 +4,10 @@
|
||||
"Id": "/home/merlin/MyWebsite/MyWebsite/obj/Debug/net7.0/scopedcss/projectbundle/MyWebsite.bundle.scp.css",
|
||||
"PackagePath": "staticwebassets/MyWebsite.bundle.scp.css"
|
||||
},
|
||||
{
|
||||
"Id": "/home/merlin/MyWebsite/MyWebsite/wwwroot/Content/Logo.png",
|
||||
"PackagePath": "staticwebassets/Content/Logo.png"
|
||||
},
|
||||
{
|
||||
"Id": "/home/merlin/MyWebsite/MyWebsite/wwwroot/Fonts/JetBrainsMono-Regular.woff2",
|
||||
"PackagePath": "staticwebassets/Fonts/JetBrainsMono-Regular.woff2"
|
||||
|
||||
@ -1,5 +1,21 @@
|
||||
<Project>
|
||||
<ItemGroup>
|
||||
<StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\Content\Logo.png))">
|
||||
<SourceType>Package</SourceType>
|
||||
<SourceId>MyWebsite</SourceId>
|
||||
<ContentRoot>$(MSBuildThisFileDirectory)..\staticwebassets\</ContentRoot>
|
||||
<BasePath>_content/MyWebsite</BasePath>
|
||||
<RelativePath>Content/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\Content\Logo.png))</OriginalItemSpec>
|
||||
</StaticWebAsset>
|
||||
<StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\css\site.css))">
|
||||
<SourceType>Package</SourceType>
|
||||
<SourceId>MyWebsite</SourceId>
|
||||
|
||||
BIN
MyWebsite/wwwroot/Content/Logo.png
Normal file
BIN
MyWebsite/wwwroot/Content/Logo.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 899 KiB |
Loading…
x
Reference in New Issue
Block a user