mirror of
https://github.com/github/choosealicense.com
synced 2024-11-05 03:08:51 +01:00
Even dryer templates
* consolidate breadcrumb logic * move h1 to header.html * remove #home div from index.html
This commit is contained in:
parent
59bd13024d
commit
12f4407bdc
@ -27,10 +27,18 @@
|
||||
<body class="{{ page.layout }} {{ page.class }}">
|
||||
<div class='container'>
|
||||
|
||||
{% if page.layout == "default" and page.hide_breadcrumbs != true %}
|
||||
{% unless page.hide_breadcrumbs == true %}
|
||||
<ol class='breadcrumbs'>
|
||||
<li>
|
||||
{% if page.layout == "license" %}
|
||||
<a href="/">Home</a> / <a href="/licenses/">Licenses</a>
|
||||
{% else %}
|
||||
<a href="/">Home</a>
|
||||
{% endif %}
|
||||
</li>
|
||||
</ol>
|
||||
{% endunless %}
|
||||
|
||||
{% if page.title %}
|
||||
<h1>{{ page.title }}</h1>
|
||||
{% endif %}
|
@ -1,13 +1,5 @@
|
||||
{% include header.html %}
|
||||
|
||||
<ol class='breadcrumbs'>
|
||||
<li>
|
||||
<a href="/">Home</a> / <a href="/licenses/">Licenses</a>
|
||||
</li>
|
||||
</ol>
|
||||
|
||||
<h1>{{ page.title }}</h1>
|
||||
|
||||
<div class="cf">
|
||||
<div class='license-body'>
|
||||
<pre id="license-text">
|
||||
|
3
about.md
3
about.md
@ -2,10 +2,9 @@
|
||||
title: About
|
||||
layout: default
|
||||
permalink: /about/
|
||||
title: What’s this about?
|
||||
---
|
||||
|
||||
# What’s this about?
|
||||
|
||||
We want to help developers choose a license for their source code.
|
||||
|
||||
If you already know what you’re doing and have a license you prefer to use, that’s great! We’re not here to change your mind. But if you are bewildered by the large number of OSS license choices, maybe we can help.
|
||||
|
@ -2,9 +2,9 @@
|
||||
layout: default
|
||||
class: home
|
||||
hide_breadcrumbs: true
|
||||
title: Choosing an OSS license doesn’t need to be scary
|
||||
---
|
||||
<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?
|
||||
@ -47,6 +47,3 @@ hide_breadcrumbs: true
|
||||
|
||||
<p>What if I don't want to choose a license</a>? <a href="no-license">You don't have to</a>.</p>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -1,10 +1,9 @@
|
||||
---
|
||||
layout: default
|
||||
permalink: no-license/
|
||||
title: No License
|
||||
---
|
||||
|
||||
# No License
|
||||
|
||||
You're under no obligation to choose a license and it's your right not to include one with your code or project. But please note that opting out of open source licenses doesn't mean you're opting out of copyright law.
|
||||
|
||||
You'll have to check with your own legal counsel regarding your particular project, but generally speaking, the absence of a license means that default copyright laws apply. This means that you retain all rights to your source code and that nobody else may reproduce, distribute, or create derivative works from your work. This might not be what you intend.
|
||||
|
Loading…
Reference in New Issue
Block a user