jekyll-theme-paperwiki 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (78) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +21 -0
  3. data/README.md +57 -0
  4. data/_config.yml +33 -0
  5. data/_includes/collections_sidebar.html +57 -0
  6. data/_includes/global_footer.html +4 -0
  7. data/_includes/global_head.html +27 -0
  8. data/_includes/global_header.html +25 -0
  9. data/_layouts/_dictionary.html +10 -0
  10. data/_layouts/collections.html +15 -0
  11. data/_layouts/default.html +21 -0
  12. data/_layouts/grammar.html +17 -0
  13. data/_layouts/page.html +9 -0
  14. data/_layouts/portal.html +41 -0
  15. data/_layouts/post.html +12 -0
  16. data/_layouts/reference_desk.html +50 -0
  17. data/_layouts/wiki.html +96 -0
  18. data/_layouts/work.html +17 -0
  19. data/_plugins/_gloss.rb +22 -0
  20. data/_plugins/_interlinear.rb +24 -0
  21. data/_plugins/ipa.rb +19 -0
  22. data/_plugins/lang.rb +27 -0
  23. data/_sass/partials/_base.scss +150 -0
  24. data/_sass/partials/_blog.scss +10 -0
  25. data/_sass/partials/_collections.scss +183 -0
  26. data/_sass/partials/_entries.scss +136 -0
  27. data/_sass/partials/_global.scss +111 -0
  28. data/_sass/partials/_glossing.scss +37 -0
  29. data/_sass/partials/_launchpad.scss +123 -0
  30. data/_sass/partials/_page.scss +13 -0
  31. data/_sass/partials/_search.scss +7 -0
  32. data/_sass/style.scss +14 -0
  33. data/_sass/variables/_colors.scss +49 -0
  34. data/_sass/variables/_fonts.scss +126 -0
  35. data/assets/css/style.scss +5 -0
  36. data/assets/fonts/.DS_Store +0 -0
  37. data/assets/fonts/Inter/.DS_Store +0 -0
  38. data/assets/fonts/Inter/Inter-Bold.otf +0 -0
  39. data/assets/fonts/Inter/Inter-Bold.woff +0 -0
  40. data/assets/fonts/Inter/Inter-Bold.woff2 +0 -0
  41. data/assets/fonts/Inter/Inter-Italic.otf +0 -0
  42. data/assets/fonts/Inter/Inter-Italic.woff +0 -0
  43. data/assets/fonts/Inter/Inter-Italic.woff2 +0 -0
  44. data/assets/fonts/Inter/Inter-Regular.otf +0 -0
  45. data/assets/fonts/Inter/Inter-Regular.woff +0 -0
  46. data/assets/fonts/Inter/Inter-Regular.woff2 +0 -0
  47. data/assets/fonts/Inter/LICENSE.txt +94 -0
  48. data/assets/fonts/LiberationMono/.DS_Store +0 -0
  49. data/assets/fonts/LiberationMono/LICENSE +102 -0
  50. data/assets/fonts/LiberationMono/LiberationMono-Bold.ttf +0 -0
  51. data/assets/fonts/LiberationMono/LiberationMono-Italic.ttf +0 -0
  52. data/assets/fonts/LiberationMono/LiberationMono-Regular.ttf +0 -0
  53. data/assets/fonts/LibertinusSerif/LibertinusSerif-Bold.otf +0 -0
  54. data/assets/fonts/LibertinusSerif/LibertinusSerif-Bold.woff2 +0 -0
  55. data/assets/fonts/LibertinusSerif/LibertinusSerif-BoldItalic.otf +0 -0
  56. data/assets/fonts/LibertinusSerif/LibertinusSerif-BoldItalic.woff2 +0 -0
  57. data/assets/fonts/LibertinusSerif/LibertinusSerif-Italic.otf +0 -0
  58. data/assets/fonts/LibertinusSerif/LibertinusSerif-Italic.woff2 +0 -0
  59. data/assets/fonts/LibertinusSerif/LibertinusSerif-Regular.otf +0 -0
  60. data/assets/fonts/LibertinusSerif/LibertinusSerif-Regular.woff2 +0 -0
  61. data/assets/fonts/LibertinusSerif/OFL.txt +93 -0
  62. data/assets/fonts/RemixIcon/.keep +0 -0
  63. data/assets/fonts/RemixIcon/.keep 3 +0 -0
  64. data/assets/fonts/RemixIcon/remixicon.css +2317 -0
  65. data/assets/fonts/RemixIcon/remixicon.eot +0 -0
  66. data/assets/fonts/RemixIcon/remixicon.glyph.json +1 -0
  67. data/assets/fonts/RemixIcon/remixicon.less +2319 -0
  68. data/assets/fonts/RemixIcon/remixicon.svg +6835 -0
  69. data/assets/fonts/RemixIcon/remixicon.symbol.svg +11356 -0
  70. data/assets/fonts/RemixIcon/remixicon.ttf +0 -0
  71. data/assets/fonts/RemixIcon/remixicon.woff +0 -0
  72. data/assets/fonts/RemixIcon/remixicon.woff2 +0 -0
  73. data/assets/images/favicon.png +0 -0
  74. data/assets/js/list.js +2020 -0
  75. data/assets/js/lunr.js +3475 -0
  76. data/assets/js/search.js +46 -0
  77. data/assets/js/toc.js +104 -0
  78. metadata +133 -0
@@ -0,0 +1,123 @@
1
+ /*------------------------------------*\
2
+ # INDEX.MD STYLING
3
+ # the launchpad and searchbar
4
+ \*------------------------------------*/
5
+
6
+ .launchpad {
7
+ width: 70%;
8
+
9
+ grid-column: span 12 / auto;
10
+ display: grid;
11
+ grid-gap: 56px;
12
+
13
+ margin-left: auto;
14
+ margin-right: auto;
15
+ padding: 56px 0;
16
+ }
17
+
18
+ .launchpad-search {
19
+ grid-column: span 12 / auto;
20
+
21
+ padding: 36px 44px;
22
+
23
+ background-color: $color-launchpadsearch;
24
+ border: 1px solid #f0eae7;
25
+ border-radius: 1.5rem;
26
+ }
27
+
28
+ .launchpad-searchbar {
29
+ width: 40%;
30
+
31
+ padding: 12px 16px;
32
+
33
+ border-radius: 1rem;
34
+ border: 1px solid $color-launchpadsearchbar;
35
+
36
+ font-size: $fontsize-body;
37
+
38
+ transition: 0.25s;
39
+ }
40
+
41
+ .launchpad-searchbar::placeholder {
42
+ color: #f5a79d;
43
+ }
44
+
45
+ .launchpad-searchbar:focus {
46
+ outline: none;
47
+ border-color: $color-launchpadsearchbar;
48
+ box-shadow: 0 0 10px $color-launchpadsearchbar;
49
+ transition: 0.25s;
50
+ }
51
+
52
+ .launchpad-search label {
53
+ font-family: $font-serif;
54
+ font-size: $fontsize-larger;
55
+ }
56
+
57
+ .launchpad-search_submit {
58
+ padding: 12px 20px;
59
+
60
+ background: $color-launchpadsearchbar;
61
+ border: 1px solid $color-launchpadsearchbar;
62
+ border-radius: 1rem;
63
+
64
+ font-size: $fontsize-body;
65
+ }
66
+
67
+ .launchpad-projects {
68
+ grid-column: span 12 / auto;
69
+
70
+ display: grid;
71
+ grid-template-columns: repeat(12, 1fr);
72
+ grid-gap: 32px;
73
+ }
74
+
75
+ .launchpad-project_card {
76
+ grid-column: span 4 / auto;
77
+
78
+ padding: 36px 28px 28px;
79
+
80
+ border-radius: 1.5rem;
81
+ border: 1px solid $color-projectborder;
82
+
83
+ text-decoration: none;
84
+ color: $color-bodytext;
85
+
86
+ header {
87
+ margin-top: 16px;
88
+
89
+ font-family: $fontfamily-header;
90
+ font-size: $fontsize-med;
91
+ }
92
+
93
+ .project-icon {
94
+ padding: 16px;
95
+
96
+ border-radius: 3rem;
97
+ background-color: $color-projectcard;
98
+
99
+ color: #ffffff;
100
+ font-size: $fontsize-med;
101
+
102
+ transition: 0.2s;
103
+ }
104
+ }
105
+
106
+ .launchpad-project_card:link {
107
+ color: $color-bodytext;
108
+ }
109
+
110
+ .launchpad-project_card:hover {
111
+ .project-icon {
112
+ background-color: $color-projecthover;
113
+
114
+ color: $color-projectcard;
115
+
116
+ transition: 0.2s;
117
+ }
118
+ color: $color-bodytext;
119
+ }
120
+
121
+ .launchpad-project_card:visited {
122
+ color: $color-bodytext;
123
+ }
@@ -0,0 +1,13 @@
1
+ /*------------------------------------*\
2
+ # BASIC PAGE STYLING
3
+ # for text with no frills
4
+ \*------------------------------------*/
5
+
6
+ .page-content {
7
+ grid-column: span 12 / auto;
8
+ width: 60%;
9
+
10
+ margin-left: auto;
11
+ margin-right: auto;
12
+ padding: 1.56em 0;
13
+ }
@@ -0,0 +1,7 @@
1
+ /*------------------------------------*\
2
+ # SEARCH PAGE STYLING
3
+ \*------------------------------------*/
4
+
5
+ #search-results dd {
6
+ margin-bottom: 1.75em;
7
+ }
data/_sass/style.scss ADDED
@@ -0,0 +1,14 @@
1
+ /* The variables directory contains any SCSS that doesn't create any actual CSS output. */
2
+ @import "variables/colors";
3
+ @import "variables/fonts";
4
+
5
+ /* Partials are all the components of a webpage broken down into manageable chunks. Organized by page type (i.e. templates for wiki pages, grammars, etc). */
6
+ @import "partials/base";
7
+ @import "partials/global";
8
+ @import "partials/page";
9
+ @import "partials/launchpad";
10
+ @import "partials/collections";
11
+ @import "partials/entries";
12
+ @import "partials/search";
13
+ @import "partials/blog";
14
+ @import "partials/glossing";
@@ -0,0 +1,49 @@
1
+ /*------------------------------------*\
2
+ # COLOUR SCHEME
3
+ \*------------------------------------*/
4
+
5
+ $color-paperlight: #fdfcfc; // off white
6
+ $color-paperdark: #fbf9f8;
7
+ $color-linen: #f6f2ef; // shortbread
8
+ $color-ink: #4b4a46; // dark umber
9
+ $color-limeade: #e2edbf;
10
+ $color-pistachio: #f1f5e1;
11
+ $color-kiwi: #a7c854;
12
+ $color-melon: #f1a393;
13
+ $color-peach: #f7dcd3;
14
+ $color-inkwarm: #504b38;
15
+
16
+ $color-bluelight: #4083ae;
17
+ $color-bluedark: #356d90;
18
+ $color-purple: #61609d;
19
+
20
+ /*------------------------------------*\
21
+ # COLOUR SCHEME values
22
+ \*------------------------------------*/
23
+
24
+ $color-bodybg: $color-linen;
25
+ $color-contentbg: $color-paperlight;
26
+ $color-globalbg: $color-paperdark;
27
+ $color-globalborder: #f7f2ef;
28
+
29
+ $color-bodytext: $color-ink;
30
+ $color-link: $color-bluelight;
31
+ $color-linkhover: $color-bluedark;
32
+ $color-linkactive: $color-purple;
33
+ $color-linkvisited: $color-purple;
34
+
35
+ $color-globalsearchbar: $color-peach;
36
+
37
+ $color-launchpadsearch: $color-linen;
38
+ $color-launchpadborder: $color-linen;
39
+ $color-launchpadsearchbar: $color-melon;
40
+ $color-projectcard: $color-kiwi;
41
+ $color-projectborder: $color-linen;
42
+ $color-projecthover: $color-limeade;
43
+
44
+ $color-articleborder: $color-linen;
45
+
46
+ $color-searchbg: $color-paperlight;
47
+ $color-codebg: $color-pistachio;
48
+ $color-codetext: $color-inkwarm;
49
+ $color-hr: $color-linen;
@@ -0,0 +1,126 @@
1
+ /*------------------------------------*\
2
+ # FONT IMPORTS
3
+ \*------------------------------------*/
4
+
5
+ @font-face {
6
+ font-family: "Libertinus Serif";
7
+ src: url("/assets/fonts/LibertinusSerif/LibertinusSerif-Regular.woff2")format("woff2"),
8
+ url("/assets/fonts/LibertinusSerif/LibertinusSerif-Regular.ttf") format("truetype");
9
+ font-weight: normal;
10
+ font-style: normal;
11
+ }
12
+
13
+ @font-face {
14
+ font-family: "Libertinus Serif";
15
+ src: url("/assets/fonts/LibertinusSerif/LibertinusSerif-Italic.woff2")format("woff2"),
16
+ url("/assets/fonts/LibertinusSerif/LibertinusSerif-Italic.ttf")format("truetype");
17
+ font-weight: normal;
18
+ font-style: italic;
19
+ }
20
+
21
+ @font-face {
22
+ font-family: "Libertinus Serif";
23
+ src: url("/assets/fonts/LibertinusSerif/LibertinusSerif-Bold.woff2") format("woff2"),
24
+ url("/assets/fonts/LibertinusSerif/LibertinusSerif-Bold.ttf") format("truetype");
25
+ font-weight: bold;
26
+ font-style: normal;
27
+ }
28
+
29
+
30
+
31
+ @font-face {
32
+ font-family: "Inter";
33
+ src: url("/assets/fonts/Inter/Inter-Regular.woff2")format("woff2"),
34
+ url("/assets/fonts/Inter/Inter-Regular.woff")format("woff"),
35
+ url("/assets/fonts/Inter/Inter-Regular.otf");
36
+ font-weight: normal;
37
+ font-style: normal;
38
+ }
39
+
40
+ @font-face {
41
+ font-family: "Inter";
42
+ src: url("/assets/fonts/Inter/Inter-Italic.woff2")format("woff2"),
43
+ url("/assets/fonts/Inter/Inter-Italic.woff")format("woff"),
44
+ url("/assets/fonts/Inter/Inter-Italic.otf");
45
+ font-weight: normal;
46
+ font-style: italic;
47
+ }
48
+
49
+ @font-face {
50
+ font-family: "Inter";
51
+ src: url("/assets/fonts/Inter/Inter-Bold.woff2")format("woff2"),
52
+ url("/assets/fonts/Inter/Inter-Bold.woff")format("woff"),
53
+ url("/assets/fonts/Inter/Inter-Bold.otf");
54
+ font-weight: bold;
55
+ font-style: normal;
56
+ }
57
+
58
+
59
+
60
+ @font-face {
61
+ font-family: "Liberation Mono";
62
+ src: url("/assets/fonts/LiberationMono/LiberationMono-Regular.ttf");
63
+ font-weight: normal;
64
+ font-style: normal;
65
+ }
66
+
67
+ @font-face {
68
+ font-family: "Liberation Mono";
69
+ src: url("/assets/fonts/LiberationMono/LiberationMono-Italic.ttf");
70
+ font-weight: normal;
71
+ font-style: italic;
72
+ }
73
+
74
+ @font-face {
75
+ font-family: "Liberation Mono";
76
+ src: url("/assets/fonts/LiberationMono/LiberationMono-Bold.ttf");
77
+ font-weight: bold;
78
+ font-style: normal;
79
+ }
80
+
81
+
82
+
83
+ /*------------------------------------*\
84
+ # FONT FAMILIES
85
+ \*------------------------------------*/
86
+
87
+ $font-serif: "Libertinus Serif", "Times New Roman", Georgia, serif;
88
+ $font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", DejaVu-Sans, Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
89
+ $font-mono: "Liberation Mono", monospace;
90
+
91
+
92
+
93
+ /*------------------------------------*\
94
+ # FONT-FAMILY values
95
+ \*------------------------------------*/
96
+
97
+ $fontfamily-body: $font-sans;
98
+ $fontfamily-header: $font-serif;
99
+
100
+ $fontfamily-code: $font-mono;
101
+
102
+
103
+
104
+ /*------------------------------------*\
105
+ # FONT SIZES
106
+ \*------------------------------------*/
107
+
108
+ $fontsize-body: 100%; // 1rem; 16px by browser default
109
+ $lineheight-body: 1.75; // baseline of 16 * 1.75 = 28px
110
+
111
+ /* Aligned to a major third (1.250) scale. */
112
+ $fontsize-small: 0.8em; // 12.8px
113
+ $fontsize-med: 1.563em; // 25px
114
+ $fontsize-large: 1.953em; // 31.25px
115
+ $fontsize-larger: 2.441em; // 39.06px
116
+ $fontsize-mega: 3.052em; // 48.83px
117
+
118
+
119
+
120
+ /*------------------------------------*\
121
+ # FONT-SIZE values
122
+ \*------------------------------------*/
123
+
124
+ $fontsize-h1: $fontsize-mega;
125
+ $fontsize-h2: $fontsize-large;
126
+ $fontsize-h3: $fontsize-med;
@@ -0,0 +1,5 @@
1
+ ---
2
+ # Front matter comment to ensure Jekyll properly reads file.
3
+ ---
4
+
5
+ @import "style"
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -0,0 +1,94 @@
1
+ Copyright (c) 2016-2020 The Inter Project Authors.
2
+ "Inter" is trademark of Rasmus Andersson.
3
+ https://github.com/rsms/inter
4
+
5
+ This Font Software is licensed under the SIL Open Font License, Version 1.1.
6
+ This license is copied below, and is also available with a FAQ at:
7
+ http://scripts.sil.org/OFL
8
+
9
+ -----------------------------------------------------------
10
+ SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
11
+ -----------------------------------------------------------
12
+
13
+ PREAMBLE
14
+ The goals of the Open Font License (OFL) are to stimulate worldwide
15
+ development of collaborative font projects, to support the font creation
16
+ efforts of academic and linguistic communities, and to provide a free and
17
+ open framework in which fonts may be shared and improved in partnership
18
+ with others.
19
+
20
+ The OFL allows the licensed fonts to be used, studied, modified and
21
+ redistributed freely as long as they are not sold by themselves. The
22
+ fonts, including any derivative works, can be bundled, embedded,
23
+ redistributed and/or sold with any software provided that any reserved
24
+ names are not used by derivative works. The fonts and derivatives,
25
+ however, cannot be released under any other type of license. The
26
+ requirement for fonts to remain under this license does not apply
27
+ to any document created using the fonts or their derivatives.
28
+
29
+ DEFINITIONS
30
+ "Font Software" refers to the set of files released by the Copyright
31
+ Holder(s) under this license and clearly marked as such. This may
32
+ include source files, build scripts and documentation.
33
+
34
+ "Reserved Font Name" refers to any names specified as such after the
35
+ copyright statement(s).
36
+
37
+ "Original Version" refers to the collection of Font Software components as
38
+ distributed by the Copyright Holder(s).
39
+
40
+ "Modified Version" refers to any derivative made by adding to, deleting,
41
+ or substituting -- in part or in whole -- any of the components of the
42
+ Original Version, by changing formats or by porting the Font Software to a
43
+ new environment.
44
+
45
+ "Author" refers to any designer, engineer, programmer, technical
46
+ writer or other person who contributed to the Font Software.
47
+
48
+ PERMISSION AND CONDITIONS
49
+ Permission is hereby granted, free of charge, to any person obtaining
50
+ a copy of the Font Software, to use, study, copy, merge, embed, modify,
51
+ redistribute, and sell modified and unmodified copies of the Font
52
+ Software, subject to the following conditions:
53
+
54
+ 1) Neither the Font Software nor any of its individual components,
55
+ in Original or Modified Versions, may be sold by itself.
56
+
57
+ 2) Original or Modified Versions of the Font Software may be bundled,
58
+ redistributed and/or sold with any software, provided that each copy
59
+ contains the above copyright notice and this license. These can be
60
+ included either as stand-alone text files, human-readable headers or
61
+ in the appropriate machine-readable metadata fields within text or
62
+ binary files as long as those fields can be easily viewed by the user.
63
+
64
+ 3) No Modified Version of the Font Software may use the Reserved Font
65
+ Name(s) unless explicit written permission is granted by the corresponding
66
+ Copyright Holder. This restriction only applies to the primary font name as
67
+ presented to the users.
68
+
69
+ 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
70
+ Software shall not be used to promote, endorse or advertise any
71
+ Modified Version, except to acknowledge the contribution(s) of the
72
+ Copyright Holder(s) and the Author(s) or with their explicit written
73
+ permission.
74
+
75
+ 5) The Font Software, modified or unmodified, in part or in whole,
76
+ must be distributed entirely under this license, and must not be
77
+ distributed under any other license. The requirement for fonts to
78
+ remain under this license does not apply to any document created
79
+ using the Font Software.
80
+
81
+ TERMINATION
82
+ This license becomes null and void if any of the above conditions are
83
+ not met.
84
+
85
+ DISCLAIMER
86
+ THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
87
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
88
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
89
+ OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
90
+ COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
91
+ INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
92
+ DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
93
+ FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
94
+ OTHER DEALINGS IN THE FONT SOFTWARE.
@@ -0,0 +1,102 @@
1
+ Digitized data copyright (c) 2010 Google Corporation
2
+ with Reserved Font Arimo, Tinos and Cousine.
3
+ Copyright (c) 2012 Red Hat, Inc.
4
+ with Reserved Font Name Liberation.
5
+
6
+ This Font Software is licensed under the SIL Open Font License,
7
+ Version 1.1.
8
+
9
+ This license is copied below, and is also available with a FAQ at:
10
+ http://scripts.sil.org/OFL
11
+
12
+ SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
13
+
14
+ PREAMBLE The goals of the Open Font License (OFL) are to stimulate
15
+ worldwide development of collaborative font projects, to support the font
16
+ creation efforts of academic and linguistic communities, and to provide
17
+ a free and open framework in which fonts may be shared and improved in
18
+ partnership with others.
19
+
20
+ The OFL allows the licensed fonts to be used, studied, modified and
21
+ redistributed freely as long as they are not sold by themselves.
22
+ The fonts, including any derivative works, can be bundled, embedded,
23
+ redistributed and/or sold with any software provided that any reserved
24
+ names are not used by derivative works. The fonts and derivatives,
25
+ however, cannot be released under any other type of license. The
26
+ requirement for fonts to remain under this license does not apply to
27
+ any document created using the fonts or their derivatives.
28
+
29
+
30
+
31
+ DEFINITIONS
32
+ "Font Software" refers to the set of files released by the Copyright
33
+ Holder(s) under this license and clearly marked as such.
34
+ This may include source files, build scripts and documentation.
35
+
36
+ "Reserved Font Name" refers to any names specified as such after the
37
+ copyright statement(s).
38
+
39
+ "Original Version" refers to the collection of Font Software components
40
+ as distributed by the Copyright Holder(s).
41
+
42
+ "Modified Version" refers to any derivative made by adding to, deleting,
43
+ or substituting ? in part or in whole ?
44
+ any of the components of the Original Version, by changing formats or
45
+ by porting the Font Software to a new environment.
46
+
47
+ "Author" refers to any designer, engineer, programmer, technical writer
48
+ or other person who contributed to the Font Software.
49
+
50
+
51
+ PERMISSION & CONDITIONS
52
+
53
+ Permission is hereby granted, free of charge, to any person obtaining a
54
+ copy of the Font Software, to use, study, copy, merge, embed, modify,
55
+ redistribute, and sell modified and unmodified copies of the Font
56
+ Software, subject to the following conditions:
57
+
58
+ 1) Neither the Font Software nor any of its individual components,in
59
+ Original or Modified Versions, may be sold by itself.
60
+
61
+ 2) Original or Modified Versions of the Font Software may be bundled,
62
+ redistributed and/or sold with any software, provided that each copy
63
+ contains the above copyright notice and this license. These can be
64
+ included either as stand-alone text files, human-readable headers or
65
+ in the appropriate machine-readable metadata fields within text or
66
+ binary files as long as those fields can be easily viewed by the user.
67
+
68
+ 3) No Modified Version of the Font Software may use the Reserved Font
69
+ Name(s) unless explicit written permission is granted by the
70
+ corresponding Copyright Holder. This restriction only applies to the
71
+ primary font name as presented to the users.
72
+
73
+ 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
74
+ Software shall not be used to promote, endorse or advertise any
75
+ Modified Version, except to acknowledge the contribution(s) of the
76
+ Copyright Holder(s) and the Author(s) or with their explicit written
77
+ permission.
78
+
79
+ 5) The Font Software, modified or unmodified, in part or in whole, must
80
+ be distributed entirely under this license, and must not be distributed
81
+ under any other license. The requirement for fonts to remain under
82
+ this license does not apply to any document created using the Font
83
+ Software.
84
+
85
+
86
+
87
+ TERMINATION
88
+ This license becomes null and void if any of the above conditions are not met.
89
+
90
+
91
+
92
+ DISCLAIMER
93
+ THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
94
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
95
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
96
+ OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
97
+ COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
98
+ INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
99
+ DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
100
+ FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER
101
+ DEALINGS IN THE FONT SOFTWARE.
102
+