-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Jakob Jünger
committed
Dec 18, 2024
1 parent
d46d896
commit c827f89
Showing
26 changed files
with
326 additions
and
85 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<div class="page__footer-follow"> | ||
<ul class="social-icons"> | ||
{% if site.data.ui-text[site.locale].follow_label and false %} <!-- don't show RSS feed --> | ||
<li><strong>{{ site.data.ui-text[site.locale].follow_label }}</strong></li> | ||
{% endif %} | ||
|
||
{% if site.footer.links %} | ||
{% for link in site.footer.links %} | ||
{% if link.label and link.url %} | ||
<li><a href="{{ link.url }}" rel="nofollow noopener noreferrer"><i class="{{ link.icon | default: 'fas fa-link' }}" aria-hidden="true"></i> {{ link.label }}</a></li> | ||
{% endif %} | ||
{% endfor %} | ||
{% endif %} | ||
|
||
{% unless site.atom_feed.hide %} | ||
<li><a href="{% if site.atom_feed.path %}{{ site.atom_feed.path }}{% else %}{{ '/feed.xml' | relative_url }}{% endif %}"><i class="fas fa-fw fa-rss-square" aria-hidden="true"></i> {{ site.data.ui-text[site.locale].feed_label | default: "Feed" }}</a></li> | ||
{% endunless %} | ||
</ul> | ||
</div> | ||
|
||
<div class="page__footer-copyright">© {{ site.time | date: '%Y' }} <a href="{{ site.copyright_url | default: site.url }}">{{ site.copyright | default: site.title }}</a>. {{ site.data.ui-text[site.locale].powered_by | default: "Powered by" }} <a href="https://jekyllrb.com" rel="nofollow">Jekyll</a> & <a href="https://mademistakes.com/work/jekyll-themes/minimal-mistakes/" rel="nofollow">Minimal Mistakes</a>.</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,21 @@ | ||
--- | ||
# Only the main Sass file needs front matter (the dashes are enough) | ||
search: false | ||
--- | ||
|
||
@import "{{ site.theme }}"; | ||
@charset "utf-8"; | ||
|
||
$h-size-1: 1.6em; | ||
$h-size-2: 1.25em; | ||
$h-size-3: 1.25em; | ||
$h-size-4: 1.25em; | ||
$h-size-5: 1.25em; | ||
$h-size-6: 1.25em; | ||
|
||
|
||
@import "minimal-mistakes/skins/{{ site.minimal_mistakes_skin | default: 'default' }}"; // skin | ||
@import "minimal-mistakes"; // main partials | ||
|
||
body { | ||
font-size: 0.75em; | ||
} | ||
|
||
h1, h2, h3, h4, h5, h6 { | ||
font-size: 1.25em; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
|
||
License | ||
|
||
Note: For the purposes of this document, the term "Project" will refer to any OpenJS Foundation project | ||
using the MIT license AND referencing this document in the header of the distributed Project code or Project website source code. | ||
|
||
Source Code | ||
|
||
Projects referencing this document are released under the terms of the MIT license. | ||
|
||
The MIT License is simple and easy to understand and it places almost no restrictions on what you can do with the Project. | ||
|
||
You are free to use the Project in any other project (even commercial projects) as long as the copyright header is left intact. | ||
|
||
Sample Code | ||
|
||
All demos and examples, whether in a Project's repository or displayed on a Project site, | ||
are released under the terms of the license as specified in the relevant repository. | ||
Many Projects choose to release their sample code under the terms of CC0. | ||
|
||
CC0 is even more permissive than the MIT license, allowing you to use the code in any manner you want, | ||
without any copyright headers, notices, or other attribution. | ||
|
||
Web Sites | ||
|
||
The content on a Project web site referencing this document in its header is released under the terms of the license | ||
specified in the website's repository or if not specified, under the MIT license. | ||
|
||
The design, layout, and look-and-feel of a Project website is not licensed for use and may not be used on any site, | ||
personal or commercial, without prior written consent from the OpenJS Foundation. | ||
|
||
For information regarding OpenJS Foundation trademarks, please see Trademark Policy and Trademark List. | ||
|
||
Source: https://jquery.com/license/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.