forked from kedacore/keda
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make HTML titles consistent: "<page-title> | KEDA" (kedacore#700)
- Loading branch information
Showing
3 changed files
with
22 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,4 @@ | ||
{{ define "title" }} | ||
The KEDA Blog | {{ .Title }} | ||
{{ end }} | ||
|
||
{{ define "main" }} | ||
{{ define "main" -}} | ||
{{ partial "blog/post-hero.html" . }} | ||
{{ partial "blog/article.html" . }} | ||
{{ end }} | ||
{{ end -}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
{{ define "title" -}} | ||
{{ site.Title }} | {{ site.Params.tagline }} | ||
{{ site.Title }} | {{ site.Params.tagline -}} | ||
{{ end }} | ||
|
||
{{ define "main" }} | ||
{{ partial "home/hero.html" . }} | ||
{{ partial "home/what-is.html" . }} | ||
{{ partial "home/features.html" . }} | ||
{{ partial "home/video.html" . }} | ||
{{ partial "home/scalers.html" . }} | ||
{{ partial "home/samples.html" . }} | ||
{{ partial "logo-section.html" (dict "title" "Users" "description" "A variety of users are autoscaling applications with KEDA:" "logos" site.Params.users) }} | ||
<hr /> | ||
{{ partial "logo-section.html" (dict "title" "Partners" "description" "KEDA is supported by and built by our community, including the following companies:" "logos" site.Params.partners) }} | ||
<hr /> | ||
{{ partial "logo-section.html" (dict "title" "Supported by" "description" "KEDA is supported by the following companies that provide their services for free:" "logos" site.Params.supportedby) }} | ||
{{ define "main" -}} | ||
{{ partial "home/hero.html" . }} | ||
{{ partial "home/what-is.html" . }} | ||
{{ partial "home/features.html" . }} | ||
{{ partial "home/video.html" . }} | ||
{{ partial "home/scalers.html" . }} | ||
{{ partial "home/samples.html" . }} | ||
{{ partial "logo-section.html" (dict "title" "Users" "description" "A variety of users are autoscaling applications with KEDA:" "logos" site.Params.users) }} | ||
<hr /> | ||
{{ partial "logo-section.html" (dict "title" "Partners" "description" "KEDA is supported by and built by our community, including the following companies:" "logos" site.Params.partners) }} | ||
<hr /> | ||
{{ partial "logo-section.html" (dict "title" "Supported by" "description" "KEDA is supported by the following companies that provide their services for free:" "logos" site.Params.supportedby) }} | ||
|
||
{{ partial "home/get-involved.html" . }} | ||
{{ partial "home/cncf.html" . }} | ||
{{ partial "home/get-involved.html" . }} | ||
{{ partial "home/cncf.html" . }} | ||
{{ end -}} |