GitXplorerGitXplorer
e

eugenesimakin.github.io

public
0 stars
0 forks
0 issues

Commits

List of commits on branch master.
Verified
43ca7999e33f7388cc4f9e52debb31d34992057c

Merge pull request #9 from eugenesimakin/dependabot/bundler/rexml-3.3.9

eeugenesimakin committed 3 months ago
Verified
e5ba4c4f5801883c007ee5ac89dd4ad851ec225d

Bump rexml from 3.2.8 to 3.3.9

ddependabot[bot] committed 3 months ago
Verified
b6d73dd0d9eebac50e1919cf25983e56407a7fab

Merge pull request #7 from eugenesimakin/dependabot/bundler/rexml-3.2.8

eeugenesimakin committed 8 months ago
Verified
5cb12ea04b8e17474ac202b4a4f2990313acdb61

Bump rexml from 3.2.5 to 3.2.8

ddependabot[bot] committed 8 months ago
Verified
5b970de3948bfb08582f279e4fc43cf6752d4184

Merge pull request #6 from eugenesimakin/dependabot/bundler/addressable-2.8.0

eeugenesimakin committed 4 years ago
Verified
09d36d81be22ea9efa0031dda1b1ef3c35c977db

Bump addressable from 2.7.0 to 2.8.0

ddependabot[bot] committed 4 years ago

README

The README file for this repository.

Tale

Gem Version

Tale is a minimal Jekyll theme curated for storytellers. Checkout the demo here.

Tale screenshot

Features

  • Easy installation
  • Compatible with GitHub Pages
  • Responsive design (looks just as good on mobile)
  • Syntax highlighting, with the help of Pygments
  • Markdown and HTML text formatting
  • Pagination of posts
  • Disqus comments (can be enabled if needed)

Installation

There are 3 ways to install this theme

  1. Install it as a Ruby Gem (for self-hosted sites)
  2. Install it with the jekyll-remote-theme plugin (for GitHub Pages hosted sites)
  3. Fork the project directly

Ruby Gem method

  1. Add this line to your Gemfile:
gem "tale"
  1. Install the theme's gems and dependencies:
$ bundle
  1. In _config.yml add these lines:
theme:      tale

permalink:  /:year-:month-:day/:title
paginate:   5

Remove any other theme: lines.

  1. Rename index.md to index.html. Without this, the jekyll-paginate gem will not work.

  2. In about.md, change the layout: field to post:

layout: post

GitHub Pages method

  1. Add these 2 lines in to your Gemfile:
gem "jekyll-remote-theme"
gem "jekyll-paginate"
  1. Install the newly added gems:
$ bundle
  1. In _config.yml add these lines:
remote_theme: chesterhow/tale

permalink:    /:year-:month-:day/:title
paginate:     5

plugins:
  - jekyll-paginate
  - jekyll-remote-theme

Remove any other theme: or remote_theme: lines.

  1. Rename index.md to index.html. Without this, the jekyll-paginate gem will not work.

  2. In about.md, change the layout: field to post:

layout: post

Fork method

  1. Fork this repository

  2. Delete the unnecessary files/folders: CODE_OF_CONDUCT.md, LICENSE, README.md, tale.gemspec

  3. Delete the baseurl line in _config.yml:

baseurl:  "/tale"   # delete this line

Usage

Once you've installed the theme, you're ready to work on your Jekyll site. To start off, I would recommend updating _config.yml with your site's details.

To build and serve your site, run:

$ bundle exec jekyll serve

And you're all set! Head over to http://127.0.0.1:4000/ to see your site in action.

Enabling Comments

Comments are disabled by default. To enable them, look for the following line in _config.yml and change jekyll-tale to your site's Disqus id.

disqus: jekyll-tale

Next, add comments: true to the YAML front matter of the posts which you would like to enable comments for.

Contributing

Found a bug or have a suggestion? Feel free to create an issue or make a pull request!

License

See LICENSE