github.com/gnolang/gno@v0.0.0-20240520182011-228e9d0192ce/examples/gno.land/r/gnoland/pages/pages.gno (about)

     1  package gnopages
     2  
     3  import (
     4  	"gno.land/p/demo/blog"
     5  )
     6  
     7  // TODO: switch from p/blog to p/pages
     8  
     9  var b = &blog.Blog{
    10  	Title:        "Gnoland's Pages",
    11  	Prefix:       "/r/gnoland/pages:",
    12  	NoBreadcrumb: true,
    13  }
    14  
    15  func Render(path string) string {
    16  	return b.Render(path)
    17  }