{"id":16439468,"url":"https://github.com/devjin0617/jin-calendar-javascript-bootstrap","last_synced_at":"2025-06-20T08:07:44.561Z","repository":{"id":17758167,"uuid":"20613402","full_name":"devjin0617/jin-calendar-javascript-bootstrap","owner":"devjin0617","description":"jin-calendar is html calendar source","archived":false,"fork":false,"pushed_at":"2017-03-22T01:53:43.000Z","size":5,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-02-25T22:31:39.487Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://devjin0617.github.io/jin-calendar-javascript-bootstrap","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"flarum/core","license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/devjin0617.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":"2014-06-08T09:12:06.000Z","updated_at":"2017-03-22T01:52:21.000Z","dependencies_parsed_at":"2022-07-26T19:32:09.903Z","dependency_job_id":null,"html_url":"https://github.com/devjin0617/jin-calendar-javascript-bootstrap","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/devjin0617/jin-calendar-javascript-bootstrap","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devjin0617%2Fjin-calendar-javascript-bootstrap","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devjin0617%2Fjin-calendar-javascript-bootstrap/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devjin0617%2Fjin-calendar-javascript-bootstrap/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devjin0617%2Fjin-calendar-javascript-bootstrap/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/devjin0617","download_url":"https://codeload.github.com/devjin0617/jin-calendar-javascript-bootstrap/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devjin0617%2Fjin-calendar-javascript-bootstrap/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":260907159,"owners_count":23080612,"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-10-11T09:09:23.526Z","updated_at":"2025-06-20T08:07:39.538Z","avatar_url":"https://github.com/devjin0617.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"jin-calendar-javascript-bootstrap\n=================================\n\njin-calendar is simeple source of html calendar\n\n\n## how to use\n\n1. import css\u0026javascript to jquery, bootstrap and jin-calendar library\n\n```\n  \u003clink rel=\"stylesheet\" href=\"http://getbootstrap.com/dist/css/bootstrap.min.css\" \u003e\n\t\u003clink rel=\"stylesheet\" href=\"http://getbootstrap.com/assets/css/docs.min.css\"\u003e\n\t\u003clink rel=\"stylesheet\" href=\"jin.calendar.style.css\"\u003e\n\t\n\t\u003cscript src=\"http://code.jquery.com/jquery-1.11.0.min.js\"\u003e\u003c/script\u003e\n\t\u003cscript src=\"http://netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js\"\u003e\u003c/script\u003e\n\t\u003cscript src=\"jin.calendar.js\"\u003e\u003c/script\u003e\n```\n\n2. Add html code\n\n```\n  \u003cdiv class=\"div-month row\"\u003e\n\t\t\u003cdiv class=\"col-xs-3 text-right\"\u003e\n\t\t\t\u003ch4\u003e\n\t\t\t\u003cbutton id=\"btn-prev\" type=\"button\" class=\"btn btn-default\"\u003e\n\t\t\t\t\u003cspan class=\"glyphicon glyphicon-circle-arrow-left\"\u003e\u003c/span\u003e Prev\n\t\t\t\u003c/button\u003e\n\t\t\t\u003c/h4\u003e\n\t\t\u003c/div\u003e\n\t\t\n\t\t\u003cdiv class=\"col-xs-6\"\u003e\n\t\t\t\u003ch4 class=\"h4-month text-center\"\u003e\u003c/h4\u003e\n\t\t\u003c/div\u003e\n\t\t\n\t\t\u003cdiv class=\"col-xs-3 text-left\"\u003e\n\t\t\t\u003ch4\u003e\n\t\t\t\u003cbutton id=\"btn-next\" type=\"button\" class=\"btn btn-default\"\u003e\n\t\t\t\tNext \u003cspan class=\"glyphicon glyphicon-circle-arrow-right\"\u003e\u003c/span\u003e\n\t\t\t\u003c/button\u003e\n\t\t\t\u003c/h4\u003e\n\t\t\u003c/div\u003e\n\t\u003c/div\u003e\n\n\t\u003cdiv class=\"div-main\"\u003e\n\t\t\u003cdiv class=\"div-calendar row\"\u003e\n\t\t\t\u003cdiv class=\"div-init col-sm-12\"\u003e\u003c/div\u003e\n\t\t\u003c/div\u003e\n\t\u003c/div\u003e\n```\n\n3. init with jinCalendar\n\n```\n  \u003cscript\u003e\n    $(document).ready(function() {\n      jinCalendar.init();\n    });\n  \u003c/script\u003e\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevjin0617%2Fjin-calendar-javascript-bootstrap","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdevjin0617%2Fjin-calendar-javascript-bootstrap","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevjin0617%2Fjin-calendar-javascript-bootstrap/lists"}