summaryrefslogtreecommitdiff
path: root/themes/itheme/README.md
diff options
context:
space:
mode:
authorTheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com>2024-04-29 10:16:09 -0400
committerTheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com>2024-04-29 10:16:09 -0400
commit2cd42b9d71238abc14748566134ead380d5f0969 (patch)
tree03b479b0d92781add4c196bb515886f0b981e842 /themes/itheme/README.md
Init
Diffstat (limited to 'themes/itheme/README.md')
-rw-r--r--themes/itheme/README.md114
1 files changed, 114 insertions, 0 deletions
diff --git a/themes/itheme/README.md b/themes/itheme/README.md
new file mode 100644
index 0000000..7edffef
--- /dev/null
+++ b/themes/itheme/README.md
@@ -0,0 +1,114 @@
+# iTheme theme for Hugo
+
+**If you like this theme, [please give me a star!](https://github.com/floyd-li/hugo-theme-itheme)**
+
+![clones](https://raw.githubusercontent.com/floyd-li/traffic-to-badge/traffic/traffic-hugo-theme-itheme/clones.svg)
+![clones per week](https://raw.githubusercontent.com/floyd-li/traffic-to-badge/traffic/traffic-hugo-theme-itheme/clones_per_week.svg)
+
+## Introduction
+
+[中文说明](https://github.com/floyd-li/hugo-theme-itheme/blob/master/README_CN.md)
+
+An Apple style theme for [Hugo](https://gohugo.io/), inspired by [astro-air-blog](https://github.com/austin2035/astro-air-blog)
+
+## Preview
+
+[Demo Site](https://hugo-theme-itheme.netlify.app)
+
+## Quick Start
+
+Before you start, make sure you have installed [Hugo](https://gohugo.io/).
+
+### Quick start with the demo site
+
+Here's the [demo site repo](https://github.com/floyd-li/itheme-demo-site)
+
+```bash
+git clone --recurse-submodules https://github.com/floyd-li/itheme-demo-site.git my-site
+cd ./my-site && hugo server -D
+```
+
+Then you can visit `http://localhost:1313` to see the demo site!
+
+### Use the theme for existed site
+
+```bash
+git submodule add https://github.com/floyd-li/hugo-theme-itheme.git themes/hugo-theme-itheme
+echo "theme = 'hugo-theme-itheme'" >> config.toml
+```
+
+Then you need to add some configuration to `config.toml`, please flow the [Site Configuration](#site-configuration).
+
+## Screenshot
+
+![screenshot](https://raw.githubusercontent.com/floyd-li/hugo-theme-itheme/master/images/screenshot.png)
+
+## Features
+
+- `Light` and `Dark` mode for post
+- Three different sizes for images in the post
+- `i18n` support (currently only support `en` and `zh-hans`, there is a great need for contributing translation)
+- [Algolia](https://www.algolia.com/) search integration
+- Custom JavaScript/CSS support (You may put these files in `static/` directory)
+
+## Configuration
+
+### Site Configuration
+
+```toml
+defaultContentLanguage = "en" # current only supported 'en' and 'zh-hans', see the 'i18n' folder
+[params]
+ defaultCover = 'https://example.com/cover.jpg' # default cover image for post not setting cover
+ email = 'floyd.li@outlook.com' # the email address display in the footer
+ [params.algolia] # Algolia search configuration
+ enabled = true # enable Algolia search
+ appId = 'YOUR_KEY' # appid for Algolia search
+ appKey = 'YOUR_APP_KEY' # appkey for Algolia search
+ searchIndex = 'YOUR_INDEX' # index for Algolia search
+ [[params.css]] # custom css stylesheet, you can add one or more, url is relative in 'static' folder
+ url = 'css1.css'
+ [[params.css]]
+ url = 'css2.css'
+ [[params.js]] # custom javascript, you can add one or more, url is relative in 'static' folder
+ url = 'js1.js'
+ [[params.js]]
+ url = 'js2.js'
+ [[params.socialMedia]] # custom social links display in the footer, you can add one or more
+ name = 'Github'
+ url = 'https://github.com/floyd-li'
+ [[params.socialMedia]]
+ name = 'Twitter'
+ url = 'https://twitter.com/some-one'
+ [[params.blogroll]] # blogroll links display in the footer, you can add one or more
+ name = 'Apple'
+ url = 'https://Apple.com/'
+ [[params.blogroll]]
+ name = 'Google'
+ url = 'https://Google.com/'
+```
+
+### Post Configuration
+
+```markdown
+---
+title: 'Some Article'
+date: '2022-10-27T13:06:38+08:00'
+draft: true
+description: 'some description of the article'
+author: 'author of this article'
+cover: 'https://example.com/cover.jpg' // if not set cover, it will use the 'defaultCover' in site configuration
+tags: ["tag1", "tag2", "tag3"]
+theme: "dark" // you can set 'light' or 'dark' here
+---
+```
+
+### Three display modes of images
+
+The three display modes of images are: `inline`, `big`, `wide`, you can visit the [demo site](https://hugo-theme-itheme.netlify.app/posts/mark-down-syntax/#Image) for preview
+When you edit your markdown file, you can add `inline`, `big` or `wide` to the image alt, like this:
+
+```markdown
+![alt content|wide](a.png)
+```
+
+The Separator is `|`, and the default mode is `big`.