### **Concise** A minimalist Hugo theme focused on writing. ![homepage](./images/homepage.png) ![post](./images/tn.png) ![single](./images/screenshot.png) --- ### **Features** - **Extremely Minimalist Design** - **No Unnecessary Features** - **Focus on the Essence of Blogging** --- ### **Quick Start** ```bash git clone https://github.com/yingyu5658/hugo-theme-concise.git themes/concise ``` Add the following configuration to `hugo.toml` in your site's root directory: ```toml baseURL = "..." publishDir = "public" title = "YOUR_WEBSITE_TITLE" description = "SUBTITLE" languageCode = "zh-CN" theme = ["concise"] pagination = { pagerSize = 25 } [permalinks] posts = "YOUR_PERMALINKS" [params] [[params.homepage.content]] name = "Archives"# Posts archive url = "/post" [[params.homepage.content]] name = "Links"# Friend links url = "/links" [[params.homepage.content]] name = "About" url = "/about" [[params.homepage.content]] name = "RSS" url = "/atom.xml" [params.footer] content = "Email: YOUR_EMAIL" [markup.highlight] noClasses = true style = "emacs"# Options: github, emacs, solarized-light, etc. [outputFormats.RSS] baseName = "atom" ``` --- ### **Comments** - **Waline Comment System Support** Modify `serverURL` in `layouts/_default/single.html`: ```html ```