jmblog-theme 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/LICENSE.txt +21 -0
- data/README.md +52 -0
- data/_includes/JB/analytics +20 -0
- data/_includes/JB/analytics-providers/getclicky +12 -0
- data/_includes/JB/analytics-providers/mixpanel +11 -0
- data/_includes/JB/analytics-providers/piwik +10 -0
- data/_includes/JB/categories_list +37 -0
- data/_includes/JB/comments +16 -0
- data/_includes/JB/comments-providers/disqus +17 -0
- data/_includes/JB/comments-providers/facebook +9 -0
- data/_includes/JB/comments-providers/intensedebate +6 -0
- data/_includes/JB/comments-providers/livefyre +6 -0
- data/_includes/JB/liquid_raw +32 -0
- data/_includes/JB/pages_list +44 -0
- data/_includes/JB/posts_collate +55 -0
- data/_includes/JB/setup +22 -0
- data/_includes/JB/sharing +8 -0
- data/_includes/JB/tags_list +35 -0
- data/_includes/JB/urlset +10 -0
- data/_includes/dataLayer/dataLayer +10 -0
- data/_includes/themes/jmblog/components/analytics/google +11 -0
- data/_includes/themes/jmblog/components/analytics/googletagmanager_body.html +4 -0
- data/_includes/themes/jmblog/components/analytics/googletagmanager_head.html +10 -0
- data/_includes/themes/jmblog/components/analytics/hubspot.html +3 -0
- data/_includes/themes/jmblog/components/analytics/hubspot_cookie_removal.html +9 -0
- data/_includes/themes/jmblog/components/breadcrumb +7 -0
- data/_includes/themes/jmblog/components/centred_buttons.html +10 -0
- data/_includes/themes/jmblog/components/contact_form.html +43 -0
- data/_includes/themes/jmblog/components/footer.html +31 -0
- data/_includes/themes/jmblog/components/head.html +76 -0
- data/_includes/themes/jmblog/components/navigation.html +7 -0
- data/_includes/themes/jmblog/components/posts_list +12 -0
- data/_includes/themes/jmblog/components/resume.html +139 -0
- data/_includes/themes/jmblog/components/share_buttons +19 -0
- data/_includes/themes/jmblog/components/social_buttons_large.html +18 -0
- data/_includes/themes/jmblog/error.html +15 -0
- data/_includes/themes/jmblog/page.html +19 -0
- data/_includes/themes/jmblog/post.html +51 -0
- data/_includes/themes/jmblog/resume.html +18 -0
- data/_includes/themes/jmblog/settings.yml +2 -0
- data/_includes/themes/jmblog/theme/error.html +46 -0
- data/_includes/themes/jmblog/theme/holding.html +53 -0
- data/_includes/themes/resume.html +11 -0
- data/_layouts/default.html +10 -0
- data/_layouts/error.html +7 -0
- data/_layouts/page.html +11 -0
- data/_layouts/post.html +5 -0
- data/_layouts/resume.html +6 -0
- data/assets/fonts/Cardo/Cardo-Regular.woff2 +0 -0
- data/assets/fonts/Cardo/OFL.txt +93 -0
- data/assets/fonts/Montserrat/Montserrat-Regular.woff2 +0 -0
- data/assets/fonts/Montserrat/OFL.txt +93 -0
- data/assets/img/balloon-3206530_1920.jpg +0 -0
- data/assets/img/favicon.png +0 -0
- data/assets/img/head-shot-square.jpg +0 -0
- data/assets/img/jekyll-logo-black-red-transparent.png +0 -0
- data/assets/img/jekyll-logo-light-solid.png +0 -0
- data/assets/img/john-cameron-zxsab1OdEsU-unsplash.jpg +0 -0
- data/assets/img/made-with-bulma--semiblack.png +0 -0
- data/assets/img/webpack-on-white-bg.svg +1 -0
- data/assets/js/error.bundle.js +2 -0
- data/assets/js/error.bundle.js.br +0 -0
- data/assets/js/error.js.map +1 -0
- data/assets/js/holding.bundle.js +2 -0
- data/assets/js/holding.bundle.js.br +0 -0
- data/assets/js/holding.js.map +1 -0
- metadata +151 -0
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<div class="debug debug-themes__jmblog__error">
|
|
2
|
+
|
|
3
|
+
{%comment%}
|
|
4
|
+
Wrap user content, potentially include components that
|
|
5
|
+
render front matter as content
|
|
6
|
+
{%endcomment%}
|
|
7
|
+
<div class="columns has-text-centered">
|
|
8
|
+
<div class="column content">
|
|
9
|
+
{{ content }}
|
|
10
|
+
</div>
|
|
11
|
+
</div>
|
|
12
|
+
|
|
13
|
+
{% include themes/jmblog/components/social_buttons_large.html %}
|
|
14
|
+
|
|
15
|
+
</div>
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
<div class="debug debug-themes__jmblog__page">
|
|
2
|
+
|
|
3
|
+
{%comment%}
|
|
4
|
+
Wrap user content, potentially include components that
|
|
5
|
+
render front matter as content
|
|
6
|
+
{%endcomment%}
|
|
7
|
+
|
|
8
|
+
{% include themes/jmblog/components/centred_buttons.html %}
|
|
9
|
+
|
|
10
|
+
<!-- Summary -->
|
|
11
|
+
<div class="columns has-text-centered">
|
|
12
|
+
<div class="column content">
|
|
13
|
+
{{ content }}
|
|
14
|
+
</div>
|
|
15
|
+
</div>
|
|
16
|
+
|
|
17
|
+
{% include themes/jmblog/components/social_buttons_large.html %}
|
|
18
|
+
|
|
19
|
+
</div>
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
<article class="post post-single" data-words="{{ content | number_of_words}}">
|
|
2
|
+
|
|
3
|
+
<div class="page-header">
|
|
4
|
+
{% unless page.intro.herounit == true %}
|
|
5
|
+
<h1>{{ page.title }} {% if page.tagline %}<small>{{page.tagline}}</small>{% endif %}</h1>
|
|
6
|
+
{% else %}
|
|
7
|
+
<h2 class="h1">{{ page.title }} {% if page.tagline %}<small>{{page.tagline}}</small>{% endif %}</h2>
|
|
8
|
+
{% endunless %}
|
|
9
|
+
<div class="post-date">
|
|
10
|
+
{% unless page.tags == empty %}
|
|
11
|
+
<ul class="tag-box list-inline pull-right hidden-xs hidden-sm">
|
|
12
|
+
{% assign tags_list = page.tags %}
|
|
13
|
+
{% assign nobadges = true %}
|
|
14
|
+
{% include JB/tags_list %}
|
|
15
|
+
</ul>
|
|
16
|
+
{% endunless %}
|
|
17
|
+
{{ page.date | date_to_long_string }} - <small class="reading-time eta">calculating reading time...</small> -
|
|
18
|
+
|
|
19
|
+
{% unless page.description == null %}
|
|
20
|
+
{% include themes/grayscale/components/share_buttons %}
|
|
21
|
+
{% endunless %}
|
|
22
|
+
</div>
|
|
23
|
+
</div>
|
|
24
|
+
|
|
25
|
+
<section class="row-fluid post-full">
|
|
26
|
+
<div class="span12">
|
|
27
|
+
<div class="content" id="{{page.id}}">
|
|
28
|
+
{{ content }}
|
|
29
|
+
</div>
|
|
30
|
+
|
|
31
|
+
<hr>
|
|
32
|
+
<div class="">
|
|
33
|
+
<ul class="pager">
|
|
34
|
+
{% if page.previous %}
|
|
35
|
+
<li class="previous"><a href="{{ BASE_PATH }}{{ page.previous.url }}" title="{{ page.previous.title }}" data-toggle="tooltip" data-placement="right">← Previous</a></li>
|
|
36
|
+
{% else %}
|
|
37
|
+
<li class="previous disabled"><a>← Previous</a></li>
|
|
38
|
+
{% endif %}
|
|
39
|
+
{% comment %}<li><a href="{{ BASE_PATH }}{{ site.JB.archive_path }}">Archive</a></li>{% endcomment %}
|
|
40
|
+
{% if page.next %}
|
|
41
|
+
<li class="next"><a href="{{ BASE_PATH }}{{ page.next.url }}" title="{{ page.next.title }}" data-toggle="tooltip" data-placement="left">Next →</a></li>
|
|
42
|
+
{% else %}
|
|
43
|
+
<li class="next disabled"><a>Next →</a>
|
|
44
|
+
{% endif %}
|
|
45
|
+
</ul>
|
|
46
|
+
</div>
|
|
47
|
+
<hr>
|
|
48
|
+
{% include JB/comments %}
|
|
49
|
+
</div>
|
|
50
|
+
</section>
|
|
51
|
+
</article>
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{%comment%}
|
|
2
|
+
Wrap user content, potentially include components that
|
|
3
|
+
render front matter as content
|
|
4
|
+
{%endcomment%}
|
|
5
|
+
|
|
6
|
+
{% include themes/jmblog/components/centred_buttons.html %}
|
|
7
|
+
|
|
8
|
+
<!-- Summary -->
|
|
9
|
+
<div class="content">
|
|
10
|
+
<!-- <div class="column content"> -->
|
|
11
|
+
{{ content }}
|
|
12
|
+
<!-- </div> -->
|
|
13
|
+
</div>
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
{% include themes/jmblog/components/resume.html %}
|
|
17
|
+
|
|
18
|
+
{% include themes/jmblog/components/social_buttons_large.html %}
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
<div class="debug debug-themes__jmblog__theme__error">
|
|
2
|
+
<!DOCTYPE html>
|
|
3
|
+
<html>
|
|
4
|
+
<head>
|
|
5
|
+
{% include themes/jmblog/components/head.html %}
|
|
6
|
+
</head>
|
|
7
|
+
<body id="jmoxon">
|
|
8
|
+
{% include themes/jmblog/components/analytics/googletagmanager_body.html %}
|
|
9
|
+
<!-- Header section -->
|
|
10
|
+
<main>
|
|
11
|
+
<section class="hero is-fullheight is-bold">
|
|
12
|
+
<div class="hero-body">
|
|
13
|
+
<div class="has-text-centered container">
|
|
14
|
+
|
|
15
|
+
<!-- Header intro -->
|
|
16
|
+
<div class="is-horizontal-center is-flex">
|
|
17
|
+
<figure class="image is-128x128">
|
|
18
|
+
<img class="is-rounded" src="{{page.peep-image}}?nf_resize=smartcrop&w=128&h=128" alt="{{page.title}}">
|
|
19
|
+
<div class="is-rounded rounded-image-has-inner-shadow"></div>
|
|
20
|
+
</figure>
|
|
21
|
+
</div>
|
|
22
|
+
<h1 class="title is-size-1 is-size-2-mobile has-text-black is-family-secondary is-spaced">
|
|
23
|
+
{{page.headline}}</h1>
|
|
24
|
+
|
|
25
|
+
<div class="content">
|
|
26
|
+
{{content}}
|
|
27
|
+
</div>
|
|
28
|
+
NOT USED
|
|
29
|
+
{% include themes/jmblog/components/social_buttons_large.html %}
|
|
30
|
+
|
|
31
|
+
</div>
|
|
32
|
+
</div>
|
|
33
|
+
</section>
|
|
34
|
+
</main>
|
|
35
|
+
|
|
36
|
+
{% include themes/jmblog/components/footer.html %}
|
|
37
|
+
|
|
38
|
+
<!-- Include dataLayer -->
|
|
39
|
+
<!-- {% include dataLayer/dataLayer %} -->
|
|
40
|
+
|
|
41
|
+
<!-- Include analytics -->
|
|
42
|
+
<!-- {% include JB/analytics %} -->
|
|
43
|
+
|
|
44
|
+
<script src="/assets/js/error.bundle.js?ef6f2ec9f2178aade71b"></script></body>
|
|
45
|
+
</html>
|
|
46
|
+
</div>
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
<div class="debug debug-themes__jmblog__theme__holding">
|
|
2
|
+
<!DOCTYPE html>
|
|
3
|
+
<html>
|
|
4
|
+
<head>
|
|
5
|
+
{% comment %}
|
|
6
|
+
Base template - this file should allow front end development without compiling jekyll build
|
|
7
|
+
Todo: in-line critical site elements to allow development of theme outside of jekyll workflow
|
|
8
|
+
{% endcomment %}
|
|
9
|
+
{% include themes/jmblog/components/head.html %}
|
|
10
|
+
</head>
|
|
11
|
+
<body id="jmoxon">
|
|
12
|
+
{% include themes/jmblog/components/analytics/googletagmanager_body.html %}
|
|
13
|
+
<!-- Header section -->
|
|
14
|
+
<main>
|
|
15
|
+
<section class="hero is-fullheight is-bold">
|
|
16
|
+
<div class="hero-body">
|
|
17
|
+
<div class="has-text-centered container">
|
|
18
|
+
|
|
19
|
+
<!-- Header intro -->
|
|
20
|
+
<div class="is-horizontal-center is-flex">
|
|
21
|
+
<figure class="image is-128x128">
|
|
22
|
+
<a href="/">
|
|
23
|
+
<img class="is-rounded" src="{{ page.peep-image | default: '/assets/img/head-shot-square.jpg' }}?nf_resize={{ page.peep_image_nfresize | default: 'fit' }}&w={{page.peep_image_nfresize_w | default: 128 }}&h={{page.peep_image_nfresize_h | default: 128}}" alt="John Moxon - BA">
|
|
24
|
+
<div class="is-rounded rounded-image-has-inner-shadow"></div>
|
|
25
|
+
</a>
|
|
26
|
+
</figure>
|
|
27
|
+
</div>
|
|
28
|
+
<h1 class="title is-size-1 is-size-2-mobile has-text-black is-family-secondary is-spaced">
|
|
29
|
+
<a href="/" class="has-text-black">{{ page.headline }}</a></h1>
|
|
30
|
+
{% unless page.quote == null %}
|
|
31
|
+
<h2 class="subtitle is-size-4 is-size-6-mobile">
|
|
32
|
+
{{ page.quote }}
|
|
33
|
+
{% unless page.quote-attribution == null %}
|
|
34
|
+
- <span class="is-size-6">{{ page.quote-attribution }}</span>
|
|
35
|
+
{% endunless %}
|
|
36
|
+
</h2>
|
|
37
|
+
{% endunless %}
|
|
38
|
+
|
|
39
|
+
{{ content }}
|
|
40
|
+
|
|
41
|
+
</div>
|
|
42
|
+
</div>
|
|
43
|
+
</section>
|
|
44
|
+
</main>
|
|
45
|
+
|
|
46
|
+
{% include themes/jmblog/components/footer.html %}
|
|
47
|
+
|
|
48
|
+
<!-- Include dataLayer -->
|
|
49
|
+
<!-- {% include dataLayer/dataLayer %} -->
|
|
50
|
+
|
|
51
|
+
<script src="/assets/js/holding.bundle.js?ef6f2ec9f2178aade71b"></script></body>
|
|
52
|
+
</html>
|
|
53
|
+
</div>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{%comment%}
|
|
2
|
+
Wrap user content, potentially include components that
|
|
3
|
+
render front matter as content
|
|
4
|
+
{%endcomment%}
|
|
5
|
+
<div class="columns has-text-centered">
|
|
6
|
+
<div class="column content">
|
|
7
|
+
{{ content }}
|
|
8
|
+
</div>
|
|
9
|
+
</div>
|
|
10
|
+
|
|
11
|
+
{% include themes/jmblog/components/resume.html %}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
---
|
|
2
|
+
theme :
|
|
3
|
+
name : jmblog
|
|
4
|
+
---
|
|
5
|
+
{%comment%}
|
|
6
|
+
Top level template - No markup
|
|
7
|
+
* Specifies the base html template -> themes/jmblog/theme/default.html
|
|
8
|
+
{%endcomment%}
|
|
9
|
+
|
|
10
|
+
<div class="debug debug-layouts__default">{% include themes/jmblog/theme/holding.html %}</div>
|
data/_layouts/error.html
ADDED
data/_layouts/page.html
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
---
|
|
2
|
+
theme:
|
|
3
|
+
name: jmblog
|
|
4
|
+
layout: default
|
|
5
|
+
---
|
|
6
|
+
{%comment%}
|
|
7
|
+
* Specifies layout to inherit -> _layouts/default.html
|
|
8
|
+
* Specified theme to embed
|
|
9
|
+
{% endcomment %}
|
|
10
|
+
|
|
11
|
+
<div class="debug debug-layouts__page">{% include themes/jmblog/page.html %}</div>
|
data/_layouts/post.html
ADDED
|
Binary file
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
Copyright (c) 2002-2011, David J. Perry (hospes02@scholarsfonts.net)
|
|
2
|
+
|
|
3
|
+
This Font Software is licensed under the SIL Open Font License, Version 1.1.
|
|
4
|
+
This license is copied below, and is also available with a FAQ at:
|
|
5
|
+
http://scripts.sil.org/OFL
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
-----------------------------------------------------------
|
|
9
|
+
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
|
|
10
|
+
-----------------------------------------------------------
|
|
11
|
+
|
|
12
|
+
PREAMBLE
|
|
13
|
+
The goals of the Open Font License (OFL) are to stimulate worldwide
|
|
14
|
+
development of collaborative font projects, to support the font creation
|
|
15
|
+
efforts of academic and linguistic communities, and to provide a free and
|
|
16
|
+
open framework in which fonts may be shared and improved in partnership
|
|
17
|
+
with others.
|
|
18
|
+
|
|
19
|
+
The OFL allows the licensed fonts to be used, studied, modified and
|
|
20
|
+
redistributed freely as long as they are not sold by themselves. The
|
|
21
|
+
fonts, including any derivative works, can be bundled, embedded,
|
|
22
|
+
redistributed and/or sold with any software provided that any reserved
|
|
23
|
+
names are not used by derivative works. The fonts and derivatives,
|
|
24
|
+
however, cannot be released under any other type of license. The
|
|
25
|
+
requirement for fonts to remain under this license does not apply
|
|
26
|
+
to any document created using the fonts or their derivatives.
|
|
27
|
+
|
|
28
|
+
DEFINITIONS
|
|
29
|
+
"Font Software" refers to the set of files released by the Copyright
|
|
30
|
+
Holder(s) under this license and clearly marked as such. This may
|
|
31
|
+
include source files, build scripts and documentation.
|
|
32
|
+
|
|
33
|
+
"Reserved Font Name" refers to any names specified as such after the
|
|
34
|
+
copyright statement(s).
|
|
35
|
+
|
|
36
|
+
"Original Version" refers to the collection of Font Software components as
|
|
37
|
+
distributed by the Copyright Holder(s).
|
|
38
|
+
|
|
39
|
+
"Modified Version" refers to any derivative made by adding to, deleting,
|
|
40
|
+
or substituting -- in part or in whole -- any of the components of the
|
|
41
|
+
Original Version, by changing formats or by porting the Font Software to a
|
|
42
|
+
new environment.
|
|
43
|
+
|
|
44
|
+
"Author" refers to any designer, engineer, programmer, technical
|
|
45
|
+
writer or other person who contributed to the Font Software.
|
|
46
|
+
|
|
47
|
+
PERMISSION & CONDITIONS
|
|
48
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
49
|
+
a copy of the Font Software, to use, study, copy, merge, embed, modify,
|
|
50
|
+
redistribute, and sell modified and unmodified copies of the Font
|
|
51
|
+
Software, subject to the following conditions:
|
|
52
|
+
|
|
53
|
+
1) Neither the Font Software nor any of its individual components,
|
|
54
|
+
in Original or Modified Versions, may be sold by itself.
|
|
55
|
+
|
|
56
|
+
2) Original or Modified Versions of the Font Software may be bundled,
|
|
57
|
+
redistributed and/or sold with any software, provided that each copy
|
|
58
|
+
contains the above copyright notice and this license. These can be
|
|
59
|
+
included either as stand-alone text files, human-readable headers or
|
|
60
|
+
in the appropriate machine-readable metadata fields within text or
|
|
61
|
+
binary files as long as those fields can be easily viewed by the user.
|
|
62
|
+
|
|
63
|
+
3) No Modified Version of the Font Software may use the Reserved Font
|
|
64
|
+
Name(s) unless explicit written permission is granted by the corresponding
|
|
65
|
+
Copyright Holder. This restriction only applies to the primary font name as
|
|
66
|
+
presented to the users.
|
|
67
|
+
|
|
68
|
+
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
|
|
69
|
+
Software shall not be used to promote, endorse or advertise any
|
|
70
|
+
Modified Version, except to acknowledge the contribution(s) of the
|
|
71
|
+
Copyright Holder(s) and the Author(s) or with their explicit written
|
|
72
|
+
permission.
|
|
73
|
+
|
|
74
|
+
5) The Font Software, modified or unmodified, in part or in whole,
|
|
75
|
+
must be distributed entirely under this license, and must not be
|
|
76
|
+
distributed under any other license. The requirement for fonts to
|
|
77
|
+
remain under this license does not apply to any document created
|
|
78
|
+
using the Font Software.
|
|
79
|
+
|
|
80
|
+
TERMINATION
|
|
81
|
+
This license becomes null and void if any of the above conditions are
|
|
82
|
+
not met.
|
|
83
|
+
|
|
84
|
+
DISCLAIMER
|
|
85
|
+
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
86
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
|
|
87
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
|
|
88
|
+
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
|
|
89
|
+
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
90
|
+
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
|
|
91
|
+
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
92
|
+
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
|
|
93
|
+
OTHER DEALINGS IN THE FONT SOFTWARE.
|
|
Binary file
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
Copyright 2011 The Montserrat Project Authors (https://github.com/JulietaUla/Montserrat)
|
|
2
|
+
|
|
3
|
+
This Font Software is licensed under the SIL Open Font License, Version 1.1.
|
|
4
|
+
This license is copied below, and is also available with a FAQ at:
|
|
5
|
+
http://scripts.sil.org/OFL
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
-----------------------------------------------------------
|
|
9
|
+
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
|
|
10
|
+
-----------------------------------------------------------
|
|
11
|
+
|
|
12
|
+
PREAMBLE
|
|
13
|
+
The goals of the Open Font License (OFL) are to stimulate worldwide
|
|
14
|
+
development of collaborative font projects, to support the font creation
|
|
15
|
+
efforts of academic and linguistic communities, and to provide a free and
|
|
16
|
+
open framework in which fonts may be shared and improved in partnership
|
|
17
|
+
with others.
|
|
18
|
+
|
|
19
|
+
The OFL allows the licensed fonts to be used, studied, modified and
|
|
20
|
+
redistributed freely as long as they are not sold by themselves. The
|
|
21
|
+
fonts, including any derivative works, can be bundled, embedded,
|
|
22
|
+
redistributed and/or sold with any software provided that any reserved
|
|
23
|
+
names are not used by derivative works. The fonts and derivatives,
|
|
24
|
+
however, cannot be released under any other type of license. The
|
|
25
|
+
requirement for fonts to remain under this license does not apply
|
|
26
|
+
to any document created using the fonts or their derivatives.
|
|
27
|
+
|
|
28
|
+
DEFINITIONS
|
|
29
|
+
"Font Software" refers to the set of files released by the Copyright
|
|
30
|
+
Holder(s) under this license and clearly marked as such. This may
|
|
31
|
+
include source files, build scripts and documentation.
|
|
32
|
+
|
|
33
|
+
"Reserved Font Name" refers to any names specified as such after the
|
|
34
|
+
copyright statement(s).
|
|
35
|
+
|
|
36
|
+
"Original Version" refers to the collection of Font Software components as
|
|
37
|
+
distributed by the Copyright Holder(s).
|
|
38
|
+
|
|
39
|
+
"Modified Version" refers to any derivative made by adding to, deleting,
|
|
40
|
+
or substituting -- in part or in whole -- any of the components of the
|
|
41
|
+
Original Version, by changing formats or by porting the Font Software to a
|
|
42
|
+
new environment.
|
|
43
|
+
|
|
44
|
+
"Author" refers to any designer, engineer, programmer, technical
|
|
45
|
+
writer or other person who contributed to the Font Software.
|
|
46
|
+
|
|
47
|
+
PERMISSION & CONDITIONS
|
|
48
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
49
|
+
a copy of the Font Software, to use, study, copy, merge, embed, modify,
|
|
50
|
+
redistribute, and sell modified and unmodified copies of the Font
|
|
51
|
+
Software, subject to the following conditions:
|
|
52
|
+
|
|
53
|
+
1) Neither the Font Software nor any of its individual components,
|
|
54
|
+
in Original or Modified Versions, may be sold by itself.
|
|
55
|
+
|
|
56
|
+
2) Original or Modified Versions of the Font Software may be bundled,
|
|
57
|
+
redistributed and/or sold with any software, provided that each copy
|
|
58
|
+
contains the above copyright notice and this license. These can be
|
|
59
|
+
included either as stand-alone text files, human-readable headers or
|
|
60
|
+
in the appropriate machine-readable metadata fields within text or
|
|
61
|
+
binary files as long as those fields can be easily viewed by the user.
|
|
62
|
+
|
|
63
|
+
3) No Modified Version of the Font Software may use the Reserved Font
|
|
64
|
+
Name(s) unless explicit written permission is granted by the corresponding
|
|
65
|
+
Copyright Holder. This restriction only applies to the primary font name as
|
|
66
|
+
presented to the users.
|
|
67
|
+
|
|
68
|
+
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
|
|
69
|
+
Software shall not be used to promote, endorse or advertise any
|
|
70
|
+
Modified Version, except to acknowledge the contribution(s) of the
|
|
71
|
+
Copyright Holder(s) and the Author(s) or with their explicit written
|
|
72
|
+
permission.
|
|
73
|
+
|
|
74
|
+
5) The Font Software, modified or unmodified, in part or in whole,
|
|
75
|
+
must be distributed entirely under this license, and must not be
|
|
76
|
+
distributed under any other license. The requirement for fonts to
|
|
77
|
+
remain under this license does not apply to any document created
|
|
78
|
+
using the Font Software.
|
|
79
|
+
|
|
80
|
+
TERMINATION
|
|
81
|
+
This license becomes null and void if any of the above conditions are
|
|
82
|
+
not met.
|
|
83
|
+
|
|
84
|
+
DISCLAIMER
|
|
85
|
+
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
86
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
|
|
87
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
|
|
88
|
+
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
|
|
89
|
+
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
90
|
+
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
|
|
91
|
+
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
92
|
+
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
|
|
93
|
+
OTHER DEALINGS IN THE FONT SOFTWARE.
|