{"id":14068332,"url":"https://github.com/ColinFay/skeleton","last_synced_at":"2025-07-30T03:32:45.367Z","repository":{"id":134242273,"uuid":"151732941","full_name":"ColinFay/skeleton","owner":"ColinFay","description":"Skeleton CSS for Shiny","archived":false,"fork":false,"pushed_at":"2023-04-20T10:29:05.000Z","size":66,"stargazers_count":9,"open_issues_count":0,"forks_count":3,"subscribers_count":6,"default_branch":"master","last_synced_at":"2024-08-13T07:14:38.435Z","etag":null,"topics":["golemverse","r","shiny"],"latest_commit_sha":null,"homepage":"","language":"R","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ColinFay.png","metadata":{"files":{"readme":"README.Rmd","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}},"created_at":"2018-10-05T14:28:12.000Z","updated_at":"2023-10-03T21:17:37.000Z","dependencies_parsed_at":null,"dependency_job_id":"fd208ea5-7ac5-4f31-b749-15f8ca7edf1d","html_url":"https://github.com/ColinFay/skeleton","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ColinFay/skeleton","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ColinFay%2Fskeleton","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ColinFay%2Fskeleton/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ColinFay%2Fskeleton/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ColinFay%2Fskeleton/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ColinFay","download_url":"https://codeload.github.com/ColinFay/skeleton/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ColinFay%2Fskeleton/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267803984,"owners_count":24146527,"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-07-30T02:00:09.044Z","response_time":70,"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":["golemverse","r","shiny"],"created_at":"2024-08-13T07:06:06.158Z","updated_at":"2025-07-30T03:32:44.969Z","avatar_url":"https://github.com/ColinFay.png","language":"R","readme":"---\noutput: github_document\n---\n\n\u003c!-- README.md is generated from README.Rmd. Please edit that file --\u003e\n\n```{r, include = FALSE}\nknitr::opts_chunk$set(\n  collapse = TRUE,\n  comment = \"#\u003e\",\n  fig.path = \"man/figures/README-\",\n  out.width = \"100%\"\n)\n```\n\n# skeleton\n\n\u003c!-- badges: start --\u003e\n[![R-CMD-check](https://github.com/ColinFay/skeleton/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/ColinFay/skeleton/actions/workflows/R-CMD-check.yaml)\n\u003c!-- badges: end --\u003e\n\nThe goal of skeleton is to provide [Skeleton CSS](http://getskeleton.com/) for `{shiny}`.\n\n## Installation\n\nYou can install the development version of `{skeleton}` from [GitHub](https://github.com/) with:\n\n``` r\n# install.packages(\"devtools\")\ndevtools::install_github(\"ColinFay/skeleton\")\n```\n# skeleton\n\n## About\n\nYou're reading the doc about version : `r pkgload::pkg_version()`\n\nThis README has been compiled on the\n\n```{r}\nSys.time()\n```\n\nHere are the test \u0026 coverage results :\n\n```{r}\ndevtools::check(quiet = TRUE)\n```\n\n\n\n```{r eval = TRUE, message = TRUE}\ncovr::package_coverage()\n```\n\n# Example\n\n## Basic app\n```{r eval = FALSE}\nlibrary(shiny)\nlibrary(skeleton)\n\nui \u003c- sk_page(\n  h1(\"Hello world\"),\n  sk_row(\n    sk_col(6, \"Hello\"),\n    sk_col(6, \"World\")\n  ),\n  sk_row(\n    plotOutput(\"plot1\")\n  )\n)\n\nserver \u003c- function(input, output) {\n  output$plot1 \u003c- renderPlot({\n    plot(mtcars)\n  })\n}\n\nshinyApp(ui, server)\n```\n\n## Built-in dashboard\n\n```{r eval = FALSE}\nlibrary(shiny)\nlibrary(skeleton)\nui \u003c- sk_page(\n  sk_header(\n    h2(\"A dead simple, responsive boilerplate.\"),\n  ),\n  sk_nav(\n    sk_nav_item(\n      id = \"one\",\n      title = \"ONE\",\n      ui = sk_row(\n        sk_col(\n          6,\n          \"Hello plot1\"\n        ),\n        sk_col(\n          6,\n          plotOutput(\"plot1\")\n        )\n      )\n    ),\n    sk_nav_item(\n      id = \"two\",\n      title = \"TWO\",\n      ui = sk_row(\n        sk_col(\n          6,\n          plotOutput(\"plot2\")\n        ),\n        sk_col(\n          6,\n          \"Hello plot2\"\n        ),\n      )\n    ),\n    sk_nav_item(\n      id = \"three\",\n      title = \"THREE\",\n      ui = sk_row(\n        sk_col(\n          6,\n          plotOutput(\"plot3\")\n        ),\n        sk_col(\n          6,\n          \"Hello plot3\"\n        ),\n      )\n    )\n  )\n)\nshinyApp(ui, function(input, output) {\n  output$plot1 \u003c- renderPlot({\n    plot(mtcars)\n  })\n  output$plot2 \u003c- renderPlot({\n    plot(airquality)\n  })\n  output$plot3 \u003c- renderPlot({\n    plot(pressure)\n  })\n})\n```\n\n## With golem\n\nYou can get a boilerplate of a page or a dashboard when creating an app with golem, using the built-in golem hooks:\n\n```{r eval = FALSE}\ngolem::create_golem(\n  \"skboilerplate\",\n  project_hook = skeleton::ghook_sk_dashboard\n)\ngolem::create_golem(\n  \"skdashboard\",\n  project_hook = skeleton::ghook_sk_boilerplate\n)\n```\n\n\n\n","funding_links":[],"categories":["R"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FColinFay%2Fskeleton","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FColinFay%2Fskeleton","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FColinFay%2Fskeleton/lists"}