{"id":20630709,"url":"https://github.com/sysgears/grain-theme-octopress","last_synced_at":"2025-04-15T18:23:56.413Z","repository":{"id":12008383,"uuid":"14588950","full_name":"sysgears/grain-theme-octopress","owner":"sysgears","description":"Octopress Grain Theme","archived":false,"fork":false,"pushed_at":"2017-12-23T03:12:26.000Z","size":485,"stargazers_count":13,"open_issues_count":0,"forks_count":14,"subscribers_count":26,"default_branch":"master","last_synced_at":"2025-03-28T23:21:59.885Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"CSS","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/sysgears.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2013-11-21T13:58:15.000Z","updated_at":"2020-03-31T19:02:23.000Z","dependencies_parsed_at":"2022-08-30T17:20:39.401Z","dependency_job_id":null,"html_url":"https://github.com/sysgears/grain-theme-octopress","commit_stats":null,"previous_names":[],"tags_count":11,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sysgears%2Fgrain-theme-octopress","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sysgears%2Fgrain-theme-octopress/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sysgears%2Fgrain-theme-octopress/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sysgears%2Fgrain-theme-octopress/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sysgears","download_url":"https://codeload.github.com/sysgears/grain-theme-octopress/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":249126968,"owners_count":21216897,"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":[],"created_at":"2024-11-16T14:09:20.376Z","updated_at":"2025-04-15T18:23:56.381Z","avatar_url":"https://github.com/sysgears.png","language":"CSS","funding_links":[],"categories":[],"sub_categories":[],"readme":"![Banner](https://raw.githubusercontent.com/sysgears/grain-theme-octopress/master/banner.jpg)\n\nOctopress Grain Theme\n=====================\n\n[![Twitter Follow](https://img.shields.io/twitter/follow/sysgears.svg?style=social)](https://twitter.com/sysgears)\n\nThis is a port of Octopress blogging theme for Grain framework.\n\nFeatures\n========\n\nOctopress theme out of the box provides all the necessary features and tools to instantly start blogging,\nimplement custom pages and organize posts. Moreover, it offers the same site structure as original Octoperess to\nensure simple and painless migration.\n\nThe latest version of the theme comes with:\n\n  - integration with social networks: Facebook, Twitter, Google+, GitHub, etc.\n  - various content formatting tools to easily customize blog content\n  - built-in atom news feed\n\nCommands\n--------\n\nThe theme ships with a few handy commands that allow to create new pages and posts:\n\n``` sh:nl\n./grainw create-page \"/portfolio\" \"Portfolio\" # adds 'Portfolio' page to a blog\n```\n\n``` sh:nl\n./grainw create-post \"Post Sample\" # adds new post 'Post Sample'\n```\n\nCustomization\n-------------\n\nTheme configuration settings allow to change a blog name, meta information, the number of posts per page,\nset sharing options and rearrange sidebar sections.\n\nAt this time, the theme ships with the next sidebar modules:\n\n  - **recent_posts** - shows the latest posts\n  - **tweets** - shows the most recent tweets\n  - **github** - displays links to GitHub repositories\n  - **pinboard** and **delicious** - show recent Pinboard and Delicious bookmarks\n  - **google_plus**, **facebook**, **twitter** and **instagram** - render links to social networks\n\nTag Library\n-----------\n\nTheme's tag library provides content formatting features similar to Octopress [plugins][plugins].\n\nCurrently, the following tags are available to use:\n\n  - **blockquote** - renders a block quote with quote text, author and source\n  - **pullquote** - renders a *HTML5 + CSS* pull quote\n  - **img** - embeds an image into a page\n  - **gist** - downloads and embeds a GitHub gist\n  - **video** - embeds a HTML5 video encoded as *mp4*, *ogv* or *webm*\n\n[plugins]: http://octopress.org/docs/plugins/\n\nContributing\n============\n\nAny person or company wanting to contribute to this project should follow\nthe following rules in order to their contribution being accepted.\n\nSign your Work\n--------------\n\nWe require that all contributors \"sign-off\" on their commits.  This\ncertifies that the contribution is your original work, or you have rights to\nsubmit it under the same license, or a compatible license.\n\nAny contribution which contains commits that are not Signed-Off will not be\naccepted.\n\nTo sign off on a commit you simply use the `--signoff` (or `-s`) option when\ncommitting your changes:\n\n    $ git commit -s -m \"Adding a new widget driver for cogs.\"\n\nThis will append the following to your commit message:\n\n    Signed-off-by: Your Name \u003cyour@email.com\u003e\n\nBy doing this you certify the below:\n\n    Developer's Certificate of Origin 1.1\n\nIf you wish to add the signoff to the commit message on your every commit\nwithout the need to specify -s or --signoff, rename\n.git/hooks/commit-msg.sample to .git/hooks/commit-msg and uncomment the lines:\n\n``` sh\nSOB=$(git var GIT_AUTHOR_IDENT | sed -n 's/^\\(.*\u003e\\).*$/Signed-off-by: \\1/p')\ngrep -qs \"^$SOB\" \"$1\" || echo \"$SOB\" \u003e\u003e \"$1\"\n```\n\nDeveloper's Certificate of Origin\n---------------------------------\n\nTo help track the author of a patch as well as the submission chain,\nand be clear that the developer has authority to submit a patch for\ninclusion into this project please sign off your work.  The sign off\ncertifies the following:\n\n    Developer's Certificate of Origin 1.1\n\n    By making a contribution to this project, I certify that:\n\n    (a) The contribution was created in whole or in part by me and I\n        have the right to submit it under the open source license\n        indicated in the file; or\n\n    (b) The contribution is based upon previous work that, to the best\n        of my knowledge, is covered under an appropriate open source\n        license and I have the right under that license to submit that\n        work with modifications, whether created in whole or in part\n        by me, under the same open source license (unless I am\n        permitted to submit under a different license), as indicated\n        in the file; or\n\n    (c) The contribution was provided directly to me by some other\n        person who certified (a), (b) or (c) and I have not modified\n        it.\n\n    (d) I understand and agree that this project and the contribution\n        are public and that a record of the contribution (including all\n        personal information I submit with it, including my sign-off) is\n        maintained indefinitely and may be redistributed consistent with\n        this project or the open source license(s) involved.\n\n    (e) I hereby grant to the project, SysGears, LLC and its successors; \n        and recipients of software distributed by the Project a perpetual,\n        worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n        copyright license to reproduce, modify, prepare derivative works of,\n        publicly display, publicly perform, sublicense, and distribute this\n        contribution and such modifications and derivative works consistent\n        with this Project, the open source license indicated in the previous\n        work or other appropriate open source license specified by the Project\n        and approved by the Open Source Initiative(OSI)\n        at http://www.opensource.org.\n\nLicense\n=======\n\nGrain Octopress theme is licensed under the terms of the\n[MIT License][MIT License].\n\n[MIT License]: https://github.com/sysgears/grain-theme-octopress/blob/master/LICENSE\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsysgears%2Fgrain-theme-octopress","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsysgears%2Fgrain-theme-octopress","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsysgears%2Fgrain-theme-octopress/lists"}