Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gohugoio/hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'output/layout.go')
-rw-r--r--output/layout.go14
1 files changed, 0 insertions, 14 deletions
diff --git a/output/layout.go b/output/layout.go
index 2483093b0..f83490d81 100644
--- a/output/layout.go
+++ b/output/layout.go
@@ -35,12 +35,6 @@ type LayoutDescriptor struct {
Kind string
Lang string
Layout string
-
- // Any potential type set in the page's current section and the root section
- // it lives in.
- TypeFirstSection string
- TypeCurrentSection string
-
// LayoutOverride indicates what we should only look for the above layout.
LayoutOverride bool
}
@@ -133,14 +127,6 @@ func resolvePageTemplate(d LayoutDescriptor, f Format) []string {
b.addTypeVariations(d.Type)
}
- if d.TypeCurrentSection != "" {
- b.addTypeVariations(d.TypeCurrentSection)
- }
-
- if d.TypeFirstSection != "" {
- b.addTypeVariations(d.TypeFirstSection)
- }
-
switch d.Kind {
case "page":
b.addLayoutVariations("single")