Welcome to AzerothJS!
Welcome! AzerothJS is an open source blog engine running on static file servers such as Github Pages or any web hosting.

What make AzerothJS cool?
- Super lightweight
- No installation needed
- No server side code
- Made for Github Pages
- Easy to customization
Get AzerothJS here
The source code are available on Github
How to use?
Run locally
- Clone this project to your computer
- Start simple HTTP server with Python:
python -m SimpleHTTPServer 3000 - Your blog now available at http://localhost:3000
Use with Github Pages
- Create your Github Pages
- Clone the this project and push it to your Github Pages
- Every time you want to write, create a new
*.mdfile inpostsfolder and write with your favorite Markdown Editor - Modify
posts/home.md, list your posts here - Commit and push everything here. Done!
Use with other web host
- Clone this project to your computer
- Create a new post in
*.mdformat and save topostsfolder - Upload the everything to your web host
- Done
How to customize?
Change code highlighting theme
The original theme for the code highlighting is Tomorrow Night. If you don't like it, there are many pre-installed themes inside css/highlight folder. Pick one and replace to line 6 of index.html:
<link rel="stylesheet" href="./css/highlight/tomorrow-night.css">
Change the font family
The original font for the blog is Roboto Slab. You can change the new font by replacing line 4 of index.html:
<link href='https://fonts.googleapis.com/css?family=Roboto+Slab:400,300&subset=latin,vietnamese' rel='stylesheet' type='text/css'>
And change the font in css/theme.css:
* {
font-family: 'Roboto Slab', serif;
font-size: 20px;
font-weight: 100;
}
Insert your Social links
There are some social icon links in footer, put your own one by edit the index.html:
<div class="footer">
<p>Created with <a href="http://github.com/huytd/azeroth-js">azeroth.js</a></p>
<div class="social">
<a href="#"><i class="icon-facebook-squared"></i></a>
<a href="#"><i class="icon-twitter-squared"></i></a>
<a href="#"><i class="icon-linkedin-squared"></i></a>
<a href="#"><i class="icon-github-squared"></i></a>
<a href="#"><i class="icon-mail-alt"></i></a>
</div>
</div>