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 (
|
2013-09-03 15:41:13 -04:00
|
|
|
"html/template"
|
2013-09-03 18:38:20 -04:00
|
|
|
"time"
|
2013-07-04 11:32:55 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
type Node struct {
|
2013-10-09 19:06:47 -04:00
|
|
|
RSSlink template.HTML
|
|
|
|
Site SiteInfo
|
|
|
|
// layout string
|
2013-07-04 11:32:55 -04:00
|
|
|
Data map[string]interface{}
|
|
|
|
Title string
|
|
|
|
Description string
|
|
|
|
Keywords []string
|
|
|
|
Date time.Time
|
2013-08-13 19:39:24 -04:00
|
|
|
UrlPath
|
|
|
|
}
|
|
|
|
|
|
|
|
type UrlPath struct {
|
|
|
|
Url string
|
2013-09-03 15:41:13 -04:00
|
|
|
Permalink template.HTML
|
2013-08-13 19:39:24 -04:00
|
|
|
Slug string
|
|
|
|
Section string
|
2013-07-04 11:32:55 -04:00
|
|
|
}
|