kickster 1.3.0 → 1.4.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/lib/kickster/version.rb +1 -1
- data/template/.bowerrc +1 -1
- data/template/.gitignore +1 -0
- data/template/_config.yml.tt +2 -1
- data/template/_includes/head.html +22 -0
- data/template/_includes/javascripts.html +10 -0
- data/template/_layouts/default.html +2 -31
- metadata +4 -3
- data/template/_includes/.keep +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 923906a1c3e9d91442dc019395eabbd1a51e98da
|
|
4
|
+
data.tar.gz: d356bb86554aa8d0bd2d65925f761775b4267345
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 270118168614130d0bb986b1c31624c3dddd7057e3aa3af7544805001d87f271d434a5b2b1eff797535f67e9fa8d1a49e94b60264e9447f12ec1b12053e1fd78
|
|
7
|
+
data.tar.gz: 8bb0aa72000b2355fe75be19c652603dc3f674f9d286d5c45f679086cd0ce4acfd7125a4e60dc7b7e184743c24ebf282a718ccebab91b7135ec20e71efd9374f
|
data/lib/kickster/version.rb
CHANGED
data/template/.bowerrc
CHANGED
data/template/.gitignore
CHANGED
data/template/_config.yml.tt
CHANGED
|
@@ -5,6 +5,7 @@ assets:
|
|
|
5
5
|
features:
|
|
6
6
|
automatic_img_size: false
|
|
7
7
|
sources:
|
|
8
|
+
- _assets/bower
|
|
8
9
|
- _assets/fonts
|
|
9
10
|
- _assets/images
|
|
10
11
|
- _assets/javascripts
|
|
@@ -22,7 +23,7 @@ exclude:
|
|
|
22
23
|
- Gemfile
|
|
23
24
|
- Gemfile.lock
|
|
24
25
|
- README.md
|
|
25
|
-
- vendor
|
|
26
|
+
- vendor
|
|
26
27
|
|
|
27
28
|
ga_analytics: # Add Google Analytics tracking code
|
|
28
29
|
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
<meta charset="utf-8">
|
|
2
|
+
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
|
3
|
+
<title>{{ site.name }} | {{ page.title }}</title>
|
|
4
|
+
<meta name="description" content="{{ page.description }}">
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
6
|
+
|
|
7
|
+
<meta property="og:title" content="{{ page.title }}">
|
|
8
|
+
<meta property="og:type" content="website">
|
|
9
|
+
<meta property="og:url" content="{{ site.url }}{{ page.url }}">
|
|
10
|
+
<meta property="og:description" content="{{ page.description }}">
|
|
11
|
+
<meta property="og:site_name" content="{{ site.name }}">
|
|
12
|
+
<meta property="og:image" content="{{ site.url }}{% asset_path og-image.jpg %}">
|
|
13
|
+
|
|
14
|
+
<meta name="twitter:card" content="summary">
|
|
15
|
+
<meta name="twitter:url" content="{{ site.url }}{{ page.url }}">
|
|
16
|
+
<meta name="twitter:title" content="{{ page.title }}">
|
|
17
|
+
<meta name="twitter:description" content="{{ page.description }}">
|
|
18
|
+
<meta name="twitter:image" content="{{ site.url }}{% asset_path og-image.jpg %}">
|
|
19
|
+
|
|
20
|
+
<link rel="apple-touch-icon" href="{% asset_path apple-touch-icon.png %}">
|
|
21
|
+
|
|
22
|
+
{% stylesheet application %}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
{% javascript vendor %}
|
|
2
|
+
{% javascript application %}
|
|
3
|
+
|
|
4
|
+
{% if site.ga_analytics %}
|
|
5
|
+
<script>
|
|
6
|
+
window.ga=function(){ga.q.push(arguments)};ga.q=[];ga.l=+new Date;
|
|
7
|
+
ga('create','{{ site.ga_analytics }}','auto');ga('send','pageview')
|
|
8
|
+
</script>
|
|
9
|
+
<script src="https://www.google-analytics.com/analytics.js" async defer></script>
|
|
10
|
+
{% endif %}
|
|
@@ -1,27 +1,7 @@
|
|
|
1
1
|
<!doctype html>
|
|
2
2
|
<html lang="">
|
|
3
3
|
<head>
|
|
4
|
-
|
|
5
|
-
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
|
6
|
-
<title>{{ site.name }} | {{ page.title }}</title>
|
|
7
|
-
<meta name="description" content="{{ page.description }}">
|
|
8
|
-
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
9
|
-
|
|
10
|
-
<meta property="og:title" content="{{ page.title }}">
|
|
11
|
-
<meta property="og:url" content="{{ site.url }}">
|
|
12
|
-
<meta property="og:description" content="{{ page.description }}">
|
|
13
|
-
<meta property="og:site_name" content="{{ site.name }}">
|
|
14
|
-
<meta property="og:image" content="{% asset_path og-image.jpg %}">
|
|
15
|
-
|
|
16
|
-
<meta name="twitter:card" content="summary">
|
|
17
|
-
<meta name="twitter:url" content="{{ site.url }}">
|
|
18
|
-
<meta name="twitter:title" content="{{ page.title }}">
|
|
19
|
-
<meta name="twitter:description" content="{{ page.description }}">
|
|
20
|
-
<meta name="twitter:image" content="{% asset_path og-image.jpg %}">
|
|
21
|
-
|
|
22
|
-
<link rel="apple-touch-icon" href="{% asset_path apple-touch-icon.png %}">
|
|
23
|
-
|
|
24
|
-
{% stylesheet application %}
|
|
4
|
+
{% include head.html %}
|
|
25
5
|
</head>
|
|
26
6
|
<body>
|
|
27
7
|
<!--[if lt IE 8]>
|
|
@@ -34,15 +14,6 @@
|
|
|
34
14
|
{{ content }}
|
|
35
15
|
</main>
|
|
36
16
|
|
|
37
|
-
{%
|
|
38
|
-
{% javascript application %}
|
|
39
|
-
|
|
40
|
-
{% if site.ga_analytics %}
|
|
41
|
-
<script>
|
|
42
|
-
window.ga=function(){ga.q.push(arguments)};ga.q=[];ga.l=+new Date;
|
|
43
|
-
ga('create','{{ site.ga_analytics }}','auto');ga('send','pageview')
|
|
44
|
-
</script>
|
|
45
|
-
<script src="https://www.google-analytics.com/analytics.js" async defer></script>
|
|
46
|
-
{% endif %}
|
|
17
|
+
{% include javascripts.html %}
|
|
47
18
|
</body>
|
|
48
19
|
</html>
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: kickster
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.4.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Nielsen Ramon
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-10-
|
|
11
|
+
date: 2016-10-29 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: thor
|
|
@@ -92,7 +92,8 @@ files:
|
|
|
92
92
|
- template/_assets/stylesheets/application.scss
|
|
93
93
|
- template/_config.yml.tt
|
|
94
94
|
- template/_data/.keep
|
|
95
|
-
- template/_includes
|
|
95
|
+
- template/_includes/head.html
|
|
96
|
+
- template/_includes/javascripts.html
|
|
96
97
|
- template/_layouts/default.html
|
|
97
98
|
- template/bin/deploy
|
|
98
99
|
- template/bin/setup
|
data/template/_includes/.keep
DELETED
|
File without changes
|