All Projects → HoverBaum → Meilidu Hexo

HoverBaum / Meilidu Hexo

MeiliDu, beatuiful reading theme for Hexo.

Projects that are alternatives of or similar to Meilidu Hexo

Post Scheduler
Schedule posts & content updates for static websites (Jekyll, Hugo, Gatsby, Phenomic etc)
Stars: ✭ 184 (+135.9%)
Mutual labels:  static-site-generator, hexo
Vanilla Back To Top
Simple and smooth Back To Top button
Stars: ✭ 179 (+129.49%)
Mutual labels:  static-site-generator, hexo
Hexo Generator Amp
AMP ⚡ HTML (Accelerated Mobile Pages) generator for Hexo.
Stars: ✭ 129 (+65.38%)
Mutual labels:  static-site-generator, hexo
Hexo
A fast, simple & powerful blog framework, powered by Node.js.
Stars: ✭ 33,885 (+43342.31%)
Mutual labels:  static-site-generator, hexo
Easy Hexo
🤘 Build your own website with Hexo, the easy way. | 轻松使用 Hexo 建站。
Stars: ✭ 314 (+302.56%)
Mutual labels:  static-site-generator, hexo
picidaejs
🐦Picidae is a document generator which has gentle experience.
Stars: ✭ 24 (-69.23%)
Mutual labels:  static-site-generator, hexo
Hexo Theme Anodyne
🌋 Original Bright Theme for Hexo
Stars: ✭ 140 (+79.49%)
Mutual labels:  static-site-generator, hexo
TechFusionFM
Static site for tech podcast built using Hexo.io with deployment script, XML escaper and iTunes rank tracking Telegram bot.
Stars: ✭ 20 (-74.36%)
Mutual labels:  static-site-generator, hexo
Hexo Theme Clean Blog
Hexo implementation of Clean Blog http://blackrockdigital.github.io/startbootstrap-clean-blog/index.html
Stars: ✭ 362 (+364.1%)
Mutual labels:  static-site-generator, hexo
Awesome Docs With Static Site Generators
Pointers to all templates and implementations based on static site generators
Stars: ✭ 44 (-43.59%)
Mutual labels:  static-site-generator, hexo
Hexo Theme Argon
Argon-Theme 的 Hexo 移植版
Stars: ✭ 64 (-17.95%)
Mutual labels:  hexo
Jekyll Vue Template
A starter template for Jekyll projects with Vue.js and Vue Single File Components, complete with webpack.
Stars: ✭ 65 (-16.67%)
Mutual labels:  static-site-generator
Hexo Filter Github Emojis
github emojis for hexo! 🎉
Stars: ✭ 71 (-8.97%)
Mutual labels:  hexo
Flybook
✈️ FlyBook is a simple utility to generate static website such as gh-pages, manual of you projects
Stars: ✭ 76 (-2.56%)
Mutual labels:  static-site-generator
Makebakery
A static website generator built on GNU Make.
Stars: ✭ 64 (-17.95%)
Mutual labels:  static-site-generator
Hexo Theme Archer
🏹 A smart and modern theme for Hexo.
Stars: ✭ 1,163 (+1391.03%)
Mutual labels:  hexo
Hugofy Sublime
Hugo plugin for Sublime Text 3
Stars: ✭ 64 (-17.95%)
Mutual labels:  static-site-generator
Cactus
🌵A composable static site generator
Stars: ✭ 63 (-19.23%)
Mutual labels:  static-site-generator
Hexo Theme Hueman
A redesign of Alx's wordpress theme Hueman, ported to Hexo.
Stars: ✭ 1,119 (+1334.62%)
Mutual labels:  hexo
Tumblelog
A static tumblelog generator available as both a Perl and Python version
Stars: ✭ 77 (-1.28%)
Mutual labels:  static-site-generator

MeiliDu

Project Status: Active - The project has reached a stable, usable state and is being actively developed.

a beautiful read

A simple, text focused theme for Hexo. Bringing your readers attention to what is most import: your posts.
Check out the Demo

MeiliDu responsive showcase.

Get started

❗️ Make sure your Node version is 6.x or above as the theme uses some ES6 syntax. ❗️

  1. Get the latest release, simply download the file meilidu.zip. (see below for cloning)
  2. Unpack it into your themes folder. (You should now have a folder in your themes folder named "meilidu" which should not contain a folder named "meilidu")
  3. Change your _config.yml: theme: meilidu

Alternative: clone

You can also manage the theme as a subproject of your website. Simply run the following in the root directory of your project. After that change the theme property in your projects _config.yml.

git clone https://github.com/HoverBaum/meilidu-hexo.git themes/meilidu

Get help and involved

Below is a documentation of all features and how to use them as well as some good to know points. If you have any further questions or suggestions please open an issue.

The issues are open to anyone looking for help or wishing to make a suggestion to improve the theme.

Features

We have a few features you can configure and some that need to be enabled first. Check out the Demo to see them all in action.

Widgets

Add an array of all widgets you want to display in the footer in MeiliDus _config.yml. These should be the names of files in the layout/_widgets folder. A widget should always be wrapped in an footer__element, like such:

<div class="footer__element">
	<p>Hi there, <br />welcome to my Blog glad you found it. Have a look around, will you?</p>
</div>

Read more

You can change the text of "read more" links by setting the readMore option in MeiliDus _config.yml.

readMore: ...read more

RSS

You can set the link to you RSS feed in MeiliDus _config.yml.

rss: /atom.xml

You also need to install the feed generator for this to work.

npm install hexo-generator-feed --save

Make sure to use the --save option and run this in the root folder of your repository as it won't work otherwise.

Tags page

To activate the tags page create a source/tags/index.md with the following content.

title: "Tags"
layout: "tags"
---

Categories page

Activating the categories page is similar to tags, create a source/categories/index.md with the following content.

title: "Categories"
layout: "categories"
---

About page

Like any other page create a folder with the name of the page and an index.md file in it to have an about page. The most basic about page in source/about/index.md might look like this.

title: About
layout: page
---

This is a page about pages. It is the mother of all pages and pageception.

Archives

If you archive is only showing the current years posts try adding the following yml to your sites _config.yml (not the one in meilidus folder).

archive_generator:
  per_page: 0

Header

It can have any size really. It will always fill half of the screens height when the user first arrives on the page. Simply replace meilidu/source/img/header.jpg with your own file.

The default header is from unspalsh, a picture by Alberto Restifo.

Top menu

To customize the menu at the top of the page simply change MeiliDus _config.yml and add your links to the menu object. Remove everything from it to hide the top menu.

Good to know

Absolute URLs

Hexo itself and the MeiliDu theme use a lot of absolute URLs (those starting with /something). Due to this you can only run your blog on a domain or subdomain but not as something like domain.com/blog/. To run a blog on GitHub check out User pages in the GitHub documentation.

Using GitHub to host

You can host websites for free on GitHub. The Demo for MeiliDu is a great example of this. I use Travis to automate the generation of static files whenever we push to the master branch. Check out this travis config file, it comes with explanation on how to use it. Personally I found it easiest to have a repo that contains the blog (this one) and one that is only there to get the page going. Travis then gets the current version, generates all files and pushes to the website repo.

Why an Apple showcase???

Because two minutes of googleing found this PSD showcase so that is what I went with.

Blogs using MeiliDu

You are using MeiliDu for your blog? That is awesome! Let us know about it with a pull request and be featured here as an example for people to see how MeiliDu looks in the wild.

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].