{"id":18672680,"url":"https://github.com/dimmaryanto93/blogs","last_synced_at":"2026-05-01T06:33:59.956Z","repository":{"id":107984711,"uuid":"86509132","full_name":"dimMaryanto93/blogs","owner":"dimMaryanto93","description":"Blog: Dimas Maryanto","archived":false,"fork":false,"pushed_at":"2017-11-04T06:46:25.000Z","size":14588,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-05-18T10:06:28.735Z","etag":null,"topics":["devicons","jekyll","materializecss","octopress","openshift"],"latest_commit_sha":null,"homepage":"http://www.dimas-maryanto.com/blogs/","language":"JavaScript","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dimMaryanto93.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2017-03-28T21:30:49.000Z","updated_at":"2018-03-20T13:38:10.000Z","dependencies_parsed_at":null,"dependency_job_id":"b80c1abc-5e3c-49a7-aa38-77014c28caf8","html_url":"https://github.com/dimMaryanto93/blogs","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/dimMaryanto93/blogs","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dimMaryanto93%2Fblogs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dimMaryanto93%2Fblogs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dimMaryanto93%2Fblogs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dimMaryanto93%2Fblogs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dimMaryanto93","download_url":"https://codeload.github.com/dimMaryanto93/blogs/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dimMaryanto93%2Fblogs/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32487566,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-30T13:12:12.517Z","status":"online","status_checked_at":"2026-05-01T02:00:05.856Z","response_time":64,"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":["devicons","jekyll","materializecss","octopress","openshift"],"created_at":"2024-11-07T09:12:44.151Z","updated_at":"2026-05-01T06:33:59.951Z","avatar_url":"https://github.com/dimMaryanto93.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Jekyll Template (Membuat blog dengan mudah)\n\n## Install Ruby\n\nPertama anda harus install ruby di mesin anda installasinya bisa dilihat [di sini](https://www.ruby-lang.org/id/downloads/) kemudian install ```jekyll``` dan ```octopress``` melalui ```gem```\n\n```bash\ngem install jekyll octopress\n```\n\n### Membuat post baru\n\n```bash\noctopress new post 'New post'\n```\n\noutput:\n\n```bash\nNew post: _posts/2016-04-09-new-title.markdown\n```\n\n### Membuat draft baru\n\n```bash\noctopress new draft 'new draft'\n```\n\noutput\n\n```bash\nNew draft: _drafts/new-draft.markdown\n```\n\n### Publish draft to post\n\n```bash\noctopress publish _drafts/new-draft.markdown\n```\n\noutput:\n\n```bash\nPublished: _drafts/new-draft.markdown → _posts/2016-04-09-new-draft.markdown\n```\n\n### Running local server\n\n```bash\n$ jekyll serve\n```\n\noutput:\n\n```bash\nConfiguration file: /home/dimMaryanto/workspace/dimmaryanto.github.io/_config.yml\n            Source: /home/dimMaryanto/workspace/dimmaryanto.github.io\n       Destination: /home/dimMaryanto/workspace/dimmaryanto.github.io/_site\n Incremental build: disabled. Enable with --incremental\n      Generating...\n                    done in 0.238 seconds.\n Auto-regeneration: enabled for '/home/dimMaryanto/workspace/dimmaryanto.github.io'\nConfiguration file: /home/dimMaryanto/workspace/dimmaryanto.github.io/_config.yml\n    Server address: http://127.0.0.1:4000/\n  Server running... press ctrl-c to stop.\n```\n\n### Running local server with drafts\n\n```bash\n$ jekyll serve --drafts\n```\n\noutput:\n\n```bash\nConfiguration file: /home/dimMaryanto/workspace/dimmaryanto.github.io/_config.yml\n            Source: /home/dimMaryanto/workspace/dimmaryanto.github.io\n       Destination: /home/dimMaryanto/workspace/dimmaryanto.github.io/_site\n Incremental build: disabled. Enable with --incremental\n      Generating...\n                    done in 0.238 seconds.\n Auto-regeneration: enabled for '/home/dimMaryanto/workspace/dimmaryanto.github.io'\nConfiguration file: /home/dimMaryanto/workspace/dimmaryanto.github.io/_config.yml\n    Server address: http://127.0.0.1:4000/\n  Server running... press ctrl-c to stop.\n```\n\n### Publish to github page\n\n```bash\ngit add . \u0026\u0026 git statu \u0026\u0026 git commit -m 'new post' \u0026\u0026 git push origin\n```\n\noutput:\n\n```bash\nOn branch master\nYour branch is up-to-date with 'origin/master'.\nChanges to be committed:\n  (use \"git reset HEAD \u003cfile\u003e...\" to unstage)\n\n\tmodified:   README.md\n\tnew file:   _posts/2016-04-09-new-draft.markdown\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdimmaryanto93%2Fblogs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdimmaryanto93%2Fblogs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdimmaryanto93%2Fblogs/lists"}