diff --git a/exampleSite/config.toml b/exampleSite/config.toml index c1ad606..0bc9e04 100644 --- a/exampleSite/config.toml +++ b/exampleSite/config.toml @@ -1,34 +1,38 @@ baseurl = "/" languageCode = "en-us" -title = "Hello Friend" theme = "hugo-theme-hello-friend" -copyright = "" paginate = 5 [params] - subtitle = "A simple theme for Hugo" + # dir name of your blog content (default is `content/posts`) + contentTypeName = "posts" # "light" or "dark" defaultTheme = "dark" -[params.logo] - logoText = "hello friend" -# or -# -# path = "/img/your-example-logo.svg" -# alt = "Your example logo alt text" - -[menu] - [[menu.main]] - identifier = "about" - name = "About" - url = "/about" - [[menu.main]] - identifier = "showcase" - name = "Showcase" - url = "/showcase" - [languages] [languages.en] + title = "Hello Friend" + subtitle = "A simple theme for Hugo" + keywords = "" + copyright = "" writtenBy = "Written by" readMore = "Read more" readOtherPosts = "Read other posts" + + [languages.en.params.logo] + logoText = "hello friend" + logoHomeLink = "/" + # or + # + # path = "/img/your-example-logo.svg" + # alt = "Your example logo alt text" + + [languages.en.menu] + [[languages.en.menu.main]] + identifier = "about" + name = "About" + url = "/about" + [[languages.en.menu.main]] + identifier = "showcase" + name = "Showcase" + url = "/showcase" diff --git a/exampleSite/content/post/hello.md b/exampleSite/content/posts/hello.md similarity index 100% rename from exampleSite/content/post/hello.md rename to exampleSite/content/posts/hello.md