refactor: use PascalCase for asp-page routes
This commit is contained in:
parent
8202bb7440
commit
9e2fa951f1
@ -18,7 +18,7 @@
|
|||||||
<nav style="--bs-breadcrumb-divider: '>';" aria-label="breadcrumb">
|
<nav style="--bs-breadcrumb-divider: '>';" aria-label="breadcrumb">
|
||||||
<ol class="breadcrumb">
|
<ol class="breadcrumb">
|
||||||
<li class="breadcrumb-item">
|
<li class="breadcrumb-item">
|
||||||
<a asp-page="index">Blog</a>
|
<a asp-page="Index">Blog</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="breadcrumb-item active" aria-current="page">@post.Title</li>
|
<li class="breadcrumb-item active" aria-current="page">@post.Title</li>
|
||||||
</ol>
|
</ol>
|
||||||
|
@ -6,11 +6,11 @@
|
|||||||
<h1 class="display-4">Contact</h1>
|
<h1 class="display-4">Contact</h1>
|
||||||
<p class="lead">What would you like to talk about?</p>
|
<p class="lead">What would you like to talk about?</p>
|
||||||
<ul class="contact-reasons">
|
<ul class="contact-reasons">
|
||||||
<li><a asp-page="/contact/jobopportunity">💼 Job opportunity / collaboration</a></li>
|
<li><a asp-page="JobOpportunity">💼 Job opportunity / collaboration</a></li>
|
||||||
<li><a asp-page="/donate">☕ Donate money for coffee</a></li>
|
<li><a asp-page="/Donate">☕ Donate money for coffee</a></li>
|
||||||
<li><a asp-page="/contact/projectidea">💡 Project idea</a></li>
|
<li><a asp-page="ProjectIdea">💡 Project idea</a></li>
|
||||||
<li><a asp-page="/contact/technicalhelp">💬️ Technical help and code review</a></li>
|
<li><a asp-page="TechnicalHelp">💬️ Technical help and code review</a></li>
|
||||||
<li><a asp-page="/contact/opensource">🌍 Open source contribution</a></li>
|
<li><a asp-page="OpenSource">🌍 Open source contribution</a></li>
|
||||||
<li><a asp-page="/contact/privacy">🔒 Privacy policy concerns</a></li>
|
<li><a asp-page="Privacy">🔒 Privacy policy concerns</a></li>
|
||||||
<li><a asp-page="/contact/other">❓ Misc / general inquiry</a></li>
|
<li><a asp-page="Other">❓ Misc / general inquiry</a></li>
|
||||||
</ul>
|
</ul>
|
@ -6,7 +6,7 @@
|
|||||||
<nav style="--bs-breadcrumb-divider: '>';" aria-label="breadcrumb">
|
<nav style="--bs-breadcrumb-divider: '>';" aria-label="breadcrumb">
|
||||||
<ol class="breadcrumb">
|
<ol class="breadcrumb">
|
||||||
<li class="breadcrumb-item">
|
<li class="breadcrumb-item">
|
||||||
<a asp-page="/contact/index">Contact</a>
|
<a asp-page="Index">Contact</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="breadcrumb-item active" aria-current="page">Job Opportunity</li>
|
<li class="breadcrumb-item active" aria-current="page">Job Opportunity</li>
|
||||||
</ol>
|
</ol>
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
<nav style="--bs-breadcrumb-divider: '>';" aria-label="breadcrumb">
|
<nav style="--bs-breadcrumb-divider: '>';" aria-label="breadcrumb">
|
||||||
<ol class="breadcrumb">
|
<ol class="breadcrumb">
|
||||||
<li class="breadcrumb-item">
|
<li class="breadcrumb-item">
|
||||||
<a asp-page="/contact/index">Contact</a>
|
<a asp-page="Index">Contact</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="breadcrumb-item active" aria-current="page">Open Source Contribution</li>
|
<li class="breadcrumb-item active" aria-current="page">Open Source Contribution</li>
|
||||||
</ol>
|
</ol>
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
<nav style="--bs-breadcrumb-divider: '>';" aria-label="breadcrumb">
|
<nav style="--bs-breadcrumb-divider: '>';" aria-label="breadcrumb">
|
||||||
<ol class="breadcrumb">
|
<ol class="breadcrumb">
|
||||||
<li class="breadcrumb-item">
|
<li class="breadcrumb-item">
|
||||||
<a asp-page="/contact/index">Contact</a>
|
<a asp-page="Index">Contact</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="breadcrumb-item active" aria-current="page">Other</li>
|
<li class="breadcrumb-item active" aria-current="page">Other</li>
|
||||||
</ol>
|
</ol>
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
<nav style="--bs-breadcrumb-divider: '>';" aria-label="breadcrumb">
|
<nav style="--bs-breadcrumb-divider: '>';" aria-label="breadcrumb">
|
||||||
<ol class="breadcrumb">
|
<ol class="breadcrumb">
|
||||||
<li class="breadcrumb-item">
|
<li class="breadcrumb-item">
|
||||||
<a asp-page="/contact/index">Contact</a>
|
<a asp-page="Index">Contact</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="breadcrumb-item active" aria-current="page">Privacy Policy Concerns</li>
|
<li class="breadcrumb-item active" aria-current="page">Privacy Policy Concerns</li>
|
||||||
</ol>
|
</ol>
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
<nav style="--bs-breadcrumb-divider: '>';" aria-label="breadcrumb">
|
<nav style="--bs-breadcrumb-divider: '>';" aria-label="breadcrumb">
|
||||||
<ol class="breadcrumb">
|
<ol class="breadcrumb">
|
||||||
<li class="breadcrumb-item">
|
<li class="breadcrumb-item">
|
||||||
<a asp-page="/contact/index">Contact</a>
|
<a asp-page="Index">Contact</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="breadcrumb-item active" aria-current="page">Project Idea</li>
|
<li class="breadcrumb-item active" aria-current="page">Project Idea</li>
|
||||||
</ol>
|
</ol>
|
||||||
@ -31,7 +31,7 @@
|
|||||||
<strong>
|
<strong>
|
||||||
If this is not something you want, and you'd like to collaborate, please
|
If this is not something you want, and you'd like to collaborate, please
|
||||||
<span style="text-decoration: underline">do not</span> use this form, instead, please use
|
<span style="text-decoration: underline">do not</span> use this form, instead, please use
|
||||||
<a asp-page="/contact/jobopportunity">this one</a>.
|
<a asp-page="JobOpportunity">this one</a>.
|
||||||
</strong>
|
</strong>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
<nav style="--bs-breadcrumb-divider: '>';" aria-label="breadcrumb">
|
<nav style="--bs-breadcrumb-divider: '>';" aria-label="breadcrumb">
|
||||||
<ol class="breadcrumb">
|
<ol class="breadcrumb">
|
||||||
<li class="breadcrumb-item">
|
<li class="breadcrumb-item">
|
||||||
<a asp-page="/contact/index">Contact</a>
|
<a asp-page="Index">Contact</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="breadcrumb-item active" aria-current="page">Technical Help</li>
|
<li class="breadcrumb-item active" aria-current="page">Technical Help</li>
|
||||||
</ol>
|
</ol>
|
||||||
|
@ -11,9 +11,9 @@
|
|||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
I've also written a few <a asp-page="/tutorials/index">tutorials</a> on various topics, usually involvin information
|
I've also written a few <a asp-page="/Tutorials/Index">tutorials</a> on various topics, usually involvin information
|
||||||
not readily available elsewhere. I hope you find them useful. On occasion, I also write about other topics that I
|
not readily available elsewhere. I hope you find them useful. On occasion, I also write about other topics that I
|
||||||
find interesting, such as <a asp-page="/blog/index">my thoughts on the state of the world or the tech industry</a>.
|
find interesting, such as <a asp-page="/Blog/Index">my thoughts on the state of the world or the tech industry</a>.
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
@ -22,4 +22,4 @@
|
|||||||
<a href="https://play.google.com/store/apps/dev?id=9010459220239503006">Google Play</a>.
|
<a href="https://play.google.com/store/apps/dev?id=9010459220239503006">Google Play</a>.
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>If you'd like to get in touch, you can do so by <a asp-page="/contact/index">clicking here</a>.</p>
|
<p>If you'd like to get in touch, you can do so by <a asp-page="/Contact/Index">clicking here</a>.</p>
|
@ -8,7 +8,7 @@
|
|||||||
<p class="lead">Last Updated: 26 May 2023</p>
|
<p class="lead">Last Updated: 26 May 2023</p>
|
||||||
<div class="alert alert-primary">
|
<div class="alert alert-primary">
|
||||||
This Privacy Policy differs from the policy that applies to this website. For this website's privacy policy, please
|
This Privacy Policy differs from the policy that applies to this website. For this website's privacy policy, please
|
||||||
<a asp-page="/privacy/index">click here</a>.
|
<a asp-page="/Privacy/Index">click here</a>.
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
@ -62,5 +62,5 @@
|
|||||||
<h2>Contact Me</h2>
|
<h2>Contact Me</h2>
|
||||||
<p>
|
<p>
|
||||||
If you have any questions or concerns about this Privacy Policy or my privacy practices, please
|
If you have any questions or concerns about this Privacy Policy or my privacy practices, please
|
||||||
<a asp-page="/contact/privacy" asp-route-which="google-play">get in touch</a>.
|
<a asp-page="/Contact/Privacy" asp-route-which="google-play">get in touch</a>.
|
||||||
</p>
|
</p>
|
@ -8,7 +8,7 @@
|
|||||||
<p class="lead">Last Updated: 26 May 2023</p>
|
<p class="lead">Last Updated: 26 May 2023</p>
|
||||||
<div class="alert alert-primary">
|
<div class="alert alert-primary">
|
||||||
This Privacy Policy differs from the policy that applies to my applications published to Google Play. For my
|
This Privacy Policy differs from the policy that applies to my applications published to Google Play. For my
|
||||||
applications' privacy policy, please <a asp-page="/privacy/googleplay">click here</a>.
|
applications' privacy policy, please <a asp-page="/Privacy/GooglePlay">click here</a>.
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
@ -79,7 +79,7 @@
|
|||||||
<h2>Contact Me</h2>
|
<h2>Contact Me</h2>
|
||||||
<p>
|
<p>
|
||||||
If you have any questions or concerns about this Privacy Policy or my privacy practices, please
|
If you have any questions or concerns about this Privacy Policy or my privacy practices, please
|
||||||
<a asp-page="/contact/privacy" asp-route-which="website">get in touch</a>.
|
<a asp-page="/Contact/Privacy" asp-route-which="website">get in touch</a>.
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<hr/>
|
<hr/>
|
||||||
|
@ -58,22 +58,22 @@
|
|||||||
<nav>
|
<nav>
|
||||||
<ul class="site-nav">
|
<ul class="site-nav">
|
||||||
<li>
|
<li>
|
||||||
<a asp-page="/index">About</a>
|
<a asp-page="/Index">About</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a asp-page="/blog/index">Blog</a>
|
<a asp-page="/Blog/Index">Blog</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a asp-page="/tutorials/index">Tutorials</a>
|
<a asp-page="/Tutorials/Index">Tutorials</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a asp-page="/projects/index">Projects</a>
|
<a asp-page="/Projects/Index">Projects</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a asp-page="/contact/index">Contact</a>
|
<a asp-page="/Contact/Index">Contact</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a asp-page="/donate">Donate</a>
|
<a asp-page="/Donate">Donate</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
|
Loading…
Reference in New Issue
Block a user