HUGO
Menu
GitHub 86675 stars Mastodon

reflect.IsSite

Reports whether the given value is a Site object.

Syntax

reflect.IsSite INPUT

Returns

bool
New in v0.154.0
layouts/page.html
{{ with .Site  }}
  {{ reflect.IsSite . }} → true
{{ end }}

{{ with site.GetPage "/examples" }}
  {{ reflect.IsSite . }} → false
{{ end }}

Last updated: January 1, 0001
Improve this page