jekyll-theme-tactile 0.0.3 → 0.0.4

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +3 -3
  3. data/_layouts/default.html +11 -12
  4. metadata +3 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 0bab7dba714a1c09aeba8f86d61177faf07e71a7
4
- data.tar.gz: 99abdfd2e464aecb5ea11fe7a9bfe2e8ce205e5b
3
+ metadata.gz: ae5773ca2aca1033e59b58ed90338467e5c5b096
4
+ data.tar.gz: b1249c986e7f544158da271cbbefb61ed1b53a82
5
5
  SHA512:
6
- metadata.gz: 6e3cffd0fa1f517c271f657bccc2ef3777e7443c68cdfdb7ddf1baeabd86c63c1d39df547bfee3210ee1553eb2dd7eefea74adf8efbebb0a8209c3a5090aa143
7
- data.tar.gz: a207d59461be2aade0d83343692a9862432e18a4080f1eab0462c1591ff377a318e29bdf2b9b8178e7873b53b834817b6591a1e6e690ce796ebb0e87d5ed511e
6
+ metadata.gz: 4b95b09292288b33d4a71adf0c78b6085952cad7a0e220c4525c9944e9e74793e95bcb57d2241234a9bcaaa5830c37e97ded884a8751321adac6a9832c1ba44e
7
+ data.tar.gz: 2b65dae4cdad633244034d575f6ec3f735fbda3cbb9f300bd5303f484f2b292c0da01363f3b72476b40878cd7a1ae1754ffc644325f16450a8d47fcd6e881f9c
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # The Tactile theme
2
2
 
3
- [![Build Status](https://travis-ci.org/pages-themes/jekyll-theme-tactile.svg?branch=master)](https://travis-ci.org/pages-themes/jekyll-theme-tactile) [![Gem Version](https://badge.fury.io/rb/jekyll-theme-tactile.svg)](https://badge.fury.io/rb/jekyll-theme-tactile)
3
+ [![Build Status](https://travis-ci.org/pages-themes/tactile.svg?branch=master)](https://travis-ci.org/pages-themes/tactile) [![Gem Version](https://badge.fury.io/rb/jekyll-theme-tactile.svg)](https://badge.fury.io/rb/jekyll-theme-tactile)
4
4
 
5
5
  *Tactile is a Jekyll theme for GitHub Pages. You can [preview the theme to see what it looks like](http://pages-themes.github.io/tactile), or even [use it today](#usage).*
6
6
 
@@ -46,7 +46,7 @@ google_analytics: [Your Google Analytics tracking ID]
46
46
 
47
47
  If you'd like to add your own custom styles:
48
48
 
49
- 1. Create a file called `/assets/css/style.css` in your site
49
+ 1. Create a file called `/assets/css/style.scss` in your site
50
50
  2. Add the following content to the top of the file, exactly as shown:
51
51
  ```scss
52
52
  ---
@@ -67,7 +67,7 @@ If you'd like to change the theme's HTML layout:
67
67
 
68
68
  ## Roadmap
69
69
 
70
- See the [open issues](https://github.com/pagse-themes/tactile/issues) for a list of proposed features (and known issues).
70
+ See the [open issues](https://github.com/pages-themes/tactile/issues) for a list of proposed features (and known issues).
71
71
 
72
72
  ## Project philosophy
73
73
 
@@ -20,17 +20,18 @@
20
20
  <h1>{{ site.title | default: site.github.repository_name }}</h1>
21
21
  <h2>{{ site.description | default: site.github.project_tagline }}</h2>
22
22
  </header>
23
-
24
23
  <section id="downloads" class="clearfix">
25
24
  {% if site.show_downloads %}
26
25
  <a href="{{ site.github.zip_url }}" id="download-zip" class="button"><span>Download .zip</span></a>
27
26
  <a href="{{ site.github.tar_url }}" id="download-tar-gz" class="button"><span>Download .tar.gz</span></a>
28
27
  {% endif %}
28
+ {% if site.github.is_project_page %}
29
29
  <a href="{{ site.github.repository_url }}" id="view-on-github" class="button"><span>View on GitHub</span></a>
30
- </section>
31
-
30
+ {% else %}
31
+ <a href="{{ site.github.owner_url }}" id="view-on-github" class="button"><span>View on GitHub</span></a>
32
+ {% endif %}
33
+ </section>
32
34
  <hr>
33
-
34
35
  <section id="main_content">
35
36
  {{ content }}
36
37
  </section>
@@ -47,14 +48,12 @@
47
48
 
48
49
  {% if site.google_analytics %}
49
50
  <script type="text/javascript">
50
- var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
51
- document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
52
- </script>
53
- <script type="text/javascript">
54
- try {
55
- var pageTracker = _gat._getTracker("{{ site.google_analytics }}");
56
- pageTracker._trackPageview();
57
- } catch(err) {}
51
+ (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
52
+ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
53
+ m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
54
+ })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
55
+ ga('create', '{{ site.google_analytics }}', 'auto');
56
+ ga('send', 'pageview');
58
57
  </script>
59
58
  {% endif %}
60
59
  </body>
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-theme-tactile
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jason Long
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2016-12-14 00:00:00.000000000 Z
12
+ date: 2017-03-29 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: jekyll
@@ -65,7 +65,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
65
65
  version: '0'
66
66
  requirements: []
67
67
  rubyforge_project:
68
- rubygems_version: 2.5.2
68
+ rubygems_version: 2.6.11
69
69
  signing_key:
70
70
  specification_version: 4
71
71
  summary: Tactile is a Jekyll theme for GitHub Pages