-
Notifications
You must be signed in to change notification settings - Fork 388
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
16 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,27 @@ | ||
package home | ||
|
||
func Render(_ string) string { | ||
import "github.com/gnolang/gno/examples/gno.land/p/moul/md" | ||
|
||
var sections []string | ||
|
||
func Render(_ string) string { | ||
// what is gnoland & gno | ||
// Latest in gno.land: | ||
// registered users, blogs, hof items, new pkgs (maybe registry pattern) | ||
// learn about gno:pages, github | ||
// | ||
// User? view r/ | ||
// Dev? View r/docs | ||
// view: examples (p/ & r/), | ||
// footer: | ||
// looking at X chain's home realm render | ||
// links, other stats | ||
// | ||
} | ||
|
||
func intro() string { | ||
out := md.H1("Welcome to gno.land") | ||
out += md.H2("We're building gno.land, xyz") | ||
out += md.Paragraph(`gno.land is a blockchain platform that allows users | ||
to have full transparency over the applications they are using`) | ||
|
||
} |