jekyll-nerd-portfolio 0.1.6 → 0.1.7
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/_includes/header.html +4 -0
- data/_layouts/home.html +5 -0
- data/assets/styles/nerd-portfolio.webflow.css +4 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e931110d54c53edaa58aaf060228c0dd68a326dc
|
|
4
|
+
data.tar.gz: 9600fbb119394c7d0ea0d2bfac9264e831aab708
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c7158fab2a4fa6aaaaa40a1ab1d92b9563144ce51a308299f9b9c348a159d0393392c37232b1add4d831959e477f9db7cb9c3c38971bdce186d30ac56d6da503
|
|
7
|
+
data.tar.gz: 51c7bc20a825cc012a360cb74a536f1c6140a4da1b71520b2df35151739a029deac02430ed543ab50c6dea3c06544f6b22b6435ccdf401f40ec90b125c643f5b
|
data/_includes/header.html
CHANGED
|
@@ -12,6 +12,10 @@
|
|
|
12
12
|
<link href="{{ site.url }}{{ site.baseurl }}/assets/styles/webflow.css" rel="stylesheet" type="text/css">
|
|
13
13
|
<link href="{{ site.url }}{{ site.baseurl }}/assets/styles/nerd-portfolio.webflow.css" rel="stylesheet" type="text/css">
|
|
14
14
|
<link href="{{ site.url }}{{ site.baseurl }}/assets/styles/devicon.min.css" rel="stylesheet" type="text/css">
|
|
15
|
+
{% if site.github_fork_banner %}
|
|
16
|
+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/github-fork-ribbon-css/0.2.0/gh-fork-ribbon.min.css" />
|
|
17
|
+
<!--[if lt IE 9]><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/github-fork-ribbon-css/0.2.0/gh-fork-ribbon.ie.min.css" /><![endif]-->
|
|
18
|
+
{% endif %}
|
|
15
19
|
<!-- [if lt IE 9]><script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.min.js" type="text/javascript"></script><![endif] -->
|
|
16
20
|
<script type="text/javascript">!function(o,c){var n=c.documentElement,t=" w-mod-";n.className+=t+"js",("ontouchstart"in o||o.DocumentTouch&&c instanceof DocumentTouch)&&(n.className+=t+"touch")}(window,document);</script>
|
|
17
21
|
<link href="https://daks2k3a4ib2z.cloudfront.net/img/favicon.ico" rel="shortcut icon" type="image/x-icon">
|
data/_layouts/home.html
CHANGED
|
@@ -3,6 +3,11 @@ layout: default
|
|
|
3
3
|
---
|
|
4
4
|
|
|
5
5
|
{% include header.html %}
|
|
6
|
+
{% if site.github_fork_banner %}
|
|
7
|
+
<a class="github-fork-ribbon fixed" href="{{ site.github_fork_banner }}" target="_blank" data-ribbon="Fork me on GitHub" title="Fork me on GitHub">
|
|
8
|
+
Fork me on GitHub
|
|
9
|
+
</a>
|
|
10
|
+
{% endif %}
|
|
6
11
|
<div data-component="Content" class="content">
|
|
7
12
|
<div class="home-content w-container">
|
|
8
13
|
{% if site.categories.adventures.size > 0 %}
|