jekyll-theme-dummy 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/README.md +1 -6
- data/_layouts/default.html +13 -0
- data/_layouts/page.html +1 -2
- data/_layouts/post.html +1 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 286f1028d3dff9fb7280949508ef0579b1abe19b50f82301eac2427c5543c170
|
4
|
+
data.tar.gz: c4dc3ad4b266d7b6ccae1009716da86b400950265b837005b833b06450be267d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7079c67dd5b81d357a27acbf20337a44396923efac3a6bccf2ca0c65442526975b02e1731d2ea2d3df1290b4002cad6c85f6c5418bc81b4f2106ba04763f3389
|
7
|
+
data.tar.gz: 34a23a880a86b7a54f6ec3d930c741b2845fde847ede3673bfef974cf518bf1832c8138b43130056ed033111f9c9b9ec1764f7d9646412be6ae7f8475242a775
|
data/README.md
CHANGED
@@ -1,11 +1,6 @@
|
|
1
1
|
# jekyll-theme-dummy
|
2
2
|
|
3
|
-
|
4
|
-
|
5
|
-
To experiment with this code, add some sample content and run `bundle exec jekyll serve` – this directory is setup just like a Jekyll site!
|
6
|
-
|
7
|
-
TODO: Delete this and the text above, and describe your gem
|
8
|
-
|
3
|
+
[](https://badge.fury.io/rb/jekyll-theme-dummy)
|
9
4
|
|
10
5
|
## Installation
|
11
6
|
|
data/_layouts/default.html
CHANGED
@@ -1 +1,14 @@
|
|
1
|
+
<!doctype html><html><head>
|
2
|
+
<title>{{ page.title | default: site.title }}</title>
|
3
|
+
<meta charset="UTF-8" />
|
4
|
+
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
5
|
+
<link rel="stylesheet" href="https://unpkg.com/@mpan-wework/normalize.min.css@0.0.2/dist/normalize.min.css" />
|
6
|
+
<link rel="icon" href="data:;base64,iVBORw0KGgo=" />
|
7
|
+
<script src="https://unpkg.com/@mpan-wework/jekyll-theme-manager@0.1.12/dist/index.umd.min.js"></script>
|
8
|
+
<script>
|
9
|
+
window.JekyllThemeManager.load({{ site.data.themes | jsonify }});
|
10
|
+
window.JekyllThemeManager.use(window.localStorage.getItem('theme') || '{{ site.data.themes[0].key }}');
|
11
|
+
</script>
|
12
|
+
</head><body>
|
1
13
|
{{ content }}
|
14
|
+
<body></html>
|
data/_layouts/page.html
CHANGED
data/_layouts/post.html
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-theme-dummy
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Mike Pan
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-03-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|