{"id":15407049,"url":"https://github.com/bih/careers.mlh.io","last_synced_at":"2025-11-08T05:30:38.848Z","repository":{"id":143349116,"uuid":"63645726","full_name":"bih/careers.mlh.io","owner":"bih","description":"The Major League Hacking Careers page.","archived":false,"fork":false,"pushed_at":"2016-07-11T19:30:32.000Z","size":6328,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"gh-pages","last_synced_at":"2024-12-28T01:40:40.020Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"http://careers.mlh.io","language":"CSS","has_issues":false,"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/bih.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2016-07-19T00:12:39.000Z","updated_at":"2016-07-19T00:12:40.000Z","dependencies_parsed_at":"2023-06-09T13:00:22.808Z","dependency_job_id":null,"html_url":"https://github.com/bih/careers.mlh.io","commit_stats":{"total_commits":11,"total_committers":1,"mean_commits":11.0,"dds":0.0,"last_synced_commit":"875fb8ce7e82a19b7be8d60cf9acd09057539f02"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bih%2Fcareers.mlh.io","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bih%2Fcareers.mlh.io/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bih%2Fcareers.mlh.io/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bih%2Fcareers.mlh.io/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bih","download_url":"https://codeload.github.com/bih/careers.mlh.io/tar.gz/refs/heads/gh-pages","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":239550048,"owners_count":19657538,"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-01T16:26:54.069Z","updated_at":"2025-11-08T05:30:38.803Z","avatar_url":"https://github.com/bih.png","language":"CSS","funding_links":[],"categories":[],"sub_categories":[],"readme":"MLH Site Boilerplate\n========================================\n\nThis is the boilerplate that [Major League Hacking (MLH)][mlh] uses in the\ndevelopment of static websites.  It combines [Jekyll][jekyll] with\n[Gulp][gulp] to speed up common development tasks.\n\n## Setup\n\nBefore you start, make sure you have [npm][npm-install] installed and the\nrelevant version of Ruby (probably using [rvm][rvm]).\n\nYou will also need [gulp][gulp] and [bundler][bundler] eventually, so lets get\nthose now too.\n\n```bash\n$ npm install -g gulp\n$ gem install bundler\n```\n\nNow let's install the development dependencies by running the NPM installer and\nbundler:\n\n```bash\n$ npm install\n$ bundle install\n```\n\n**Note:** These steps may require the use of `sudo` depending on your\nenvironment.\n\n## Developing\n\nTo launch the development server, just run gulp:\n\n```bash\n$ gulp\n```\n\n## Gulp Commands\n\nAn overview of the Gulp commands available:\n\n### `gulp build`\n\nBuilds the site into the `_site` directory.\n\n - Cleans any precompiled assets in `_site`\n - Lints and compiles SASS\n - Lints and compiles Javascript\n - Optimizes images\n - Compiles the Jekyll site\n\n### `gulp serve`\n\nSpins up the Jekyll server for local development\n\n - Watch the `js/`, `_sass/`, and `img/` directories for changes and run\n   related tasks\n - Spin up the Jeykll server with `--watch` and `--incremental` enabled\n - Watch the `_site/` directory for changes and sync to browser\n\n## Structure\n\n```bash\n├── .gitignore                  # Defines which files Git should diregard\n├── .ruby-version               # Defines the required version of Ruby\n├── .scss-lint.yml              # Rules for linting SASS files\n├── Gemfile                     # Ruby Dependencies\n├── Gemfile.lock                # Ruby Dependencies with explicit versions\n├── README.md                   # How to use this project\n├── _config.yml                 # Jekyll configuration\n├── _includes/                  # Jekyll HTML partials\n    └── head.html               # HTML for the \u003chead\u003e tag\n├── _layouts/                   # Jekyll HTML layouts\n    └── default.html            # The default template for HTML pages\n├── _sass/                      # Stylesheets directory\n    ├── _base.scss              # Base styles\n    ├── _layout.scss            # Grid system\n    ├── _typography.scss        # Typography tyles\n    ├── _util.scss              # SASS helper functions\n    ├── lib/                    # External CSS libraries\n        ├── animate.mn.scss     # CSS animations\n        └── reset.min.scss      # CSS reset\n    └── main.scss               # Variable definitions and list of SASS partials to compile\n├── gulpfile.js                 # Defines gulp tasks for development\n├── img/                        # Images and SVGs\n├── index.html                  # The default HTML page\n├── js/                         # Javascript libraries and scripts\n    ├── app.js                  # The default Javascript file\n    ├── app.min.js              # The minified default Javascript file\n    └── lib/                    # External JS libraries\n        └── jquery-2.2.2.min.js # jQuery\n└── package.json                # Javascript Dependencies\n```\n\n## Special Thanks\n\nBig shout out to the [Minimill Project Template](https://github.com/minimill/project-template)\nfor inspiring this project.\n\n[mlh]: http://mlh.io\n[jekyll]: https://jekyllrb.com\n[gulp]: http://gulpjs.com/\n[npm-install]: https://nodejs.org/en/download/\n[rvm]: https://rvm.io/\n[bundler]: http://bundler.io/\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbih%2Fcareers.mlh.io","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbih%2Fcareers.mlh.io","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbih%2Fcareers.mlh.io/lists"}