All Projects → xianmin → Hugo Theme Jane

xianmin / Hugo Theme Jane

Licence: mit
A readable & concise theme for Hugo

Projects that are alternatives of or similar to Hugo Theme Jane

Hugo Primer
Hugo theme based on GitHub's Primer CSS
Stars: ✭ 103 (-84.6%)
Mutual labels:  hugo, hugo-theme, hugo-site, hugo-blog-theme
Hugo Casper Two
Port of Casper 2.x to Hugo
Stars: ✭ 135 (-79.82%)
Mutual labels:  hugo, hugo-theme, hugo-site, hugo-blog-theme
Hugo Vitae
Vitae is a blog theme for Hugo that focuses on your content.
Stars: ✭ 81 (-87.89%)
Mutual labels:  hugo, hugo-theme, hugo-site, hugo-blog-theme
geeky-hugo
Geeky is a Personal Hugo blog theme focused on high speed. Geeky is fully responsive, Superfast, and powered by Bootstrap v5.
Stars: ✭ 44 (-93.42%)
Mutual labels:  hugo-theme, hugo, hugo-site, hugo-blog-theme
hugo-theme-fluency
A fluent hugo theme.
Stars: ✭ 48 (-92.83%)
Mutual labels:  hugo-theme, hugo, hugo-site, hugo-blog-theme
navigator-hugo
Navigator Business theme powered by Hugo. It also could be used for a personal portfolio.
Stars: ✭ 133 (-80.12%)
Mutual labels:  hugo-theme, hugo, hugo-site, hugo-blog-theme
bookworm-light
Bookworm is a clean and modern Hugo blog theme focused on high speed and support multiple authors.
Stars: ✭ 59 (-91.18%)
Mutual labels:  hugo-theme, hugo, hugo-site, hugo-blog-theme
Hugo Theme Pure
A pure theme for Hugo
Stars: ✭ 198 (-70.4%)
Mutual labels:  hugo, hugo-theme, hugo-site, hugo-blog-theme
restaurant-hugo
The restaurant is a creative and responsive restaurant website theme in Hugo environment. It is very well decorated theme which will make your website building easier.
Stars: ✭ 50 (-92.53%)
Mutual labels:  hugo-theme, hugo, hugo-site, hugo-blog-theme
Hugo Eureka
Eureka is a feature-rich and highly customizable Hugo theme.
Stars: ✭ 239 (-64.28%)
Mutual labels:  hugo, hugo-theme, hugo-site, hugo-blog-theme
liva-hugo
Liva is a personal blog template powered by Hugo.
Stars: ✭ 192 (-71.3%)
Mutual labels:  hugo-theme, hugo, hugo-site, hugo-blog-theme
twenty-twenty-hugo
Twenty Twenty Hugo is forked from WordPress Twenty Twenty theme. It's fully functional like the WordPress theme.
Stars: ✭ 48 (-92.83%)
Mutual labels:  hugo-theme, hugo, hugo-site, hugo-blog-theme
persian-hugo
Persian is a box design personal blog theme based on Bootstrap and powered by Hugo. It is very responsive and perfectly fits on any sized screen device.
Stars: ✭ 32 (-95.22%)
Mutual labels:  hugo-theme, hugo, hugo-site, hugo-blog-theme
influencer-hugo
Influencer is a Hugo theme for book authors and writers. It has also Snipcart supports for order books and payments.
Stars: ✭ 66 (-90.13%)
Mutual labels:  hugo-theme, hugo, hugo-site
hugo-sugoi
Hugo-Sugoi - An Ultra Minimal Hugo Theme based on Skeleton
Stars: ✭ 29 (-95.67%)
Mutual labels:  hugo-theme, hugo, hugo-site
hugo-dusk
Simple, minimalistic dark theme for Hugo.
Stars: ✭ 50 (-92.53%)
Mutual labels:  hugo-theme, hugo, hugo-blog-theme
hugo-identity-theme
Little profile/card-style template for Hugo. Based on Identity by HTML5 UP.
Stars: ✭ 87 (-87%)
Mutual labels:  hugo-theme, hugo, hugo-site
hugo-initio
Hugo Theme port of Initio bootstrap template by GetTemplate
Stars: ✭ 58 (-91.33%)
Mutual labels:  hugo-theme, hugo, hugo-site
Cocoa Hugo Theme
Responsive Hugo blog theme
Stars: ✭ 306 (-54.26%)
Mutual labels:  hugo, hugo-theme, hugo-blog-theme
timer-hugo
Timer is a personal portfolio theme powered by Hugo. It also can be use as a landing page theme.
Stars: ✭ 123 (-81.61%)
Mutual labels:  hugo-theme, hugo, hugo-site

jane-preview All Contributors

hugo-theme-jane

Jane is a readable theme for Hugo. It's a fork of hugo-theme-even with a lot of additional changes.

Demo | 中文说明

This theme focuses on improving the reading experience.

Other Key features:

  • Responsive and mobile friendly
  • Multilingual Mode support
  • Shortcodes : image, blockquote, music, etc.
  • Separate design for Tags & Categories Page
  • Social network linking
  • Better Pagination, TOC, footnote behavior
  • Use the awesome Chroma syntax highlighting
  • Custom css, Custom js, Custom head support
  • Sub menu support
  • Search Optimization

Who uses Hugo-theme-Jane

Are you using hugo-theme-jane? Add your site to the list!

Quick Start

Note: This tutorial assumes that you are using Hugo for the first time . Hugo is one of the most popular open-source static site generators. You can check the Hugo Official Docs for more help.

1. Install Hugo

Download the appropriate version for your platform from Hugo Releases. Once downloaded, the binary can be run from anywhere. Ideally, you should install it somewhere in your PATH for easy use. /usr/local/bin is the most probable location.

2. Create a New Site

hugo new site myBlog

The above will create a new Hugo site in a folder named myBlog.

3. Use Hugo-Theme-Jane

Clone this repository into themes folder:

cd myBlog
git clone https://github.com/xianmin/hugo-theme-jane.git --depth=1 themes/jane

Copy the example site content:

cp -r themes/jane/exampleSite/content ./

Copy the default site config:

cp themes/jane/exampleSite/config.toml ./

Take a look at the example site:

hugo server

Open http://localhost:1313/ , you will see your site running with the example content.

4. Start a Blog

The default config file config.toml is located in your site root directory. You can customize it to match the details of your site. Documentation about configuring Hugo can be found in the Official Documentation

The default content files are located in the ./content/post directory.

5. Generate Your Website

Run hugo , this generates your website to the public/ directory by default.

Nice work!

If you have extra time or want to know more about Hugo , check out the awosome Hugo Official Docs .

Site Configuration

Take a look in the exampleSite folder.

This directory contains an example config file and the content for the demo. It serves as an example setup for you to configure to your liking.

Copy the config.toml to the root directory of your website. Overwrite the existing config file if necessary.

Single Post Configuration

Front Matter : Hugo allows you to add front matter in yaml, toml, or json to your content files.

YAML Example:

---
# Common-Defined
title: "An Example Post"
date: 2018-01-01T16:01:23+08:00
lastmod: 2018-01-02T16:01:23+08:00
draft: false
tags: ["tag-1", "tag-2", "tag-3"]
categories: ["index"]
author: "xianmin"

# User-Defined
# You can close(false) or open(true) something for this content.
# P.S. comment can only be closed
comment: false
toc: false
# You can also define another contentCopyright
contentCopyright: '<a rel="license noopener" href="https://creativecommons.org/licenses/by-nc-nd/4.0/" target="_blank">CC BY-NC-ND 4.0</a>'
reward: false
mathjax: true
---

Multilingual (Language) Support

Hugo-Theme-Jane supports the creation of websites with multiple languages side by side.

You should define the available languages in a languages section in your site configuration.

Translations are collected from the i18n/ folder.

To use the translations:

# use Chinese translation
defaultContentLanguage = "zh-cn"  # Default language to use (if you setup multilingual support)
[Languages.zh-cn]
  languageCode = "zh-cn"

To use the Multilingual Mode, see Multilingual Mode | Hugo .

Contributing

If you are interested in fixing issues and contributing directly to this theme, please see the document How to Contribute .

There are many ways to contribute to the Jane theme:

  • submitting pull requests
  • reporting issues
  • providing new translations
  • creating suggestions
  • correct inappropriate English expression (ok, my English is not good)

Contributors

Thanks goes to these wonderful people (emoji key):


Chen Xianmin

💻 🎨 📖 💬

Jack Baty

🐛 🤔 ⚠️ 👀

Athurg Feng

👀 ⚠️ 🐛

Dmitry Verkhoturov

👀 🌍 🤔

Deckon

🌍

YuShuangqi

👀 🤔 💻

Josta Yee

🤔 💻

German Lashevich

💻 🤔 🐛 ⚠️

Jean-Loup Adde

🌍

AxdLog

💻

Andrea Borruso

📖

Yong-Siang Shih (Shaform)

💻 🌍

This project follows the all-contributors specification. Contributions of any kind welcome!

License

Hugo-theme-jane is licensed under the MIT license. Check the LICENSE file for details.

Stackbit

This theme is ready to import into Stackbit. This theme can be deployed to Netlify and you can connect any headless CMS including Forestry, NetlifyCMS, DatoCMS or Contentful.

Create with Stackbit

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].