page_links.gno

1.07 Kb ยท 26 lines
 1package gnopages
 2
 3func init() {
 4	path := "links"
 5	title := "Gno.land Linker"
 6	body := `
 7
 8Below are Gno.land's most important links.
 9
10#### [Gno GitHub, the project's main repository](https://github.com/gnolang/gno)
11#### [Getting Started with Gno](https://github.com/gnolang/getting-started/)
12#### [Gno.land Official Docs](https://docs.gno.land/)
13#### [Gnoverse Github, a community organization for Gnomes](https://github.com/gnoverse)
14#### [Gno.land Workshops, a repo for Gno resources](https://github.com/gnolang/workshops)
15#### [Gno.land Students Program](https://github.com/gnolang/student-contributors-program/)
16#### [Gno.land Contributor page](https://gno.land/contribute)
17#### [Gno.land Discord](https://discord.gg/gnoland)
18#### [Gno.land X](https://x.com/_gnoland)
19#### [Gno.land YouTube](https://www.youtube.com/@_gnoland)
20#### [Gno.land Playground, an online editor for exploring Gno.land](https://play.gno.land)
21#### [GnoScan, a Gno.land block explorer](https://gnoscan.io/)
22`
23	if err := b.NewPost("", path, title, body, "2025-06-23T13:17:30Z", nil, nil); err != nil {
24		panic(err)
25	}
26}