diff --git a/config.toml b/config.toml index 820aaf5..2d71d81 100644 --- a/config.toml +++ b/config.toml @@ -13,6 +13,7 @@ pygmentsUseClasses=true microBlogSection = "posts" displayMicroBlog = false displayRecent = true + displayHomeContent = false recentMax = 4 mail = "mail@example.com" phone = "8888888888" diff --git a/layouts/index.html b/layouts/index.html index 416d80b..32dfea3 100644 --- a/layouts/index.html +++ b/layouts/index.html @@ -1,4 +1,7 @@ {{define "main"}} + {{if .Site.Params.displayHomeContent}} + {{.Content}} + {{end}} {{if ne .Site.Params.displayRecent false}}
recent