node to page: Use _index as identificator for the list nodes
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Thu, 3 Nov 2016 10:36:47 +0000 (11:36 +0100)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Tue, 22 Nov 2016 08:57:03 +0000 (09:57 +0100)
Updates #2297

hugolib/node.go
hugolib/node_as_page_test.go

index f01b4c822d7f73c348fb9e5a29e5b7711e291e7a..133763c81972cea37f4121f27c1df436926663e4 100644 (file)
@@ -372,11 +372,11 @@ func sectionsFromFilename(filename string) []string {
 // TODO(bep) np node identificator
 func nodeTypeFromFilename(filename string) NodeType {
 
-       if !strings.Contains(filename, "_node") {
+       if !strings.Contains(filename, "_index") {
                return NodePage
        }
 
-       if strings.HasPrefix(filename, "_node") {
+       if strings.HasPrefix(filename, "_index") {
                return NodeHome
        }
 
index 8276f2d231638b80aebff365943f05f29733650f..30f7fd80f9175201891d518578cd03f363d42d07 100644 (file)
@@ -51,37 +51,37 @@ func TestNodesAsPage(t *testing.T) {
 
        writeLayoutsForNodeAsPageTests(t)
 
-       writeSource(t, filepath.Join("content", "_node.md"), `---
+       writeSource(t, filepath.Join("content", "_index.md"), `---
 title: Home Sweet Home!
 ---
 Home **Content!**
 `)
 
-       writeSource(t, filepath.Join("content", "sect1", "_node.md"), `---
+       writeSource(t, filepath.Join("content", "sect1", "_index.md"), `---
 title: Section1
 ---
 Section1 **Content!**
 `)
 
-       writeSource(t, filepath.Join("content", "sect2", "_node.md"), `---
+       writeSource(t, filepath.Join("content", "sect2", "_index.md"), `---
 title: Section2
 ---
 Section2 **Content!**
 `)
 
-       writeSource(t, filepath.Join("content", "categories", "hugo", "_node.md"), `---
+       writeSource(t, filepath.Join("content", "categories", "hugo", "_index.md"), `---
 title: Taxonomy Hugo
 ---
 Taxonomy Hugo **Content!**
 `)
 
-       writeSource(t, filepath.Join("content", "categories", "web", "_node.md"), `---
+       writeSource(t, filepath.Join("content", "categories", "web", "_index.md"), `---
 title: Taxonomy Web
 ---
 Taxonomy Web **Content!**
 `)
 
-       writeSource(t, filepath.Join("content", "categories", "_node.md"), `---
+       writeSource(t, filepath.Join("content", "categories", "_index.md"), `---
 title: Taxonomy Term Categories
 ---
 Taxonomy Term Categories **Content!**