initial work on new design

This commit is contained in:
Jason Long 2012-09-12 15:20:27 -04:00
parent a0682d2b99
commit f45fb78d72
4 changed files with 60 additions and 583 deletions

File diff suppressed because one or more lines are too long

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 8.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 30 KiB

View File

@ -1,73 +1,68 @@
<!DOCTYPE html>
<html>
<html lang='en'>
<head>
<meta charset="utf-8">
<!-- Always force latest IE rendering engine (even in intranet) & Chrome Frame -->
<meta content="IE=edge,chrome=1" http-equiv="X-UA-Compatible">
<title>KING of Developers</title>
<link href="css/style.css" rel="stylesheet">
<script type="text/javascript" src="https://use.typekit.com/weh4icd.js"></script>
<script type="text/javascript">try{Typekit.load();}catch(e){}</script>
<title>ChooseALicense.com</title>
<meta charset='utf-8' />
<meta content='IE=edge,chrome=1' http-equiv='X-UA-Compatible' />
<link href='/favicon.ico' rel='shortcut icon' type='image/x-icon' />
<link href='http://fonts.googleapis.com/css?family=Chivo:900' rel='stylesheet' type='text/css' />
<link type="text/css" href="/css/application.css" media="screen" rel="stylesheet" />
<script type="text/javascript" src="/javascripts/modernizr.js"></script>
<!--[if (gte IE 6)&(lte IE 8)]>
<script src='/javascripts/selectivizr-min.js' type='text/javascript'></script>
<![endif]-->
</head>
<body class="cal">
<div class="get-started">
<h1>
So you want to choose an OSS license.
<strong>Now what?</strong>
</h1>
<body id='home'>
<div id='container'>
<div id='home'>
<h1>Choosing an OSS license doesn't need to be scary.</h1>
<h2>
<span>{</span>
Which of the following best describes your situation?
<span>}</span>
</h2>
<ul id='situations'>
<li class='whatever'>
<img height='57' src='/images/three-arrows@2x.png' width='72' />
<h3>Do what you like with my code.</h3>
<p>
<strong>This doesn't need to be scary.</strong>
We compiled a list of three licenses that address what most projects need.
You can pick on of these and be on your way, or click the links to dig deeper
into picking a license that meets your unique needs.
The <a href="license.html">MIT License</a> is a permissive license that is short and to the point. It lets people do anything with your code with proper attribution and without warranty.
</p>
<h2>
<strong>Ready? Which of the following describes you?</strong>
<h3 class="big-intro-link">Do whatever with my code</h3>
<p>
<a href="licenses/mit.html">The MIT license</a> is a permissive license that is short and to the point.
It lets people do anything with your code with two main stipulations:
</p>
<ul>
<li>- Include proper attribution</li>
<li>- The code is provided without warranty of any kind</li>
</ul>
<p>
<a href="guide/permissive-licenses.html">More like this...</a>
<strong class="projects">Projects that use this: jQuery, Rails</strong>
</p>
</h2>
<h2>
<h3 class="big-intro-link">I&#8217;m concerned about patents</h3>
<p>
<a href="licenses/apache.html">The Apache license</a> is a permissive license similar to the MIT License,
but it provides a patent license for any code that infringes on a contributor&#8217;s patents.
</p>
<p>
<a href="guide/foundation-backed.html">More like this...</a>
<strong class="projects">Projects that use this: Apache, SVN, NuGet</strong>
</p>
</h2>
<h2>
<h3 class="big-intro-link">You care about reciprocity</h3>
<p>
The GPL (<a href="licenses/gpl-v2.html">v2</a> or <a href="licenses/gpl-v3.html">v3</a>) requires that folks who modify your
code also license their changes under the GPL. V3 is similar to v2, but adds a restriction
that doesn&#8217;st allow using the software in hardware that doesn&#8217;t allow modifying
the software.
</p>
<p>
<a href="guide/reciprocal-licenses.html">More like this...</a>
<strong class="projects">Projects that use this: Linux, Git</strong>
</p>
</h2>
<p>
<strong>jQuery</strong> and <strong>Rails</strong> use the MIT License.
</p>
<p>
<a href="license-types.html" class="button">See all permissive licenses »</a>
</p>
</li>
<li class='patents'>
<img height='72' src='/images/lightbulb@2x.png' width='43' />
<h3>I'm concerned about patents.</h3>
<p>
The <a href="license.html">Apache License</a> is a permissive license similar to the MIT License, but it provides a patent license for any code that infringes on a contributors patents.
</p>
<p>
<strong>Apache</strong>, <strong>SVN</strong>, and <strong>NuGet</strong> use the Apache License.
</p>
<p>
<a href="license-types.html" class="button">See all foundation-backed licenses »</a>
</p>
</li>
<li class='reciprocity'>
<img height='69' src='/images/circular@2x.png' width='72' />
<h3>I care about reciprocity.</h3>
<p>
The GPL (<a href="license.html">V2</a> or <a href="license.html">V3</a>) requires that folks who modify your code also license their changes under the GPL. V3 is similar to V2, but adds a restriction restricting use in hardware that forbids software alterations.
</p>
<p>
<strong>Linux</strong> and <strong>Git</strong> use the GPL.
</p>
<p>
<a href="license-types.html" class="button">See all reciprocal licenses »</a>
</p>
</li>
</ul>
</div>
</div>
</body>
</html>