page_start.gno
0.33 Kb ยท 13 lines
1package gnopages
2
3func init() {
4 path := "start"
5 title := "Getting Started with Gno"
6 body := `## Getting Started with Gno
7
8Visit the [getting-started](https://github.com/gnolang/getting-started) repo to try Gno in 5 minutes!
9`
10 if err := b.NewPost("", path, title, body, "2022-05-20T13:17:26Z", nil, nil); err != nil {
11 panic(err)
12 }
13}