jekyll-material-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/README.md +9 -4
- data/_includes/footer.html +3 -3
- data/_includes/head.html +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 676e69935662b646ff0e0b4cc9c56ced1940cc34
|
|
4
|
+
data.tar.gz: 5fe7970355b447c0b66b24c48b05b1c927bd9377
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 563f2378b3bfd9bb216ef3bc71fe24a4a0f2fcfc8cb80e919cf3f3b0928c06ddfbdcb9affe002f541476e68c52bb765ee3badcbf85db0d3b5a5bfd85b42913f0
|
|
7
|
+
data.tar.gz: 98eb56cc518c7494edb336e7f1d1022813359d044b13cb91b9b4121b15d431f12051ddfbff87728d3e0a9097f1a34721b6f818b8ea3c2c3e54a2fbb96118d7b5
|
data/README.md
CHANGED
|
@@ -23,13 +23,13 @@ If you use cookies on your site, or choose to use Google Analytics, you're able
|
|
|
23
23
|
Add this line to your Jekyll site's `Gemfile`:
|
|
24
24
|
|
|
25
25
|
```ruby
|
|
26
|
-
gem "material-theme"
|
|
26
|
+
gem "jekyll-material-theme"
|
|
27
27
|
```
|
|
28
28
|
|
|
29
29
|
And add this line to your Jekyll site's `_config.yml`:
|
|
30
30
|
|
|
31
31
|
```yaml
|
|
32
|
-
theme: material-theme
|
|
32
|
+
theme: jekyll-material-theme
|
|
33
33
|
```
|
|
34
34
|
|
|
35
35
|
And then execute:
|
|
@@ -38,7 +38,7 @@ And then execute:
|
|
|
38
38
|
|
|
39
39
|
Or install it yourself as:
|
|
40
40
|
|
|
41
|
-
$ gem install material-theme
|
|
41
|
+
$ gem install jekyll-material-theme
|
|
42
42
|
|
|
43
43
|
## Usage
|
|
44
44
|
|
|
@@ -81,7 +81,7 @@ project_button: Github
|
|
|
81
81
|
github: https://github.com/jameshamann/jekyll-material-theme
|
|
82
82
|
medium: https://medium.com
|
|
83
83
|
|
|
84
|
-
baseurl:
|
|
84
|
+
baseurl: # If your site is located at /blog or /home, change it here, otherwise leave it empty
|
|
85
85
|
url: http://localhost:4000/ # The URL of your site
|
|
86
86
|
|
|
87
87
|
google_analytics_tracking_id: # This looks something like UA-000000000-0 Head over to https://analytics.google.com/ to setup.
|
|
@@ -107,6 +107,11 @@ Bug reports and pull requests are welcome on GitHub at https://github.com/jamesh
|
|
|
107
107
|
|
|
108
108
|
To set up your environment to develop and further customise this theme, fork the repo and explore the ```_assets``` directory, which includes all the ```css, js``` and ```font``` folders.
|
|
109
109
|
|
|
110
|
+
## Contributors
|
|
111
|
+
|
|
112
|
+
- [James Hamann](https://github.com/jameshamann)
|
|
113
|
+
- [Jam Rizzer](https://github.com/jamrizzi)
|
|
114
|
+
|
|
110
115
|
## License
|
|
111
116
|
|
|
112
117
|
The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
data/_includes/footer.html
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
<script type="text/javascript" src="{{site.baseurl}}assets/js/jquery-3.2.1.min.js"></script>
|
|
2
|
-
<script type="text/javascript" src="{{site.baseurl}}assets/js/materialize.min.js"></script>
|
|
3
|
-
<script src="{{site.baseurl}}assets/js/init.js"></script>
|
|
1
|
+
<script type="text/javascript" src="{{site.baseurl}}/assets/js/jquery-3.2.1.min.js"></script>
|
|
2
|
+
<script type="text/javascript" src="{{site.baseurl}}/assets/js/materialize.min.js"></script>
|
|
3
|
+
<script src="{{site.baseurl}}/assets/js/init.js"></script>
|
|
4
4
|
</body>
|
|
5
5
|
<footer class="page-footer">
|
|
6
6
|
<div class="footer-copyright" style="padding-left: 30px">
|
data/_includes/head.html
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
<head>
|
|
4
4
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
6
|
-
<link rel="stylesheet" type="text/css" href="{{site.baseurl}}assets/css/materialize.css">
|
|
6
|
+
<link rel="stylesheet" type="text/css" href="{{site.baseurl}}/assets/css/materialize.css">
|
|
7
7
|
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
|
8
8
|
{{ include google_analytics.html }}
|
|
9
9
|
</head>
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jekyll-material-theme
|
|
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
|
- James Hamann
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-01-
|
|
11
|
+
date: 2018-01-09 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|