[
  {
    "path": ".gitignore",
    "content": "node_modules\nnpm-debug.log\n"
  },
  {
    "path": "Makefile",
    "content": "prepublish: index.html\n\nstart: prepublish\n\thttp-server\n\nindex.html: Readme.md head.html foot.html package.json Makefile\n\tcat head.html > build.html\n\t## Change <project name> to This\n\tsed 's/&lt;project name&gt;/This/g' Readme.md >> build.md\n\tmarked -i build.md >> build.html\n\trm build.md\n\tcat foot.html >> build.html\n\tmv build.html index.html\n\n\nclean:\n\t-rm index.html\n\t-rm build.html\n\n.PHONY: prepublish start clean\n"
  },
  {
    "path": "Readme.md",
    "content": "# &lt;project name&gt; is an [OPEN Open Source Project](https://openopensource.github.io/)\n\n-----------------------------------------\n\n## What?\n\nIndividuals making significant and valuable contributions are given\ncommit-access to the project to contribute as they see fit. This project\nis more like an open wiki than a standard guarded open source project.\n\n## Rules\n\nThere are a few basic ground-rules for contributors:\n\n1. **No `--force` pushes** or modifying the Git history in any way.\n1. **Non-main branches** ought to be used for ongoing work.\n1. **External API changes and significant modifications** ought to be subject to an **internal pull-request** to solicit feedback from other contributors.\n1. Internal pull-requests to solicit feedback are *encouraged* for any other non-trivial contribution but left to the discretion of the contributor.\n1. Contributors should attempt to adhere to the prevailing code-style.\n\n## Releases\n\nDeclaring formal releases remains the prerogative of the project maintainer.\n\n## Changes to this arrangement\n\nThis is an experiment and feedback is welcome! This document may also be\nsubject to pull-requests or changes by contributors where you believe\nyou have something valuable to add or change.\n\nGet a copy of this manifesto as [markdown](https://raw.githubusercontent.com/openopensource/openopensource.github.io/master/Readme.md) and use it in your own projects.\n"
  },
  {
    "path": "foot.html",
    "content": "</body>\n</html>\n"
  },
  {
    "path": "head.html",
    "content": "<!doctype html>\n<html>\n<head>\n  <title>OPEN Open Source</title>\n  <link href='http://fonts.googleapis.com/css?family=Ubuntu:300,500' rel='stylesheet' type='text/css'>\n  <link href='style.css' rel='stylesheet' type='text/css'>\n</head>\n<body>\n<a href=\"https://github.com/openopensource/openopensource.github.io\"><img style=\"position: absolute; top: 0; right: 0; border: 0;\" src=\"https://camo.githubusercontent.com/38ef81f8aca64bb9a64448d0d70f1308ef5341ab/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f6461726b626c75655f3132313632312e706e67\" alt=\"Fork me on GitHub\" data-canonical-src=\"https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png\"></a>\n"
  },
  {
    "path": "index.html",
    "content": "<!doctype html>\n<html>\n<head>\n  <title>OPEN Open Source</title>\n  <link href='https://fonts.googleapis.com/css?family=Ubuntu:300,500' rel='stylesheet' type='text/css'>\n  <link href='style.css' rel='stylesheet' type='text/css'>\n</head>\n<body>\n<a href=\"https://github.com/openopensource/openopensource.github.io\"><img style=\"position: absolute; top: 0; right: 0; border: 0;\" src=\"https://camo.githubusercontent.com/38ef81f8aca64bb9a64448d0d70f1308ef5341ab/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f6461726b626c75655f3132313632312e706e67\" alt=\"Fork me on GitHub\" data-canonical-src=\"https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png\"></a>\n<h1 id=\"this-is-an-open-open-source-project-http-openopensource-org-\">This is an <a href=\"https://openopensource.github.io/\">OPEN Open Source Project</a></h1>\n<hr>\n<h2 id=\"what-\">What?</h2>\n<p>Individuals making significant and valuable contributions are given\ncommit-access to the project to contribute as they see fit. This project\nis more like an open wiki than a standard guarded open source project.</p>\n<h2 id=\"rules\">Rules</h2>\n<p>There are a few basic ground-rules for contributors:</p>\n<ol>\n<li><strong>No <code>--force</code> pushes</strong> or modifying the Git history in any way.</li>\n<li><strong>Non-main branches</strong> ought to be used for ongoing work.</li>\n<li><strong>External API changes and significant modifications</strong> ought to be subject to an <strong>internal pull-request</strong> to solicit feedback from other contributors.</li>\n<li>Internal pull-requests to solicit feedback are <em>encouraged</em> for any other non-trivial contribution but left to the discretion of the contributor.</li>\n<li>Contributors should attempt to adhere to the prevailing code-style.</li>\n</ol>\n<h2 id=\"releases\">Releases</h2>\n<p>Declaring formal releases remains the prerogative of the project maintainer.</p>\n<h2 id=\"changes-to-this-arrangement\">Changes to this arrangement</h2>\n<p>This is an experiment and feedback is welcome! This document may also be\nsubject to pull-requests or changes by contributors where you believe\nyou have something valuable to add or change.</p>\n<p>Get a copy of this manifesto as <a href=\"https://raw.githubusercontent.com/openopensource/openopensource.github.io/master/Readme.md\">markdown</a> and use it in your own projects.</p>\n\n</body>\n</html>\n"
  },
  {
    "path": "package.json",
    "content": "{\n  \"name\": \"openopensource.github.io\",\n  \"version\": \"0.0.0\",\n  \"description\": \"https://openopensource.github.io/\",\n  \"scripts\": {\n    \"prepublish\": \"make prepublish\",\n    \"start\": \"make start\",\n    \"clean\": \"make clean\"\n  },\n  \"devDependencies\": {\n    \"http-server\": \"^0.8.0\",\n    \"marked\": \"^0.3.3\"\n  }\n}\n"
  },
  {
    "path": "style.css",
    "content": "html, body {\n  margin: 0;\n  padding: 0;\n}\n\nbody {\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n  font-family: 'Ubuntu', sans-serif;\n  background: #f0f0f8;\n  color: #404050;\n  max-width: 800px;\n  max-width: 40vw;\n  margin: 0 auto;\n  font-weight: 300;\n  font-size: 1.2em;\n}\n\nh1 {\n  letter-spacing: 0.2em;\n  text-align: center;\n  max-width: 700px;\n  margin: 1em auto;\n}\n\na {\n color: #4cb5ff;\n text-decoration: none;\n}\n\na:hover {\n color: #acd5ff;\n}\n"
  }
]