From cce0b7d81d5607353d86a6ddfb9828c40ecf86af Mon Sep 17 00:00:00 2001 From: Jonne Kleijer Date: Thu, 23 May 2024 16:07:31 +0200 Subject: [PATCH] fix: onclick urls of images (#47) Co-authored-by: Jonne Kleijer --- .../input/pages/forms/validation/index.md | 4 ++-- .../input/pages/layouts/creating-a-blazor-layout/index.md | 2 +- .../input/pages/overview/what-is-blazor/index.md | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/source/blazor-university-com/input/pages/forms/validation/index.md b/source/blazor-university-com/input/pages/forms/validation/index.md index 23cdce7..38ff25a 100644 --- a/source/blazor-university-com/input/pages/forms/validation/index.md +++ b/source/blazor-university-com/input/pages/forms/validation/index.md @@ -7,7 +7,7 @@ order: 3 [![](images/SourceLink.png)](https://github.com/mrpmorris/blazor-university/tree/master/src/Forms/ValidatingUserInput) The `DataAnnotationsValidator` is the standard validator type in Blazor. -Adding this component within an `EditForm` component will enable form validation based on .NET attributes descended +Adding this component within an `EditForm` component will enable form validation based on .NET attributes descended from `System.ComponentModel.DataAnnotations.ValidationAttribute`. First we'll create a short example, then we'll go through what happens behind the scenes. @@ -133,4 +133,4 @@ whereas the razor expression makes it more obvious to other developers that we a } ``` -[![](images/ValidationSummaryAndValidationMessages.png)](http://blazor-university.com/wp-content/uploads/2019/08/ValidationSummaryAndValidationMessages.png) +[![](images/ValidationSummaryAndValidationMessages.png)](images/ValidationSummaryAndValidationMessages.png) diff --git a/source/blazor-university-com/input/pages/layouts/creating-a-blazor-layout/index.md b/source/blazor-university-com/input/pages/layouts/creating-a-blazor-layout/index.md index df5d68f..85e85e6 100644 --- a/source/blazor-university-com/input/pages/layouts/creating-a-blazor-layout/index.md +++ b/source/blazor-university-com/input/pages/layouts/creating-a-blazor-layout/index.md @@ -32,4 +32,4 @@ Blazor layouts work only within the part of the HTML that Blazor is defined with in a default Blazor application this is everything within the `` element. It isn't currently possible to alter attributes of HTML elements outside of this scope except by use of [JavaScript Interop](http://blazor-university.com/javascript-interop/). -[![](images/Layout.png)](http://blazor-university.com/wp-content/uploads/2019/06/image.png) +[![](images/Layout.png)](images/Layout.png) diff --git a/source/blazor-university-com/input/pages/overview/what-is-blazor/index.md b/source/blazor-university-com/input/pages/overview/what-is-blazor/index.md index 92049c5..029f141 100644 --- a/source/blazor-university-com/input/pages/overview/what-is-blazor/index.md +++ b/source/blazor-university-com/input/pages/overview/what-is-blazor/index.md @@ -9,7 +9,7 @@ The name Blazor is a combination/mutation of the words Browser and Razor (the .N The implication being that instead of having to execute Razor views on the server in order to present HTML to the browser, Blazor is capable of executing these views on the client. -[![Blazor client side](images/BlazorClientSide-300x251.png)](http://blazor-university.com/wp-content/uploads/2019/05/BlazorClientSide.png) +[![Blazor client side](images/BlazorClientSide-300x251.png)](images/BlazorClientSide-300x251.png) Blazor app with client-side execution