nereare_grimoire 1.6.5 → 1.7.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/LICENSE.md +1 -1
- data/_layouts/default.html +9 -8
- data/assets/css/style.scss +0 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a1c9d38cb88f933ba1ee98e72febd28521684b84b5ecc015c179560823c2c934
|
4
|
+
data.tar.gz: d5aa2c90ef2a5e6bc04ab41c561de7d9ef403ea31218a6150315c93d00e41a05
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 279e851d5592b271853a5443662f8c49541af185ad791ac9c8b115fd721f8f75a3ec6a397171da68bdc9ab50b3ebe16f79ce1abb4f4debea4c70db808e3a038b
|
7
|
+
data.tar.gz: 8d54839d2f4e6c144074a2a3f5189229c26a1f48dda12ef4a1d279f3c5ef58695ea90f5f2605c5653cdcafa2751387af8ba34d309c3736beec917e85f8bbab06
|
data/LICENSE.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# Hippocratic License Version 2.0
|
2
2
|
|
3
|
-
Copyright `2019` `Igor Padoim`
|
3
|
+
Copyright `2019-2020` `Igor Padoim`
|
4
4
|
|
5
5
|
Licensor hereby grants permission by this license ("License"), free of charge, to any person or entity (the "Licensee") obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
6
6
|
|
data/_layouts/default.html
CHANGED
@@ -48,15 +48,16 @@
|
|
48
48
|
<div class="row">
|
49
49
|
<h1><a href="{{ '/' | absolute_url }}">{{ site.title }}</a></h1>
|
50
50
|
<p class="subtitle">{{ site.description }}</p>
|
51
|
-
{%
|
52
|
-
{% assign: license = site.license | join: '' %}
|
53
|
-
{% if site.version or copy or license %}
|
51
|
+
{% if site.version or copy or site.license %}
|
54
52
|
<p class="version">
|
55
|
-
{% if site.version %}Version {{ site.version }}{% endif %}
|
56
|
-
{% if site.version and
|
57
|
-
{% if
|
58
|
-
{% if
|
59
|
-
|
53
|
+
{% if site.version %}{{ site.version.text | default: 'Version' }} {{ site.version.version }}.{% endif %}
|
54
|
+
{% if site.version and site.copyright %} {% endif %}
|
55
|
+
{% if site.copyright %}{{ site.copyright.text | default: '©' }} {{ site.copyright.year }} {{ site.copyright.name }}.{% endif %}
|
56
|
+
{% if site.version or site.copyright %}
|
57
|
+
{% assign: version-or-copy = true %}
|
58
|
+
{% endif %}
|
59
|
+
{% if version-or-copy and site.license %} {% endif %}
|
60
|
+
{% if site.license %}{{ site.license.text | default: 'Distributed under the' }} {% if site.license.link %}<a href="{{ site.license.link }}">{% endif %}{{ site.license.name }}{% if site.license.link %}</a>{% endif %}.{% endif %}
|
60
61
|
</p>
|
61
62
|
{% endif %}
|
62
63
|
</div>
|
data/assets/css/style.scss
CHANGED