Skip to content

Commit d3fd387

Browse files
committed
fixes
1 parent 60a35ca commit d3fd387

File tree

8 files changed

+17
-15
lines changed

8 files changed

+17
-15
lines changed

Diff for: config/_default/params.toml

+7-7
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ navBarLogo = "/images/navbar-logo.png"
1515
mainSections = ["blog", "docs", "dotnet-webapi-boilerplate", "basics"]
1616

1717
## Open Graph
18-
images = ["doks.png"]
18+
images = ["fullstackhero.png"]
1919
ogLocale = "en_US"
2020
domainTLD = "doks.netlify.app"
2121
titleHome = "Doks Theme"
@@ -27,16 +27,16 @@ twitterCreator = "@iammukeshm"
2727
## JSON-LD
2828
# schemaType = "Person"
2929
schemaType = "Organization"
30-
schemaName = "Doks"
30+
schemaName = "fullstackhero"
3131
schemaAuthor = "Mukesh Murugan"
3232
schemaAuthorTwitter = "https://twitter.com/iammukeshm"
3333
schemaAuthorLinkedIn = "https://www.linkedin.com/in/iammukeshm/"
3434
schemaAuthorGitHub = "https://github.com/iammukeshm"
3535
schemaLocale = "en-US"
36-
schemaLogo = "logo-doks.png"
36+
schemaLogo = "logo-fullstackhero.png"
3737
schemaLogoWidth = 512
3838
schemaLogoHeight = 512
39-
schemaImage = "doks.png"
39+
schemaImage = "fullstackhero.png"
4040
schemaImageWidth = 1280
4141
schemaImageHeight = 640
4242
schemaTwitter = "https://twitter.com/codewithmukesh"
@@ -51,12 +51,12 @@ siteLinksSearchBox = false
5151
themeColor = "#fff"
5252

5353
# Images
54-
quality = 85
54+
quality = 100
5555
bgColor = "#fff"
56-
landscapePhotoWidths = [900, 800, 700, 600, 500]
56+
landscapePhotoWidths = [2000, 1000, 900, 800, 700, 600, 500]
5757
portraitPhotoWidths = [800, 700, 600, 500]
5858
lqipWidth = "20x"
59-
smallLimit = "300"
59+
smallLimit = "30"
6060

6161
# Footer
6262
footer = "Developed & Maintained by <a href=\"https://www.codewithmukesh.com/\">Mukesh Murugan</a>"

Diff for: content/en/basics/getting-started/index.md

+1-3
Original file line numberDiff line numberDiff line change
@@ -24,17 +24,15 @@ over 200+ hours of Development and Research Time for Developers and Teams.</p>
2424
<p>Here are the awesome fullstackhero projects!</p>
2525
</div>
2626
<div>
27-
<div class="row justify-content-center text-center">
27+
<div class="row justify-content-center text-center" style="padding:10px!important">
2828
<div class="card feature-card" style="padding:0px!important">
29-
<img src="https://codewithmukesh.com/wp-content/uploads/2022/02/fullstackhero-dotnet-webapi-banner.png" alt="fullstackhero dotnet webapi">
3029
<div style="padding:20px">
3130
<h2 class="h4">.NET 6 Web API Boilerplate</h2>
3231
<p>Get to work with the latest and greatest of Microsoft's .NET 6 Web API fused with the goodness of fullstackhero.</p>
3332
<p><a href="https://github.com/fullstackhero/dotnet-webapi-boilerplate">View Repository</a> | <a href="https://fullstackhero.net/dotnet-webapi-boilerplate/general/getting-started/">Read Getting Started Guide</a></p>
3433
</div>
3534
</div>
3635
<div class="card feature-card" style="padding:0px!important">
37-
<img src="https://codewithmukesh.com/wp-content/uploads/2022/02/fullstackhero-blazor-wasm-banner.png" alt="fullstackhero blazor wasm">
3836
<div style="padding:20px">
3937
<h2 class="h4">Blazor WebAssembly Boilerplate</h2>
4038
<p>Clean Architecture Boilerplate Template for .NET 6.0 Blazor WebAssembly built for FSH WebAPI with the goodness of MudBlazor Components.</p>

Diff for: content/en/dotnet-webapi-boilerplate/general/getting-started/index.md

+9-5
Original file line numberDiff line numberDiff line change
@@ -14,23 +14,27 @@ menu:
1414
weight: 3
1515
toc: true
1616
---
17-
To start using fullstackhero .NET WebAPI Boilerplate, there are a couple of options.
1817

19-
But before that, make sure that you have already setup your development environment that runs the prerequisite tools and SDKs. Refer [Development Environment](/dotnet-webapi-boilerplate/general/development-environment/) for details.
18+
Firstly, make sure that you have already setup your development environment that runs the prerequisite tools and SDKs. Refer [Development Environment](/dotnet-webapi-boilerplate/general/development-environment/) for details.
2019

2120
This guide will take you right from installing the `fullstackhero .NET WebAPI Boilerplate` package to testing the API using the provided Postman Collection!
2221

2322
## Installing NuGet Package
2423

25-
This is by far the easiest and the most streamlined way of getting the latest available release version of fullstackhero .NET WebApi Boilerplate.
24+
This is by far the easiest and the most streamlined way of getting the latest available `Release version` of fullstackhero .NET WebApi Boilerplate.
2625

2726
Open up your Command Prompt / Powershell and run the following command to install the solution template.
2827

2928
```powershell
30-
dotnet new --install FullStackHero.WebAPI.Boilerplate::0.0.5-rc
29+
dotnet new -i FullStackHero.WebAPI.Boilerplate
3130
```
31+
or, if you want to use a specific version of the boilerplate, use
3232

33-
{{< img src="install-fullstackhero.jpg" >}}
33+
```powershell
34+
dotnet new -i FullStackHero.WebAPI.Boilerplate::0.0.5-rc
35+
```
36+
37+
{{< img src="install-fullstackhero.png" >}}
3438

3539
This would install the `fullstackhero .NET WebAPI Boilerplate` template globally on your machine. Do note that, at the time of writing this documentation, the latest available version is **0.0.5-rc** which is also one of the first pre-release version of the package. It is highly likely that there is already a newer version available when you are reading this.
3640

Loading
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)