2019-01-02 06:33:26 -05:00
|
|
|
// Copyright 2019 The Hugo Authors. All rights reserved.
|
2017-04-09 04:33:04 -04:00
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
package hugolib
|
|
|
|
|
|
|
|
import (
|
2019-01-02 06:33:26 -05:00
|
|
|
"github.com/gohugoio/hugo/resources/page"
|
2017-04-09 04:33:04 -04:00
|
|
|
)
|
|
|
|
|
2017-07-02 12:20:14 -04:00
|
|
|
// Sections returns the top level sections.
|
2019-01-02 06:33:26 -05:00
|
|
|
func (s *SiteInfo) Sections() page.Pages {
|
2017-07-02 12:20:14 -04:00
|
|
|
home, err := s.Home()
|
|
|
|
if err == nil {
|
|
|
|
return home.Sections()
|
|
|
|
}
|
|
|
|
return nil
|
2017-04-09 04:33:04 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Home is a shortcut to the home page, equivalent to .Site.GetPage "home".
|
2019-01-02 06:33:26 -05:00
|
|
|
func (s *SiteInfo) Home() (page.Page, error) {
|
|
|
|
return s.s.home, nil
|
2017-04-09 04:33:04 -04:00
|
|
|
}
|