{"id":13567432,"url":"https://github.com/chesterhow/tale","last_synced_at":"2025-10-02T16:30:53.705Z","repository":{"id":38311045,"uuid":"84519426","full_name":"chesterhow/tale","owner":"chesterhow","description":"Minimal Jekyll theme for storytellers","archived":true,"fork":false,"pushed_at":"2022-04-04T05:43:58.000Z","size":130,"stargazers_count":972,"open_issues_count":4,"forks_count":878,"subscribers_count":16,"default_branch":"master","last_synced_at":"2025-01-16T06:32:13.909Z","etag":null,"topics":["jekyll","jekyll-theme"],"latest_commit_sha":null,"homepage":"http://chesterhow.github.io/tale","language":"SCSS","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/chesterhow.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-03-10T04:32:23.000Z","updated_at":"2025-01-15T14:19:50.000Z","dependencies_parsed_at":"2022-08-09T02:32:11.974Z","dependency_job_id":null,"html_url":"https://github.com/chesterhow/tale","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chesterhow%2Ftale","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chesterhow%2Ftale/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chesterhow%2Ftale/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chesterhow%2Ftale/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/chesterhow","download_url":"https://codeload.github.com/chesterhow/tale/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":235019331,"owners_count":18923344,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["jekyll","jekyll-theme"],"created_at":"2024-08-01T13:02:31.350Z","updated_at":"2025-10-02T16:30:53.395Z","avatar_url":"https://github.com/chesterhow.png","language":"SCSS","readme":"# Tale\n\n[![Gem Version](https://badge.fury.io/rb/tale.svg)](https://badge.fury.io/rb/tale)\n\nTale is a minimal Jekyll theme curated for storytellers. Checkout the demo [here](https://chesterhow.github.io/tale/).\n\n![Tale screenshot](http://i.imgur.com/pXZrtmo.png)\n\n## Features\n- Easy installation\n- Compatible with GitHub Pages\n- Responsive design (looks just as good on mobile)\n- Syntax highlighting, with the help of Pygments\n- Markdown and HTML text formatting\n- Pagination of posts\n- Sticky posts\n- Tags\n- Excerpt management\n- [Disqus comments (can be enabled if needed)](#enabling-comments)\n\n## Installation\nThere are 3 ways to install this theme\n\n1. Install it as a Ruby Gem (for self-hosted sites)\n2. Install it with the `jekyll-remote-theme` plugin (for GitHub Pages hosted sites)\n3. Fork the project directly\n\n### Ruby Gem method\n1. Add this line to your `Gemfile`:\n\n```ruby\ngem \"tale\"\n```\n\n2. Install the theme's gems and dependencies:\n\n```bash\n$ bundle\n```\n\n3. In `_config.yml` add these lines:\n\n```yaml\ntheme:      tale\n\npermalink:  /:year-:month-:day/:title\npaginate:   5\n```\n\nRemove any other `theme:` lines.\n\n4. Rename `index.md` to `index.html`. Without this, the `jekyll-paginate` gem will not work.\n\n5. In `about.md`, change the `layout:` field to `post`:\n\n```Markdown\nlayout: post\n```\n\n### GitHub Pages method\n1. Add these 2 lines in to your `Gemfile`:\n\n```ruby\ngem \"jekyll-remote-theme\"\ngem \"jekyll-paginate\"\n```\n\n2. Install the newly added gems:\n\n```bash\n$ bundle\n```\n\n3. In `_config.yml` add these lines:\n\n```yaml\nremote_theme: chesterhow/tale\n\npermalink:    /:year-:month-:day/:title\npaginate:     5\n\nplugins:\n  - jekyll-paginate\n  - jekyll-remote-theme\n```\n\nRemove any other `theme:` or `remote_theme:` lines.\n\n4. Rename `index.md` to `index.html`. Without this, the `jekyll-paginate` gem will not work.\n\n5. In `about.md`, change the `layout:` field to `post`:\n\n```Markdown\nlayout: post\n```\n\n### Fork method\n1. Fork this repository\n\n2. Delete the unnecessary files/folders: `CODE_OF_CONDUCT.md`, `LICENSE`, `README.md`, `tale.gemspec`\n\n3. Delete the `baseurl` line in `_config.yml`:\n\n```yaml\nbaseurl:  \"/tale\"   # delete this line\n```\n\n## Usage\nOnce 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.\n\nTo build and serve your site, run:\n\n```bash\n$ bundle exec jekyll serve\n```\n\nAnd you're all set! Head over to http://127.0.0.1:4000/ to see your site in action.\n\n### Enabling Comments\nComments 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.\n\n```yml\ndisqus: jekyll-tale\n```\n\nNext, add `comments: true` to the YAML front matter of the posts which you would like to enable comments for.\n\n## Contributing\nFound a bug or have a suggestion? Feel free to create an issue or make a pull request!\n\n## License\nSee [LICENSE](https://github.com/chesterhow/tale/blob/master/LICENSE)\n","funding_links":[],"categories":["SCSS","Tools"],"sub_categories":["Web Services"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchesterhow%2Ftale","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fchesterhow%2Ftale","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchesterhow%2Ftale/lists"}