Skip to content

Commit

Permalink
add more to Cogent Apps main page
Browse files Browse the repository at this point in the history
  • Loading branch information
kkoreilly committed Jul 18, 2024
1 parent e9eacff commit 7d6e4e3
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions docs/docs.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,17 @@
// hosted at https://cogentcore.org/cogent.
package main

import "cogentcore.org/core/core"
import (
"cogentcore.org/core/core"
"cogentcore.org/core/htmlcore"
)

func main() {
b := core.NewBody("Cogent Apps").AddTitle("Cogent Apps")
b := core.NewBody("Cogent Apps")
htmlcore.ReadMDString(htmlcore.NewContext(), b, `# Cogent Apps
* [Cogent Code](https://cogentcore.org/cogent/code)
* [Cogent Canvas](https://cogentcore.org/cogent/canvas)
See other Cogent Apps at https://github.com/cogentcore/cogent`)
b.RunMainWindow()
}

0 comments on commit 7d6e4e3

Please sign in to comment.