jekyll-athena 0.0.1 → 0.0.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/head.html +3 -1
- data/assets/style.scss +10 -0
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a0e865b641c6ea17e03b31099072e8af029b1eb6
|
|
4
|
+
data.tar.gz: ac065b88020da78b33c6ac630563f79e85daedb1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5e82254e9507251cfc5a6fb40ba82c3896c7dc0d65230d8b23334c7494a2f159ed530ced021d96e9b3c3cf93dd42aa8894c7daeef816a73b75392f15c821f6a5
|
|
7
|
+
data.tar.gz: e6f6d8a1957d18897c5162b5e9b2a0a0dcffa5cbff4e293851b420b793e9ecbc6f94151897f3ffb9bcd73fbd0348bf60b78b42e535560f522fb6daace1ffd4f5
|
data/_includes/head.html
CHANGED
|
@@ -6,7 +6,9 @@
|
|
|
6
6
|
<title>{% if page.title %}{{ page.title | escape }}{% else %}{{ site.title | escape }}{% endif %}</title>
|
|
7
7
|
<meta name="description" content="{% if page.excerpt %}{{ page.excerpt | strip_html | strip_newlines | truncate: 160 }}{% else %}{{ site.description }}{% endif %}">
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
{% assign user_url = site.url | append: site.baseurl %}
|
|
10
|
+
{% assign full_base_url = user_url | default: site.github.url %}
|
|
11
|
+
<link rel="stylesheet" href="{{ "/assets/style.css" | prepend: full_base_url }}">
|
|
10
12
|
|
|
11
13
|
<link rel="canonical" href="{{ page.url | replace:'index.html','' | prepend: site.baseurl | prepend: site.url }}">
|
|
12
14
|
<link rel="alternate" type="application/rss+xml" title="{{ site.title }}" href="{{ "/feed.xml" | prepend: site.baseurl | prepend: site.url }}">
|
data/assets/style.scss
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
---
|
|
2
|
+
# Only the main Sass file needs front matter (the dashes are enough)
|
|
3
|
+
---
|
|
4
|
+
@charset "utf-8";
|
|
5
|
+
|
|
6
|
+
// Import partials from `sass_dir` and set theme here
|
|
7
|
+
@import
|
|
8
|
+
"theme-{{ site.theme_color | default: "light" }}.scss"
|
|
9
|
+
// "theme-{{ site.theme_fonts | default: "system" }}.scss"
|
|
10
|
+
;
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jekyll-athena
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- broccolini
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-09-
|
|
11
|
+
date: 2016-09-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|
|
@@ -80,6 +80,7 @@ files:
|
|
|
80
80
|
- _sass/_theme-light.scss
|
|
81
81
|
- _sass/_utilities.scss
|
|
82
82
|
- _sass/_variables.scss
|
|
83
|
+
- assets/style.scss
|
|
83
84
|
homepage: http://broccolini.net/athena
|
|
84
85
|
licenses:
|
|
85
86
|
- MIT
|