diff --git a/config.toml b/config.toml index 812413a..7bf653f 100644 --- a/config.toml +++ b/config.toml @@ -5,7 +5,7 @@ base_url = "https://coolans.dev" compile_sass = false # When set to "true", the generated HTML files are minified. -minify_html = false +minify_html = true # When set to "true", a search index is built from the pages and section # content for `default_language`. @@ -42,10 +42,10 @@ include_description = true # Whether to include the RFC3339 datetime of the page in the search index include_date = true # Whether to include the rendered content of the page/section in the index -include_content = true +include_content = false # At which code point to truncate the content to. Useful if you have a lot of pages and the index would # become too big to load on the site. Defaults to not being set. -truncate_content_length = 100 +# truncate_content_length = 100 [extra] # Put all your custom variables here diff --git a/content/blog/hello-world.md b/content/blog/hello-world.md index ce52b66..e40db64 100644 --- a/content/blog/hello-world.md +++ b/content/blog/hello-world.md @@ -1,6 +1,6 @@ +++ title = "Hello World" -date = 2025-06-15 +date = 2025-05-16 extra.image = "assets/hello_world.webp" description = "My First Blog." +++ diff --git a/static/assets/blog-default.png b/static/assets/blog-default.png new file mode 100644 index 0000000..4434e9e Binary files /dev/null and b/static/assets/blog-default.png differ diff --git a/static/assets/favicon.ico b/static/assets/favicon.ico new file mode 100644 index 0000000..9647628 Binary files /dev/null and b/static/assets/favicon.ico differ diff --git a/templates/base.html b/templates/base.html index ff329f6..cc286d8 100644 --- a/templates/base.html +++ b/templates/base.html @@ -4,8 +4,9 @@