github.com/gnolang/gno@v0.0.0-20240520182011-228e9d0192ce/examples/gno.land/r/gnoland/pages/page_start.gno (about) 1 package gnopages 2 3 func init() { 4 path := "start" 5 title := "Getting Started with Gno" 6 // XXX: description := "" 7 8 // TODO: codegen to use README files here 9 10 /* TODO: port previous message: This is a demo of Gno smart contract programming. This document was 11 constructed by Gno onto a smart contract hosted on the data Realm 12 name ["gno.land/r/demo/boards"](https://gno.land/r/demo/boards/) 13 ([github](https://github.com/gnolang/gno/tree/master/examples/gno.land/r/demo/boards)). 14 */ 15 body := `## Getting Started with Gno 16 17 - [Install Gno Key](/r/demo/boards:testboard/5) 18 - TODO: add more links 19 ` 20 _ = b.NewPost("", path, title, body, "2022-05-20T13:17:28Z", nil, nil) 21 }