Design and license update
This commit is contained in:
parent
69da84811e
commit
f0ecbc7e02
|
@ -0,0 +1,14 @@
|
||||||
|
Most content in this repository is licensed under the CC0
|
||||||
|
license (https://creativecommons.org/publicdomain/zero/1.0/legalcode).
|
||||||
|
|
||||||
|
It applies to content below:
|
||||||
|
|
||||||
|
* content/
|
||||||
|
* databags/
|
||||||
|
* models/
|
||||||
|
* flowblocks/
|
||||||
|
* templates/
|
||||||
|
* configs/
|
||||||
|
|
||||||
|
It does not apply to the assets and design. For the packages used individual
|
||||||
|
licenses apply.
|
File diff suppressed because one or more lines are too long
|
@ -1,5 +1,7 @@
|
||||||
title: Search
|
title: Search
|
||||||
---
|
---
|
||||||
|
summary: Search this documentation
|
||||||
|
---
|
||||||
sort_key: 1200
|
sort_key: 1200
|
||||||
---
|
---
|
||||||
allow_comments: no
|
allow_comments: no
|
||||||
|
|
|
@ -11,6 +11,11 @@ class: default
|
||||||
----
|
----
|
||||||
text:
|
text:
|
||||||
|
|
||||||
|
Lektor is a BSD Licensed Open Source project. Independently of that the
|
||||||
|
text content of the website (including documentation here) is CC0.
|
||||||
|
|
||||||
|
## Lektor License
|
||||||
|
|
||||||
Copyright (c) 2015 by the Armin Ronacher.
|
Copyright (c) 2015 by the Armin Ronacher.
|
||||||
|
|
||||||
Some rights reserved.
|
Some rights reserved.
|
||||||
|
@ -42,3 +47,11 @@ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||||
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||||
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
|
## Website License
|
||||||
|
|
||||||
|
The text content and templates (excluding images and design) of this website
|
||||||
|
is licensed under the CC0 license. For information about the license text
|
||||||
|
see [CC0 Legal Text](https://creativecommons.org/publicdomain/zero/1.0/legalcode).
|
||||||
|
|
||||||
|
Note that this does not apply to images and design.
|
||||||
|
|
|
@ -49,17 +49,22 @@
|
||||||
<footer>
|
<footer>
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-sm-6">
|
<div class="col-sm-6 icon-bar">
|
||||||
<a href="https://github.com/lektor/lektor/">Lektor on Github</a> ·
|
<a href="https://github.com/lektor/lektor/" title="Lektor on Github"
|
||||||
<a href="https://github.com/lektor/lektor/issues/">Issue Tracker</a> ·
|
><i class="fa fa-github"></i></a>
|
||||||
<a href="{{ '/license'|url }}">License</a> ·
|
<a href="https://github.com/lektor/lektor/issues/" title="Report Issues for Lektor"
|
||||||
<a href="{{ '/contact'|url }}">Contact</a>
|
><i class="fa fa-bug"></i></a>
|
||||||
|
<a href="https://twitter.com/getlektor" title="Find Lektor on Twitter"
|
||||||
|
><i class="fa fa-twitter"></i></a>
|
||||||
|
{%- if this.path %}
|
||||||
|
<a href="https://github.com/lektor/lektor-website/tree/master/content{{ this.path
|
||||||
|
}}/contents.lr" title="View source for this page"><i class="fa fa-code"></i></a>
|
||||||
|
{%- endif %}
|
||||||
</div>
|
</div>
|
||||||
<div class="col-sm-6">
|
<div class="col-sm-6">
|
||||||
Made with Heart in Carinthia
|
<a href="{{ '/license'|url }}">License</a> •
|
||||||
{% if this.path %}
|
<a href="{{ '/contact'|url }}">Contact</a> •
|
||||||
— <a href="https://github.com/lektor/lektor-website/tree/master/content{{ this.path }}/contents.lr">View Source</a>
|
Made with <i class="fa fa-fw fa-heart" title="Heart"><span hidden>Heart</span></i> in Carinthia
|
||||||
{% endif %}
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -59,11 +59,25 @@ div.body-wrapper {
|
||||||
}
|
}
|
||||||
|
|
||||||
footer {
|
footer {
|
||||||
|
border-top: 1px solid #666;
|
||||||
padding: 10px 0;
|
padding: 10px 0;
|
||||||
color: #333;
|
color: #222;
|
||||||
|
line-height: 36px;
|
||||||
|
|
||||||
|
.icon-bar {
|
||||||
|
font-size: 28px;
|
||||||
|
a {
|
||||||
|
margin-right: 10px;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
a {
|
a {
|
||||||
color: white;
|
color: #ccc;
|
||||||
|
text-decoration: underline;
|
||||||
|
&:hover {
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
div.row > div + div {
|
div.row > div + div {
|
||||||
|
|
Loading…
Reference in New Issue