diff --git a/config.toml b/config.toml index 855d188..7b61ba4 100644 --- a/config.toml +++ b/config.toml @@ -1,3 +1,25 @@ baseURL = 'https://lambwire.net' -title = 'Fresh Hugo Site' +# title = 'Lambwire' theme = 'hugo-bearcub' +copyright = "John Lamb" +defaultContentLanguage = "en" + +[languages] + [languages.en] + title = "Lambwire" + languageName = "en-US πΊπΈ" + LanguageCode = "en-US" + contentDir = "content" + [languages.en.params] + madeWith = "Made with [Bear Cub](https://github.com/clente/hugo-bearcub)" + +[params] + description = "Params description" + + title = "Lambwire params" + + themeStyle = "original" + + [params.author] + name = "John Lamb" + email = "me@example.com" \ No newline at end of file diff --git a/content/_index.md b/content/_index.md new file mode 100644 index 0000000..69a14d7 --- /dev/null +++ b/content/_index.md @@ -0,0 +1,8 @@ +--- +title: "Home" +menu: "main" +weight: 1 +description: "Welcome to my personal website, where I share my thoughts and projects." +--- + +Welcome to my site! Here you'll find my latest blog posts, projects, and more. Enjoy your stay. diff --git a/content/blog/_index.md b/content/blog/_index.md new file mode 100644 index 0000000..7588ac1 --- /dev/null +++ b/content/blog/_index.md @@ -0,0 +1,5 @@ +--- +title: "Blog" +menu: "main" +weight: 2 +--- \ No newline at end of file diff --git a/content/posts/first.md b/content/blog/first.md similarity index 100% rename from content/posts/first.md rename to content/blog/first.md diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html deleted file mode 100644 index 600e113..0000000 --- a/layouts/_default/baseof.html +++ /dev/null @@ -1,48 +0,0 @@ -{{- define "baseof" -}} - - -
- - - {{ partial "favicon.html" . }} -{{ . }}
- {{ end }} -{{ . }} Read more...
- {{ end }} -{{ .Content }}
-