.Site.IsMultiLingual
: whether there are more than one language in this site. See [Multilingual](/content-management/multilingual/) for more information.
+.Site.IsServer
+: a boolean to indicate if the site is being served with Hugo's built-in server. See [`hugo server`](/commands/hugo_server/) for more information.
+
.Site.Language.Lang
: the language code of the current locale (e.g., `en`).
<meta name="description" content="{{if .IsHome}}{{ $.Site.Params.description }}{{else}}{{.Description}}{{end}}" />
{{< /code >}}
-[config]: /getting-started/configuration/
\ No newline at end of file
+[config]: /getting-started/configuration/
return len(s.Languages) > 1
}
+func (s *SiteInfo) IsServer() bool {
+ return s.owner.running
+}
+
func (s *SiteInfo) refLink(ref string, page *Page, relative bool, outputFormat string) (string, error) {
var refURL *url.URL
var err error