Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions layouts/_default/baseof.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
{{ partial "head_custom.html" . }}
{{ end }}

{{ if or ( not .Site.IsServer ) ( not ( in .Site.Params.buildtype "package" ) ) }}
{{ if or ( not hugo.IsServer ) ( not ( in .Site.Params.buildtype "package" ) ) }}

{{ partial "trustarc.html" . }}

Expand All @@ -37,7 +37,7 @@
</head>

<body>
{{ if or ( not .Site.IsServer ) ( not ( in .Site.Params.buildtype "package" ) ) }}
{{ if or ( not hugo.IsServer ) ( not ( in .Site.Params.buildtype "package" ) ) }}
{{ partial "universal-tag.html" . }}
{{ end }}

Expand Down
2 changes: 1 addition & 1 deletion layouts/partials/meta.html
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
<!-- build metadata -->
<meta property="environment" type="{{ hugo.Environment }}" />
<meta property="buildtype" type="{{ .Site.Params.buildtype }}" />
<meta property="isServer" type="{{ .Site.IsServer }}" />
<meta property="isServer" type="{{ hugo.IsServer }}" />

<!-- Coveo metadata-->
<meta name="product" content="{{ .Site.Title }}">
Expand Down
2 changes: 1 addition & 1 deletion theme.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ licenselink = "https://github.com/nginxinc/nginx-hugo-theme/blob/main/LICENSE"
description = "Hugo theme for F5 NGINX documentation"
homepage = "https://docs.nginx.com/"

min_version = "0.74.3"
min_version = "0.128.0"

[author]
name = "F5, Inc."
Expand Down