2013-07-04 11:32:55 -04:00
|
|
|
// Copyright © 2013 Steve Francia <spf@spf13.com>.
|
|
|
|
//
|
|
|
|
// Licensed under the Simple Public 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://opensource.org/licenses/Simple-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 (
|
2014-01-29 17:50:31 -05:00
|
|
|
"html/template"
|
|
|
|
"time"
|
2013-07-04 11:32:55 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
type Node struct {
|
2014-01-29 17:50:31 -05:00
|
|
|
RSSLink template.HTML
|
2014-05-28 19:11:54 -04:00
|
|
|
Site *SiteInfo
|
2014-01-29 17:50:31 -05:00
|
|
|
// layout string
|
|
|
|
Data map[string]interface{}
|
|
|
|
Title string
|
|
|
|
Description string
|
|
|
|
Keywords []string
|
2014-04-08 21:40:38 -04:00
|
|
|
Params map[string]interface{}
|
2014-01-29 17:50:31 -05:00
|
|
|
Date time.Time
|
2014-05-06 06:50:23 -04:00
|
|
|
Sitemap Sitemap
|
2014-01-29 17:50:31 -05:00
|
|
|
UrlPath
|
2014-01-18 22:16:19 -05:00
|
|
|
}
|
|
|
|
|
2014-04-23 02:59:19 -04:00
|
|
|
func (n *Node) Now() time.Time {
|
|
|
|
return time.Now()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (n *Node) HasMenuCurrent(menu string, me *MenuEntry) bool {
|
|
|
|
return false
|
|
|
|
}
|
2014-05-14 18:01:13 -04:00
|
|
|
func (n *Node) IsMenuCurrent(menu string, me *MenuEntry) bool {
|
2014-04-23 02:59:19 -04:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
func (n *Node) RSSlink() template.HTML {
|
2014-01-29 17:50:31 -05:00
|
|
|
return n.RSSLink
|
2013-08-13 19:39:24 -04:00
|
|
|
}
|
|
|
|
|
2014-08-19 21:27:13 -04:00
|
|
|
func (n *Node) IsNode() bool {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
func (n *Node) IsPage() bool {
|
|
|
|
return !n.IsNode()
|
|
|
|
}
|
|
|
|
|
2013-08-13 19:39:24 -04:00
|
|
|
type UrlPath struct {
|
2014-01-29 17:50:31 -05:00
|
|
|
Url string
|
|
|
|
Permalink template.HTML
|
|
|
|
Slug string
|
|
|
|
Section string
|
2013-07-04 11:32:55 -04:00
|
|
|
}
|