page_partners.gno
0.62 Kb · 17 lines
1package gnopages
2
3func init() {
4 path := "partners"
5 title := "Partnerships"
6 body := `### Fund and Grants Program
7
8Are you a builder, tinkerer, or researcher? If you’re looking to create awesome dApps, tooling, infrastructure,
9or smart contract libraries on Gno.land, you can apply for a grant. The Gno.land Ecosystem Fund and Grants program
10provides financial contributions for individuals and teams to innovate on the platform.
11
12Read more about our Funds and Grants program [here](https://github.com/gnolang/grants).
13`
14 if err := b.NewPost("", path, title, body, "2022-05-20T13:17:25Z", nil, nil); err != nil {
15 panic(err)
16 }
17}