jekyll-material-theme 0.4.2 → 0.5.0
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 -0
- data/_config.yml +3 -0
- data/_includes/cookies.html +1 -1
- data/_includes/head.html +3 -0
- data/_layouts/default.html +0 -2
- data/assets/main.scss +13 -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: d93bdf7a274b215216276df55aa01eb8099a08f0
|
|
4
|
+
data.tar.gz: 714615f1c051f1812b4f42d01932229606a1566a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 99e7d648a1aa35578d3643ed1fb194492044b824ddd163ca9015ce922e52bba66add43786a7fab7d5873542abe444e2ea84a1c57d40bc9cf705fb969eec0a48c
|
|
7
|
+
data.tar.gz: f407a995ae5ec541a3957b8bea24de93fe30321730d5a63863f5f107f3c262a973076f390032c6beb277e61bb71f8bf7db14ebb67469650a852ca5a6a011ed4c
|
data/README.md
CHANGED
|
@@ -212,6 +212,7 @@ google_analytics_tracking_id: # This looks something like UA-000000000-0 Head ov
|
|
|
212
212
|
|
|
213
213
|
cookie_accept_message: Thanks! # The pop-up dialog that appears after accepting the cookie notice.
|
|
214
214
|
|
|
215
|
+
syntax_highlighting: true # include the css for syntax highlighting
|
|
215
216
|
|
|
216
217
|
# Build settings
|
|
217
218
|
markdown: kramdown
|
data/_config.yml
CHANGED
|
@@ -31,6 +31,7 @@ project_four_icon: restaurant
|
|
|
31
31
|
portfolio_heading: Portfolio
|
|
32
32
|
portfolio_type: cards
|
|
33
33
|
|
|
34
|
+
syntax_highlighting: true
|
|
34
35
|
# Skill icons from https://konpa.github.io/devicon/
|
|
35
36
|
|
|
36
37
|
skills:
|
|
@@ -152,6 +153,8 @@ cookies_banner: show # The value "show" will show the cookies banner, the value
|
|
|
152
153
|
|
|
153
154
|
cookie_accept_message: Thanks!
|
|
154
155
|
|
|
156
|
+
syntax_highlighting: true # include the css for syntax highlighting
|
|
157
|
+
|
|
155
158
|
# Build settings
|
|
156
159
|
markdown: kramdown
|
|
157
160
|
# theme: minima
|
data/_includes/cookies.html
CHANGED
|
@@ -5,6 +5,6 @@
|
|
|
5
5
|
<h5 style="color:black;">Cookie Policy</h5>
|
|
6
6
|
<p>We use Cookies on this website to track usage. By contiuning to use this website, you agree to the use of Cookies.</p>
|
|
7
7
|
<br><br><br>
|
|
8
|
-
<p><b>For more information visit the <a href "https://www.cookielaw.org/google-analytics-eu-cookie-law/">Cookie Law Website.</a
|
|
8
|
+
<p><b>For more information visit the <a href "https://www.cookielaw.org/google-analytics-eu-cookie-law/">Cookie Law Website.</a></b></p>
|
|
9
9
|
</div>
|
|
10
10
|
</div>
|
data/_includes/head.html
CHANGED
|
@@ -4,6 +4,9 @@
|
|
|
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
6
|
<link rel="stylesheet" type="text/css" href="{{site.baseurl}}/assets/css/materialize.css">
|
|
7
|
+
{% if site.syntax_highlighting %}
|
|
8
|
+
<link rel="stylesheet" type="text/css" href="{{site.baseurl}}/assets/main.css">
|
|
9
|
+
{% endif %}
|
|
7
10
|
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
|
8
11
|
<link rel="stylesheet" href="https://cdn.rawgit.com/konpa/devicon/df6431e323547add1b4cf45992913f15286456d3/devicon.min.css">
|
|
9
12
|
|
data/_layouts/default.html
CHANGED
data/assets/main.scss
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
---
|
|
2
|
+
# Only the main Sass file needs front matter (the dashes are enough)
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
// Syntax highlighting sass properties and inclusion
|
|
6
|
+
$base-font-size: 1em;
|
|
7
|
+
$spacing-unit: 30px !default;
|
|
8
|
+
|
|
9
|
+
%vertical-rhythm {
|
|
10
|
+
margin-bottom: $spacing-unit / 2;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
@import "syntax-highlighting";
|
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.
|
|
4
|
+
version: 0.5.0
|
|
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-
|
|
11
|
+
date: 2018-02-11 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|
|
@@ -208,6 +208,7 @@ files:
|
|
|
208
208
|
- assets/js/jquery-3.2.1.min.js
|
|
209
209
|
- assets/js/materialize.js
|
|
210
210
|
- assets/js/materialize.min.js
|
|
211
|
+
- assets/main.scss
|
|
211
212
|
homepage: https://github.com/jameshamann/jekyll-material-theme
|
|
212
213
|
licenses:
|
|
213
214
|
- MIT
|