blog/content/posts/hello-hugo.md

1.2 KiB

title date draft tags author showToc TocOpen hidemeta comments description canonicalURL disableShare disableHLJS hideSummary searchHidden ShowReadingTime ShowBreadCrumbs ShowPostNavLinks ShowWordCount ShowRssButtonInSectionTermList UseHugoToc cover
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 appendFilePath
<image path/url> <alt text> <text> false true 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")
}