{"id":18434746,"url":"https://github.com/assemble/assemble-boilerplate-site","last_synced_at":"2026-03-11T07:32:07.680Z","repository":{"id":8028832,"uuid":"9438253","full_name":"assemble/assemble-boilerplate-site","owner":"assemble","description":"Demonstrates how to use Assemble to build a site. Includes layouts, pages, partials, and markdown content.","archived":false,"fork":false,"pushed_at":"2014-05-06T15:42:50.000Z","size":472,"stargazers_count":46,"open_issues_count":2,"forks_count":16,"subscribers_count":14,"default_branch":"master","last_synced_at":"2025-04-07T19:40:01.682Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"http://assemble.github.io/boilerplate-site/","language":"JavaScript","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/assemble.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE-MIT","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2013-04-15T01:09:50.000Z","updated_at":"2023-08-18T21:39:38.000Z","dependencies_parsed_at":"2022-09-05T22:41:30.219Z","dependency_job_id":null,"html_url":"https://github.com/assemble/assemble-boilerplate-site","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/assemble/assemble-boilerplate-site","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/assemble%2Fassemble-boilerplate-site","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/assemble%2Fassemble-boilerplate-site/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/assemble%2Fassemble-boilerplate-site/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/assemble%2Fassemble-boilerplate-site/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/assemble","download_url":"https://codeload.github.com/assemble/assemble-boilerplate-site/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/assemble%2Fassemble-boilerplate-site/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30374256,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-11T06:09:32.197Z","status":"ssl_error","status_checked_at":"2026-03-11T06:09:17.086Z","response_time":84,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":[],"created_at":"2024-11-06T06:05:11.771Z","updated_at":"2026-03-11T07:32:07.664Z","avatar_url":"https://github.com/assemble.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# boilerplate-site  [![Build Status](https://travis-ci.org/assemble/boilerplate-site.png)](https://travis-ci.org/assemble/boilerplate-site) \n\n\u003e Boilerplate for generating a basic static site with Assemble.\n\n### NOTICE: THIS BOILERPLATE IS BEING REFACTORED\n\nYou may find outdated information or examples in this project. While we're refactoring, you might be more interested in [boilerplate-bootstrap](http://github.com/assemble/boilerplate-bootstrap) in the meantime.\n\n## Getting Started\n\n* **[Download this project][download]** and unzip it into a new folder.\n* In the project folder, run `npm install` to install [Assemble][assemble], [Grunt](http://gruntjs.com/) and any other dependencies.\n* Once the dependencies are installed you may run `grunt assemble` to build the example project.\n\nIf you haven't used [Grunt](http://gruntjs.com/) before, be sure to check out the [Getting Started](http://gruntjs.com/getting-started) guide, as it explains how to create a [Gruntfile][gruntfile], as well as install and use Grunt plugins.\n\n\n## The \"assemble\" task\n\n### Overview\nIn the project's Gruntfile, the example `assemble` task is pre-loaded with paths and options following standard Grunt.js conventions:\n\n```js\ngrunt.initConfig({\n  // The \"assemble\" task\n  assemble: {\n    // Task-level options.\n    options: {\n      flatten: true,\n      assets: 'dist/assets',\n      layout: 'templates/layouts/default.hbs',\n      partials: 'templates/partials/*.hbs',\n      data: 'src/data/*.{json,yml}'\n    },\n    // Templates to build into pages\n    pages: {\n      files: {\n        'dist/': ['templates/pages/*.hbs']\n      }\n    }\n  }\n})\n```\n\n## Boilerplate Author\n\n\n**Jon Schlinkert**\n\n+ [github/jonschlinkert](https://github.com/jonschlinkert)\n+ [twitter/jonschlinkert](http://twitter.com/jonschlinkert)\n\n## Contributing\nIn lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Use [Assemble][assemble] to build and maintain your gh-pages, blog or documentation. Lint and test your code using [Grunt](http://gruntjs.com/).\n\n\n\n[download]: https://github.com/assemble/boilerplate-site/archive/master.zip\n[assemble]: https://github.com/assemble/assemble/\n[boilerplate-site]: https://github.com/assemble/boilerplate-site\n\n[wiki]: https://github.com/assemble/assemble/wiki\n[layouts]: https://github.com/assemble/assemble/wiki/layouts\n[partials]: https://github.com/assemble/assemble/wiki/partials\n[data]: https://github.com/assemble/assemble/wiki/data\n\n[gruntfile]: http://gruntjs.com/sample-gruntfile\n[configuring tasks]: http://gruntjs.com/configuring-tasks\n[tasks-and-targets]: http://gruntjs.com/configuring-tasks#task-configuration-and-targets\n[files-object]: http://gruntjs.com/configuring-tasks#building-the-files-object-dynamically\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fassemble%2Fassemble-boilerplate-site","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fassemble%2Fassemble-boilerplate-site","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fassemble%2Fassemble-boilerplate-site/lists"}