{"id":17005257,"url":"https://github.com/adamj/prototype-template","last_synced_at":"2025-10-12T23:09:51.461Z","repository":{"id":38175882,"uuid":"135462734","full_name":"AdamJ/prototype-template","owner":"AdamJ","description":"A template for creating prototypes","archived":false,"fork":false,"pushed_at":"2022-12-02T04:29:52.000Z","size":2744,"stargazers_count":0,"open_issues_count":11,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-02-11T16:41:19.707Z","etag":null,"topics":["creating-prototypes","css","prototype-template","template"],"latest_commit_sha":null,"homepage":"http://adamj.github.io/prototype-template","language":"CSS","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/AdamJ.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-05-30T15:27:27.000Z","updated_at":"2024-10-13T19:42:56.000Z","dependencies_parsed_at":"2023-01-23T06:01:32.493Z","dependency_job_id":null,"html_url":"https://github.com/AdamJ/prototype-template","commit_stats":null,"previous_names":[],"tags_count":27,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AdamJ%2Fprototype-template","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AdamJ%2Fprototype-template/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AdamJ%2Fprototype-template/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AdamJ%2Fprototype-template/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/AdamJ","download_url":"https://codeload.github.com/AdamJ/prototype-template/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247386276,"owners_count":20930618,"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":["creating-prototypes","css","prototype-template","template"],"created_at":"2024-10-14T04:45:46.266Z","updated_at":"2025-10-12T23:09:51.340Z","avatar_url":"https://github.com/AdamJ.png","language":"CSS","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Netlify Status](https://api.netlify.com/api/v1/badges/07a28538-fc7e-42e2-8bda-c86fc96cc586/deploy-status)](https://app.netlify.com/sites/pf-prototype-template/deploys)\n\n# Prototype Template\n\nThis is a template for creating prototypes. If you wish to use it, please download or fork this repo.\n\n## Features\n\nBuilt with [PatternFly](https://www.patternfly.org/v4), the open source design system from Red Hat.\n\nIf you do not want to use PatternFly, update the following file:\n\n- `sass/site.scss`\n  - Edit the file to change from `$global-load-patternfly: true !default;` to `$global-load-patternfly: false !default;`.\n\n  **This will tell the build to not load the PatternFly files and instead load the empty `base.min.css` file for customization.**\n\n## Customization\n\n1. Decide whether you want to use PatternFly 4 as your base, or a fully customized UI.\n\n2. For a PatternFly 4 base, see [Features](#Features) for building.\n\n3. For a fully customized UI, you will want to update the various imports and files associated/linked to `sass/base.scss`.\n    - To start, `base.scss` pulls in a **variables** and **utilities** file. Edit these files (or add more to `base.scss`) to build out your UI.\n\n### Site configuration\n\nThis site is built using a shared `header.pug` file and a shared `navigation.pug` file.\n\nThe `header.pug` file sets the **Page title**, **Favicon**, **Manifest**, and **CSS** file(s). By default, `site.min.css` is the only CSS file referenced in the header.\n\nThe `navigation.pug` file controls the navigation layout and content.\n\n```bash\n  assets/\n    images/\n  css/\n    assets/\n      fonts/\n        webfonts/\n          *.eot\n          *.svg\n          *.tff\n          *.woff\n          *.woff2\n    base.css\n    base.min.css\n    patternfly.min.css\n    site.css\n    site.min.css\n  js/\n    site.js\n  sass/\n    utilites/\n      _all.scss\n      _typography.scss\n    variables/\n      _all.scss\n    base.scss\n    site.scss\n  src/\n    includes/\n      header.pug\n      navigation.pug\n    index.pug\n```\n\nWhen building the site using Travis or Netlify (or by manually publishing), `gulp build` will created `dist/` folder, which will contain the following files:\n\n```bash\n  dist/\n    assets/\n      images/\n    css/\n      assets/\n        fonts/\n          webfonts/\n            *.eot\n            *.svg\n            *.tff\n            *.woff\n            *.woff2\n      base.min.css\n      patternfly.min.css\n      site.min.css\n    js/\n      site.js\n    index.html\n    manifest.json\n    favicon.ico\n    favicon.png\n    package.json\n    README.md\n```\n\nTo run a complete build with release, run `gulp \u0026\u0026 gulp build` in your prompt.\n\n## Build Features\n\n- Compile Pug to HTML\n- Compile SCSS to CSS\n- Copy Font Awesome webfonts to local environment\n- Browsersync for local development\n- Notifications on successful builds (you can turn this off)\n- Automatic headers for CSS/JS files\n  - this is configured in the `gulpfile.js` file\n\n## Framework\n\n- [Gulp](https://gulpjs.com/)\n- [Stylelint](https://stylelint.io/)\n- [Travis-ci](https://travis-ci.com/)\n- [PatternFly 4](https://github.com/patternfly/patternfly-next)\n- [Sass](http://sass-lang.com/guide)\n- JS\n- [Pug](https://github.com/pugjs/pug)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fadamj%2Fprototype-template","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fadamj%2Fprototype-template","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fadamj%2Fprototype-template/lists"}