alna-jekyll-theme 0.1.1 → 0.1.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/_includes/bookcase.html +2 -2
- data/_includes/head.html +5 -5
- data/_includes/notebook.html +2 -2
- data/_includes/portfolio.html +2 -2
- data/_includes/project.html +1 -1
- data/_includes/site-nav.html +2 -2
- data/_layouts/page.html +1 -1
- 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: 8d560ff5007d91291a1962f94de63e4634262388
|
|
4
|
+
data.tar.gz: 3ee4a1d4a6e7180cd6f95cd32adb83ec39a8021b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a2b9f3bfdb98de2125f749e1b302215f62ef9ce161c3bc0618ed1aa2c5cc70ffce120530884ab3498610e9142364479443a53aee63b31d0095214f61d6350539
|
|
7
|
+
data.tar.gz: f09371824866c27f06c5762b799fdd52dca1ec7e88c84dddb2729171c4a3ada17941734ce343d35e0f2eb1dc19f85622d978c761021eddbdcde4f24054bf9ddd
|
data/_includes/bookcase.html
CHANGED
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
itemscope
|
|
3
3
|
itemtype="http://schema.org/ItemList">
|
|
4
4
|
|
|
5
|
-
{% if include.
|
|
5
|
+
{% if include.title %}
|
|
6
6
|
<h1 class="c-bookcase__headline"
|
|
7
|
-
itemprop="name">{{ include.
|
|
7
|
+
itemprop="name">{{ include.title }}</h1>
|
|
8
8
|
{% endif %}
|
|
9
9
|
|
|
10
10
|
<ul class="o-layout c-bookcase__list">
|
data/_includes/head.html
CHANGED
|
@@ -4,11 +4,11 @@
|
|
|
4
4
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
5
5
|
|
|
6
6
|
{% if page.title %}
|
|
7
|
-
{
|
|
7
|
+
{% assign title = page.title | append: " — " | append: site.title %}
|
|
8
8
|
{% else %}
|
|
9
|
-
{
|
|
9
|
+
{% assign title = site.title | append: " — " | append: site.subtitle %}
|
|
10
10
|
{% endif %}
|
|
11
|
-
<title>{{ title
|
|
11
|
+
<title>{{ title }}</title>
|
|
12
12
|
|
|
13
13
|
<!-- Prefetch DNS for external assets (Twitter widgets etc). -->
|
|
14
14
|
<link rel="dns-prefetch" href="//fonts.googleapis.com">
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
<meta name="twitter:site" content="@{{ site.twitter_username }}">
|
|
38
38
|
<meta name="twitter:domain" content="{{ '/' | absolute_url }}">
|
|
39
39
|
<meta name="twitter:creator" content="@{{ site.twitter_username }}">
|
|
40
|
-
<meta name="twitter:title" content="{{ title
|
|
40
|
+
<meta name="twitter:title" content="{{ title }}">
|
|
41
41
|
|
|
42
42
|
{% assign image = page.image | default: '/apple-touch-icon.jpg' | absolute_url %}
|
|
43
43
|
<meta name="twitter:image" content="{{ image }}">
|
|
@@ -50,6 +50,6 @@
|
|
|
50
50
|
<link rel="image_src" href="{{ image }}">
|
|
51
51
|
<link rel="canonical" href="{{ page.url | replace: 'index.html', '' | absolute_url }}">
|
|
52
52
|
<link rel="alternate" type="application/rss+xml" title="{{ site.title }}" href="{{ '/feed.xml' | relative_url }}">
|
|
53
|
-
<link rel="index" title="{{ title
|
|
53
|
+
<link rel="index" title="{{ title }}" href="{{ '/' | relative_url }}">
|
|
54
54
|
|
|
55
55
|
</head>
|
data/_includes/notebook.html
CHANGED
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
itemscope
|
|
3
3
|
itemtype="http://schema.org/ItemList">
|
|
4
4
|
|
|
5
|
-
{% if include.
|
|
5
|
+
{% if include.title %}
|
|
6
6
|
<h1 class="c-notebook__headline"
|
|
7
|
-
itemprop="name">{{ include.
|
|
7
|
+
itemprop="name">{{ include.title }}</h1>
|
|
8
8
|
{% endif %}
|
|
9
9
|
|
|
10
10
|
<ul class="o-list-bare c-notebook__list">
|
data/_includes/portfolio.html
CHANGED
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
itemscope
|
|
3
3
|
itemtype="http://schema.org/ItemList">
|
|
4
4
|
|
|
5
|
-
{% if include.
|
|
5
|
+
{% if include.title %}
|
|
6
6
|
<h1 class="c-portfolio__headline"
|
|
7
|
-
itemprop="name">{{ include.
|
|
7
|
+
itemprop="name">{{ include.title }}</h1>
|
|
8
8
|
{% endif %}
|
|
9
9
|
|
|
10
10
|
<ul class="o-list-bare c-portfolio__list">
|
data/_includes/project.html
CHANGED
data/_includes/site-nav.html
CHANGED
|
@@ -7,11 +7,11 @@
|
|
|
7
7
|
|
|
8
8
|
<ul class="o-pack c-site-nav__list">
|
|
9
9
|
{% for page in site.pages %}
|
|
10
|
-
{% if page.
|
|
10
|
+
{% if page.title %}
|
|
11
11
|
<li class="o-pack__item c-site-nav__item">
|
|
12
12
|
<a class="c-site-nav__link"
|
|
13
13
|
href="{{ page.url | relative_url }}"
|
|
14
|
-
itemprop="name">{{ page.
|
|
14
|
+
itemprop="name">{{ page.title | escape }}</a>
|
|
15
15
|
</li>
|
|
16
16
|
{% endif %}
|
|
17
17
|
{% endfor %}
|
data/_layouts/page.html
CHANGED