linaro-jekyll-theme 0.3.2 → 0.3.3
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/_data/company.yml +9 -0
- data/_includes/_theme-includes/_head/head.html +10 -5
- metadata +2 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1b4eb0f545af10eadfc631729f26bab57ad2a83e
|
|
4
|
+
data.tar.gz: 8d9e0cd9b294dfa73251f779bb0411cf43abf0eb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 69689afb2898a7a6b75f3f8765b4a8b0b61a7eaf02b20b3841d9339b4534b4e1def56dd51bd9f1ef8747676c37c7ae38d90f151e960f9365341c3a619f4b5e88
|
|
7
|
+
data.tar.gz: 4afbc2869fdc5dcb0322e28c1ee08cb5b95fd4d9de03df8a010501093767edb292cdd13dbb3c683cf6114c92c42b777901a31776d5d6a38781f38ad134d1e803
|
data/_data/company.yml
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
homepage:
|
|
2
|
+
hero-line-1: Welcome to the
|
|
3
|
+
hero-line-2: Linaro Jekyll Theme
|
|
4
|
+
hero-line-3: A theme for Linaro Static Jekyll sites.
|
|
5
|
+
hero-line-4:
|
|
6
|
+
button-text-1: Contribute
|
|
7
|
+
button-url-1: https://github.com/kylekirkby/LinaroJekyllTheme
|
|
8
|
+
button-text-2: Setup
|
|
9
|
+
button-url-2: /setup/
|
|
@@ -1,12 +1,17 @@
|
|
|
1
1
|
<!DOCTYPE html>
|
|
2
2
|
<html>
|
|
3
3
|
<head>
|
|
4
|
-
<title>
|
|
5
|
-
{%
|
|
6
|
-
|
|
7
|
-
|
|
4
|
+
<title>
|
|
5
|
+
{% if page.title %}
|
|
6
|
+
{{site.title}} - {{page.title}}
|
|
7
|
+
{% elsif site.slogan %}
|
|
8
|
+
{{site.title}} - {{site.slogan}}
|
|
9
|
+
{% else %}
|
|
10
|
+
{{site.title}}
|
|
11
|
+
{% endif %}
|
|
12
|
+
</title>
|
|
8
13
|
{% include _theme-includes/_script-includes/css.html %}
|
|
9
|
-
<link rel="icon" href="/images/favicon.png" type="image/png" />
|
|
14
|
+
<link rel="icon" href="{% if site.company.favicon %}{{site.company.favicon}}{% else %}/assets/images/favicon.png{% endif %}" type="image/png" />
|
|
10
15
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
11
16
|
<meta charset="UTF-8">
|
|
12
17
|
{% if site.google-tag-manager %}
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: linaro-jekyll-theme
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Kyle Kirkby
|
|
@@ -187,6 +187,7 @@ extra_rdoc_files: []
|
|
|
187
187
|
files:
|
|
188
188
|
- LICENSE.txt
|
|
189
189
|
- README.md
|
|
190
|
+
- _data/company.yml
|
|
190
191
|
- _data/footer.yml
|
|
191
192
|
- _data/linaro.yml
|
|
192
193
|
- _data/nav.yml
|