summoner-jekyll-theme 1.3.0 → 1.3.2
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 +4 -4
- data/README.md +40 -18
- data/_data/LICENSE_font_fira_code.txt +93 -0
- data/_data/LICENSE_font_ia_writer_duo.txt +94 -0
- data/_data/LICENSE_font_syne_mono.txt +93 -0
- data/_includes/alltags.html +1 -1
- data/_includes/date.html +2 -2
- data/_includes/listings.html +6 -6
- data/_includes/tags.html +4 -4
- metadata +4 -5
- data/assets/img/back.svg +0 -4
- data/assets/img/home.svg +0 -4
- data/assets/img/menu.svg +0 -4
- data/assets/img/rss.svg +0 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ff5b2507dedaf05267e5d4afcf04c58bbd14cc82c1ee4c23f270a0dfed2e1cfc
|
|
4
|
+
data.tar.gz: e92b413f2f82be423ff00c0a041c8ae64ec3ee2c2adc1a5bbf108eac9a442564
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7a65e5c0b861b02003cfc437d585304dea1e89d25b2178fdab4a241586c122e5d2723d5bbbf17ad3b7c987d449ed2c558770a30e32d7df53cba59cfd29c5fbf4
|
|
7
|
+
data.tar.gz: f850d00f83062e498984a7069f3adb407f34833fb726c314692dbfcb625cadd80ef823b591f125302eb0ebb7e2363194bdfc4f2ad372a3f76e3eb8bcc9b816c3
|
data/README.md
CHANGED
|
@@ -1,23 +1,22 @@
|
|
|
1
|
-
# summoner
|
|
1
|
+
# summoner-jekyll-theme
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
To experiment with this code, add some sample content and run `bundle exec jekyll serve` – this directory is setup just like a Jekyll site!
|
|
6
|
-
|
|
7
|
-
TODO: Delete this and the text above, and describe your gem
|
|
3
|
+
My [Jekyll](https://jekyllrb.com/) theme for my personal blog, https://summoning.net, designed to be simple and minimal.
|
|
8
4
|
|
|
9
5
|
## Installation
|
|
10
6
|
|
|
11
7
|
Add this line to your Jekyll site's `Gemfile`:
|
|
12
|
-
|
|
13
8
|
```ruby
|
|
14
|
-
gem "summoner"
|
|
9
|
+
gem "summoner-jekyll-theme"
|
|
15
10
|
```
|
|
16
11
|
|
|
17
12
|
And add this line to your Jekyll site's `_config.yml`:
|
|
13
|
+
```yaml
|
|
14
|
+
theme: summoner-jekyll-theme
|
|
15
|
+
```
|
|
18
16
|
|
|
17
|
+
If you're using the `github-pages` gem, use `remote_theme` in `_config.yml` intead:
|
|
19
18
|
```yaml
|
|
20
|
-
|
|
19
|
+
remote_theme: pinecat/summoner-jekyll-theme
|
|
21
20
|
```
|
|
22
21
|
|
|
23
22
|
And then execute:
|
|
@@ -26,25 +25,48 @@ And then execute:
|
|
|
26
25
|
|
|
27
26
|
Or install it yourself as:
|
|
28
27
|
|
|
29
|
-
$ gem install summoner
|
|
28
|
+
$ gem install summoner-jekyll-theme
|
|
30
29
|
|
|
31
30
|
## Usage
|
|
32
31
|
|
|
33
|
-
|
|
32
|
+
#### Layouts
|
|
33
|
+
|
|
34
|
+
- 404.html: Default 404 page with SMT imagery, set permalink if using pretty links
|
|
35
|
+
- archive.html: List tag types based on jekyll-archives tags
|
|
36
|
+
- blog.html: Post listings, pagination supported via jekyll-paginate-v2
|
|
37
|
+
- default.html: Minimum layout necessary for including CSS and JS
|
|
38
|
+
- index.html: Homepage with SMT imagery and navigation
|
|
39
|
+
- page.html: Use for miscellaneous pages (about, contact, etc.)
|
|
40
|
+
- post.html: Use for blog posts
|
|
41
|
+
|
|
42
|
+
#### Misc.
|
|
43
|
+
|
|
44
|
+
- The theme supports jekyll-feed, default link is to `/blog/feed.xml`
|
|
45
|
+
- It is expected for the homepage to mostly be a set of links to other areas on the site. Use of the .nav class is recommended to wrap your links in:
|
|
46
|
+
```html
|
|
47
|
+
<div class="nav">
|
|
48
|
+
<a href="/blog">blog</a>
|
|
49
|
+
<a href="/blog/feed.xml">rss</a>
|
|
50
|
+
</div>
|
|
51
|
+
<div class="nav">
|
|
52
|
+
<a href="#">about</a>
|
|
53
|
+
<a href="#">archive</a>
|
|
54
|
+
</div>
|
|
55
|
+
```
|
|
34
56
|
|
|
35
57
|
## Contributing
|
|
36
58
|
|
|
37
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/
|
|
59
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/pinecat/summoner-jekyll-theme.
|
|
38
60
|
|
|
39
61
|
## Development
|
|
40
62
|
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
To add a custom directory to your theme-gem, please edit the regexp in `summoner.gemspec` accordingly.
|
|
63
|
+
```sh
|
|
64
|
+
git clone https://github.com/pinecat/summoner-jekyll-theme
|
|
65
|
+
cd summoner-jekyll-theme
|
|
66
|
+
bundle
|
|
67
|
+
```
|
|
47
68
|
|
|
48
69
|
## License
|
|
49
70
|
|
|
50
71
|
The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
|
72
|
+
The fonts shipped with the theme are all under the OFL, and a copy of each font's license can be found in the `_data` directory.
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
Copyright (c) 2014, The Fira Code Project Authors (https://github.com/tonsky/FiraCode)
|
|
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.
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
Copyright © 2018 Information Architects Inc. with Reserved Font Name "iA Writer"
|
|
2
|
+
Based on IBM Plex Typeface
|
|
3
|
+
Copyright © 2017 IBM Corp. with Reserved Font Name "Plex"
|
|
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 & 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,93 @@
|
|
|
1
|
+
Copyright 2017 The Syne Project Authors (https://gitlab.com/bonjour-monde/fonderie/syne-typeface)
|
|
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
|
+
https://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.
|
data/_includes/alltags.html
CHANGED
data/_includes/date.html
CHANGED
data/_includes/listings.html
CHANGED
|
@@ -4,10 +4,10 @@
|
|
|
4
4
|
{% if paginator.posts %}
|
|
5
5
|
{% for post in paginator.posts %}
|
|
6
6
|
<div class="listing">
|
|
7
|
-
<h3><a href="{{post.url}}">{{post.title}}</a></h3>
|
|
7
|
+
<h3><a href="{{post.url}}">{{ post.title }}</a></h3>
|
|
8
8
|
{% include tags.html %}
|
|
9
9
|
{% include date.html %}
|
|
10
|
-
<!-- <p>{{post.excerpt | markdownify | truncatewords: 30}}</p> -->
|
|
10
|
+
<!-- <p>{{ post.excerpt | markdownify | truncatewords: 30 }}</p> -->
|
|
11
11
|
</div>
|
|
12
12
|
{% endfor %}
|
|
13
13
|
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
{% else %}
|
|
16
16
|
{% for post in site.posts %}
|
|
17
17
|
<div class="listing">
|
|
18
|
-
<h3><a href="{{post.url}}">{{post.title}}</a></h3>
|
|
18
|
+
<h3><a href="{{post.url}}">{{ post.title }}</a></h3>
|
|
19
19
|
{% include tags.html %}
|
|
20
20
|
{% include date.html %}
|
|
21
21
|
</div>
|
|
@@ -28,10 +28,10 @@
|
|
|
28
28
|
{% for post in paginator.posts %}
|
|
29
29
|
{% if post.tags contains archive %}
|
|
30
30
|
<div class="listing">
|
|
31
|
-
<h3><a href="{{post.url}}">{{post.title}}</a></h3>
|
|
31
|
+
<h3><a href="{{post.url}}">{{ post.title }}</a></h3>
|
|
32
32
|
{% include tags.html %}
|
|
33
33
|
{% include date.html %}
|
|
34
|
-
<!-- <p>{{post.excerpt | markdownify | truncatewords: 30}}</p> -->
|
|
34
|
+
<!-- <p>{{ post.excerpt | markdownify | truncatewords: 30 }}</p> -->
|
|
35
35
|
</div>
|
|
36
36
|
{% endif %}
|
|
37
37
|
{% endfor %}
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
{% for post in site.posts %}
|
|
42
42
|
{% if post.tags contains archive %}
|
|
43
43
|
<div class="listing">
|
|
44
|
-
<h3><a href="{{post.url}}">{{post.title}}</a></h3>
|
|
44
|
+
<h3><a href="{{post.url}}">{{ post.title }}</a></h3>
|
|
45
45
|
{% include tags.html %}
|
|
46
46
|
{% include date.html %}
|
|
47
47
|
</div>
|
data/_includes/tags.html
CHANGED
|
@@ -2,17 +2,17 @@
|
|
|
2
2
|
{% if post.tags %}
|
|
3
3
|
{% for tag in post.tags %}
|
|
4
4
|
{% if tag == post.tags.last %}
|
|
5
|
-
<a href="/archive/tag/{{tag}}">{{tag}}</a>
|
|
5
|
+
<a href="/archive/tag/{{ tag }}">{{ tag }}</a>
|
|
6
6
|
{% else %}
|
|
7
|
-
<a href="/archive/tag/{{tag}}">{{tag}}</a>,
|
|
7
|
+
<a href="/archive/tag/{{ tag }}">{{ tag }}</a>,
|
|
8
8
|
{% endif %}
|
|
9
9
|
{% endfor %}
|
|
10
10
|
{% else %}
|
|
11
11
|
{% for tag in page.tags %}
|
|
12
12
|
{% if tag == page.tags.last %}
|
|
13
|
-
<a href="/archive/tag/{{tag}}">{{tag}}</a>
|
|
13
|
+
<a href="/archive/tag/{{ tag }}">{{ tag }}</a>
|
|
14
14
|
{% else %}
|
|
15
|
-
<a href="/archive/tag/{{tag}}">{{tag}}</a>,
|
|
15
|
+
<a href="/archive/tag/{{ tag }}">{{ tag }}</a>,
|
|
16
16
|
{% endif %}
|
|
17
17
|
{% endfor %}
|
|
18
18
|
{% endif %}
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: summoner-jekyll-theme
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.3.
|
|
4
|
+
version: 1.3.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Rory Dudley
|
|
@@ -19,6 +19,9 @@ extra_rdoc_files: []
|
|
|
19
19
|
files:
|
|
20
20
|
- LICENSE.txt
|
|
21
21
|
- README.md
|
|
22
|
+
- _data/LICENSE_font_fira_code.txt
|
|
23
|
+
- _data/LICENSE_font_ia_writer_duo.txt
|
|
24
|
+
- _data/LICENSE_font_syne_mono.txt
|
|
22
25
|
- _includes/alltags.html
|
|
23
26
|
- _includes/date.html
|
|
24
27
|
- _includes/head.html
|
|
@@ -57,14 +60,10 @@ files:
|
|
|
57
60
|
- assets/fonts/FiraCode-Regular.ttf
|
|
58
61
|
- assets/fonts/SyneMono-Regular.ttf
|
|
59
62
|
- assets/fonts/iAWriterDuoS-Regular.ttf
|
|
60
|
-
- assets/img/back.svg
|
|
61
63
|
- assets/img/belphegor.png
|
|
62
64
|
- assets/img/check.svg
|
|
63
65
|
- assets/img/copy.svg
|
|
64
|
-
- assets/img/home.svg
|
|
65
|
-
- assets/img/menu.svg
|
|
66
66
|
- assets/img/pixie.png
|
|
67
|
-
- assets/img/rss.svg
|
|
68
67
|
- assets/js/copy.js
|
|
69
68
|
- assets/style.scss
|
|
70
69
|
homepage: https://summoning.net
|
data/assets/img/back.svg
DELETED
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<svg width="1200pt" height="1200pt" version="1.1" viewBox="0 0 1200 1200" xmlns="http://www.w3.org/2000/svg">
|
|
3
|
-
<path d="m367.56 370.59h497.12c185.2 0 335.32 150.09 335.32 335.29 0 185.2-150.1 335.29-335.36 335.29h-829.35c-19.492 0-35.293-15.801-35.293-35.293 0-19.492 15.801-35.293 35.293-35.293h829.35c146.28 0 264.77-118.49 264.77-264.71 0-146.21-118.51-264.71-264.73-264.71h-497.12l151.52 151.52c13.785 13.781 13.785 36.129 0 49.914-13.781 13.781-36.129 13.781-49.914 0l-211.77-211.77c-13.781-13.785-13.781-36.133 0-49.914l211.77-211.77c13.785-13.781 36.133-13.781 49.914 0 13.785 13.785 13.785 36.133 0 49.914zm-95.543-151.52-186.81 186.81 186.81 186.81c13.781 13.781 13.781 36.129 0 49.914-13.785 13.781-36.129 13.781-49.914 0l-211.77-211.77c-13.781-13.785-13.781-36.133 0-49.914l211.77-211.77c13.785-13.781 36.129-13.781 49.914 0 13.781 13.785 13.781 36.133 0 49.914z"/>
|
|
4
|
-
</svg>
|
data/assets/img/home.svg
DELETED
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<svg width="1200pt" height="1200pt" version="1.1" viewBox="0 0 1200 1200" xmlns="http://www.w3.org/2000/svg">
|
|
3
|
-
<path d="m225 1111.1h182.5c20.699 0 37.5-16.801 37.5-37.5v-201c0-80.801 65.699-146.5 146.5-146.5h17c80.75 0 146.5 65.699 146.5 146.5v201c0 20.699 16.801 37.5 37.5 37.5h182.5c75.852 0 137.5-61.699 137.5-137.5v-356.5c0-35.398-13.449-69-37.898-94.898l-374.95-391.95c-52.449-55.199-146.9-55.102-199.25-0.050781l-375.15 392.15c-24.301 25.75-37.75 59.398-37.75 94.75v356.5c0 75.801 61.648 137.5 137.5 137.5zm-62.5-494c0-16.102 6.1016-31.449 17.102-43.051l375.05-392.1c23.949-25.148 66.75-25.199 90.75 0.050781l374.85 391.85c11.148 11.75 17.25 27.102 17.25 43.25v356.5c0 34.449-28.051 62.5-62.5 62.5h-145v-163.5c0-122.15-99.352-221.5-221.5-221.5h-17c-122.1 0-221.5 99.352-221.5 221.5v163.5h-145c-34.449 0-62.5-28.051-62.5-62.5z"/>
|
|
4
|
-
</svg>
|
data/assets/img/menu.svg
DELETED
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<svg width="1200pt" height="1200pt" version="1.1" viewBox="0 0 1200 1200" xmlns="http://www.w3.org/2000/svg">
|
|
3
|
-
<path d="m320.39 373.29c-16.695 0-30.23 13.535-30.23 30.23 0 16.695 13.535 30.23 30.23 30.23h559.23c16.695 0 30.23-13.535 30.23-30.23 0-16.695-13.535-30.23-30.23-30.23zm0 196.48c-16.695 0-30.23 13.535-30.23 30.23 0 16.695 13.535 30.23 30.23 30.23h559.23c16.695 0 30.23-13.535 30.23-30.23 0-16.695-13.535-30.23-30.23-30.23zm0 196.48c-16.695 0-30.23 13.535-30.23 30.23 0 16.695 13.535 30.23 30.23 30.23h559.23c16.695 0 30.23-13.535 30.23-30.23 0-16.695-13.535-30.23-30.23-30.23z"/>
|
|
4
|
-
</svg>
|
data/assets/img/rss.svg
DELETED
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<svg width="1200pt" height="1200pt" version="1.1" viewBox="0 0 1200 1200" xmlns="http://www.w3.org/2000/svg">
|
|
3
|
-
<path d="m450 975c0 124.35-100.8 225-225 225-124.35 0-225-100.65-225-225 0-124.2 100.65-225 225-225 124.2 0 225 100.8 225 225zm-225-600h-112.5c-62.102 0-112.5 50.398-112.5 112.5s50.398 112.5 112.5 112.5h112.5c207.11 0 375 167.89 375 375v112.5c0 62.102 50.398 112.5 112.5 112.5s112.5-50.398 112.5-112.5v-112.5c0-331.35-268.65-600-600-600zm0-375h-112.5c-62.102 0-112.5 50.398-112.5 112.5s50.398 112.5 112.5 112.5h112.5c414.26 0 750 335.74 750 750v112.5c0 62.102 50.398 112.5 112.5 112.5s112.5-50.398 112.5-112.5v-112.5c0-538.46-436.54-975-975-975z"/>
|
|
4
|
-
</svg>
|