Skip to content

Latest commit

 

History

History
160 lines (106 loc) · 5.34 KB

2016-03-21-moon-theme.md

File metadata and controls

160 lines (106 loc) · 5.34 KB
layout title date excerpt project tag comments
post
Moon Jekyll Theme
2016-04-06
Minimal, one column Jekyll theme for your blog.
true
jekyll
moon
blog
about
theme
true

Moon Homepage

Moon is a minimal, one column jekyll theme.

I'm not a developer or designer. And I don't add footer to show who did this theme. If you like this theme or using it, please give a star for motivation, It makes me happy.

<iframe src="https://ghbtns.com/github-btn.html?user=TaylanTatli&repo=Moon&type=star&count=true&size=large" frameborder="0" scrolling="0" width="160px" height="30px"></iframe>

Installation

  • Fork the Moon repo
  • Edit _config.yml file.
  • Remove sample posts from _posts folder and add yours.
  • Edit index.md file in about folder.
  • Change repo name to YourUserName.github.io

That's all.

Preview

{% capture images %} https://cloud.githubusercontent.com/assets/754514/14509716/61ac6c8e-01d6-11e6-879f-8308883de790.png https://cloud.githubusercontent.com/assets/754514/14509717/61ad05ae-01d6-11e6-85ae-5a817dd8763b.png https://cloud.githubusercontent.com/assets/754514/14509714/61a89708-01d6-11e6-8fcd-74b002a060df.png {% endcapture %} {% include gallery images=images caption="Screenshots of Moon Theme" cols=3 %}


{% capture images %} https://cloud.githubusercontent.com/assets/754514/14509718/61b09a20-01d6-11e6-8da1-4202ae4d83cd.png https://cloud.githubusercontent.com/assets/754514/14509715/61aa9d00-01d6-11e6-81a6-c6837edf2e84.png {% endcapture %} {% include gallery images=images caption="Moon Theme on Small Screen Size" cols=2 %}

See a live version of Moon hosted on GitHub.

Site Setup

A quick checklist of the files you’ll want to edit to get up and running.

Site Wide Configuration

_config.yml is your friend. Open it up and personalize it. Most variables are self explanatory but here's an explanation of each if needed:

title

The title of your site... shocker!

Example title: My Awesome Site

bio

The description to show on your homepage.

description

The description to use for meta tags and navigation menu.

url

Used to generate absolute urls in sitemap.xml, feed.xml, and for generating canonical URLs in <head>. When developing locally either comment this out or use something like http://localhost:4000 so all assets load properly. Don't include a trailing /.

Examples:

{% highlight yaml %} url: http://taylantatli.me/Moon url: http://localhost:4000 url: //cooldude.github.io url: {% endhighlight %}

reading_time

Set true to show reading time for posts. And set words_per_minute, default is 200.

logo

Your site's logo. It will show on homepage and navigation menu. Also used for twitter meta tags.

background

Image for background. If you don't set it, color will be used as a background.

Google Analytics and Webmaster Tools

Google Analytics UA and Webmaster Tool verification tags can be entered in _config.yml. For more information on obtaining these meta tags check Google Webmaster Tools and Bing Webmaster Tools support.

MathJax

It's enabled. But if you don't want to use it. Set it false in _config.yml.

Disqus Comments

Set your disqus shortname in _config.yml to use comments.


Navigation Links

To set what links appear in the top navigation edit _data/navigation.yml. Use the following format to set the URL and title for as many links as you'd like. External links will open in a new window.

{% highlight yaml %}

  • title: Home url: /

  • title: Blog url: /blog/

  • title: Projects url: /projects/

  • title: About url: /about/

  • title: Moon url: http://taylantatli.me/Moon {% endhighlight %}


Layouts and Content

Moon Theme use Jekyll Compress to compress html output. But it can cause errors if you use "linenos" (line numbers). I suggest don't use line numbers for codes, because it won't look good with this theme, also i didn't give a proper style for them. If you insist to use line numbers, just remove layout: compress string from layouts. It will disable compressing.

Feature Image

You can set feature image per post. Just add feature: some link to your post's front matter.

feature: /assets/img/some-image.png
or
feaure: http://example.com/some-image.png

This also will be used for twitter card:

Moon Twitter Card

Comments

To show disqus comments for your post add comments: true to your post's front matter.


Questions?

Found a bug or aren't quite sure how something works? By all means file a GitHub Issue. And if you make something cool with this theme feel free to let me know.


License

This theme is free and open source software, distributed under the MIT License. So feel free to use this Jekyll theme on your site without linking back to me or including a disclaimer.