blog/content/posts/hello-hugo.md
2023-05-12 10:47:09 +02:00

1.3 KiB

title date draft tags author showToc TocOpen hidemeta comments description canonicalURL disableShare disableHLJS hideSummary searchHidden ShowReadingTime ShowBreadCrumbs ShowPostNavLinks ShowWordCount ShowRssButtonInSectionTermList UseHugoToc cover editPost
Hello Hugo 2023-05-12T10:14:52+02:00 false
initial
hello
Gabriel Augendre true false false false Desc Text. https://canonical.url/to/page false false false true true true true true true true
image alt caption relative hidden
<image path/url> <alt text> <text> false true
URL Text appendFilePath
https://github.com/<path_to_repo>/content Suggest Changes true

Hello world

This is an introduction post using hugo, a SSG written in golang.

def hello(name: str = "World") -> str:
    return f"Hello, {name}"

if __name__ == "__main__":
    print(hello("Gabriel"))
package main

import "fmt"

func main() {
    fmt.Println("Hello, world")
}