{"id":15288516,"url":"https://github.com/awochna/jekyll-skeleton","last_synced_at":"2025-09-25T16:42:56.512Z","repository":{"id":56878851,"uuid":"78155499","full_name":"awochna/jekyll-skeleton","owner":"awochna","description":"A basic Jekyll theme based on Minima and Skeleton CSS.","archived":false,"fork":false,"pushed_at":"2019-01-28T01:45:13.000Z","size":35,"stargazers_count":16,"open_issues_count":3,"forks_count":9,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-07-27T23:39:49.766Z","etag":null,"topics":["jekyll","jekyll-theme","skeleton","skeleton-css"],"latest_commit_sha":null,"homepage":null,"language":"HTML","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/awochna.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-01-05T23:05:32.000Z","updated_at":"2024-07-21T06:15:18.000Z","dependencies_parsed_at":"2022-08-20T23:10:44.683Z","dependency_job_id":null,"html_url":"https://github.com/awochna/jekyll-skeleton","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/awochna/jekyll-skeleton","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/awochna%2Fjekyll-skeleton","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/awochna%2Fjekyll-skeleton/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/awochna%2Fjekyll-skeleton/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/awochna%2Fjekyll-skeleton/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/awochna","download_url":"https://codeload.github.com/awochna/jekyll-skeleton/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/awochna%2Fjekyll-skeleton/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":268439663,"owners_count":24250671,"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","status":"online","status_checked_at":"2025-08-02T02:00:12.353Z","response_time":74,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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","skeleton","skeleton-css"],"created_at":"2024-09-30T15:49:51.622Z","updated_at":"2025-09-25T16:42:51.463Z","avatar_url":"https://github.com/awochna.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# jekyll-skeleton #\n\n[![Gem Version](https://badge.fury.io/rb/jekyll-skeleton.svg)](https://badge.fury.io/rb/jekyll-skeleton)\n\nSuper simple implementation of [Skeleton CSS](http://getskeleton.com) as a Jekyll theme.\n\n## Why? ##\n\nI got tired of heavy CSS frameworks (Bootstrap \u0026 Foundation) being large downloads and getting in my way of customizing my blog.\nI know you can select only the components you want from each of these and throw away others, but that seemed like the opposite direction than I wanted to work from.\n\n## Installation ##\n\nAdd this line to your Jekyll site's Gemfile:\n\n```ruby\ngem \"jekyll-skeleton\"\n```\n\nAnd add this line to your Jekyll site's `_config.yml`:\n\n```yaml\ntheme: jekyll-skeleton\n```\n\nAnd then execute:\n\n    $ bundle\n\nOr install it yourself as:\n\n    $ gem install jekyll-skeleton\n\nThis will give you some simple, basic layouts (nothing fancy) and the basic CSS.\nIt's just a skeleton, after all ;)\n\nYou can add custom CSS in `assets/style.css` in your Jekyll site and it'll automatically be included.\n\n## Google Analytics ##\n\nThis theme has a google analytics helper for page views.\nAll you have to do is add something like the following to your `_config.yml`:\n\n```\ngoogle_analytics: \"UA-00000000-1\"\nanonymize_ip: true\n```\n\nUse whatever your UA code is.\nThe `anonymize_ip` option is to anonymize IP addresses when collecting tracking information.\nAnonymizing IP information means you don't track any sort of personal data.\n\n## Adding Related Posts ##\n\nTo list related posts at the end of a post, add the following line to your `_config.yaml`:\n\n    include_related_posts: true\n\nThen, the top 5 related posts will be listed.\nSee Jekyll's [docs](https://jekyllrb.com/docs/variables/#site-variables) for more information on what this means.\n\n## Enabling comments via Disqus ##\n\nIf you have a Disqus account, you can enable comments for your posts in the same way as you do for Minima, by adding the following to your `_config.yml`:\n\n```\ndisqus:\n  shortname: my_disqus_shortname\n```\n\nLike in Minima, comments are enabled by default and appear only in a production environment (`JEKYLL_ENV=production`).\n\nAdding `comments: false` to a post's YAML front matter turns off displaying comments for that post.\n\n## Privacy Policy link ##\n\nYou can provide a link to your privacy policy in the footer of your site by specifying the URL in your `_config.yml` file.\nAdd the following:\n\n```\nprivacy_policy_url: \"/your-privacy-policy-url-here\"\n```\n\n## Contributing\n\nBug reports and pull requests are welcome on GitHub at https://github.com/awochna/jekyll-skeleton. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.\n\n## Development\n\nTo set up your environment to develop this theme, run `bundle install`.\n\nThere is an example site in the `example/` folder using this theme that you can develop against.\n\n## License\n\nThe theme is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fawochna%2Fjekyll-skeleton","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fawochna%2Fjekyll-skeleton","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fawochna%2Fjekyll-skeleton/lists"}