fundamental 0.2.3 → 0.2.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6afd025045ac6d0748fc358cfb3029c9ef6c1892
4
- data.tar.gz: 48c1d04fac1c78c4005eb3c096ae3e1e173ba70e
3
+ metadata.gz: b8ad1c6a73d80d0302c4ffd6f0e2d32e82bca074
4
+ data.tar.gz: 137861114f52c9f2126cde8ac2eb5e9ca9200634
5
5
  SHA512:
6
- metadata.gz: 224ac64596ce7ae8e6abfd893dab314d1e79d4c068c5d0425f1f4e3b7ba78d98e1d11c992838ff58b51f3ed9f1144dc417fd017b2ae0efa4e4c419c02417c799
7
- data.tar.gz: d24d439bc3fe069988fee525daf237c7f33f9b347d2435d8f38db10504c02a28486ba942498e0f28d8426c67d47e8e8848fd41f8a2d88246e365db5494511135
6
+ metadata.gz: 47ecf3bc90a63593ad9052cc585820bd712aa450121646f6c4d9a45ae44771751fc9374df7e86b8ecd25d25b7f7477bf8c5c73bec9078dab6286b6d2bd34a458
7
+ data.tar.gz: 23c3f738d5199d73e737619a4285bba9545582d8ae0ae235c8b9ac05941b87e43b733c6c551cab9b90b0d11f80c6d64524a7513c6d991ae74b7ce9233ba781c6
data/README.md CHANGED
@@ -1,10 +1,10 @@
1
1
  # ![Fundamental Logotype](http://svgshare.com/i/2V8.svg)
2
2
 
3
- ![Gem Version 0.2.3](https://badge.fury.io/rb/fundamental.svg)
3
+ [![Gem Version](https://badge.fury.io/rb/fundamental.svg)](https://badge.fury.io/rb/fundamental)
4
4
 
5
5
  Fundamental is a clean, fully responsive, lightweight Jekyll theme for blogging. No frameworks, no JavaScript. It uses system fonts, so no external stylesheets are loaded. The CSS is just 2Kb gzipped.
6
6
 
7
- View the [demo here](http://theomjones.com/fundamental).
7
+ View the [demo here](https://blog.theomjones.com).
8
8
 
9
9
  ## Features
10
10
 
@@ -22,6 +22,12 @@ View the [demo here](http://theomjones.com/fundamental).
22
22
 
23
23
  ## Installation
24
24
 
25
+ ##### Via Direct Download:
26
+
27
+ [Download](https://github.com/theomjones/fundamental-blank/archive/master.zip) or [clone](https://github.com/theomjones/fundamental-blank/archive) the `fundamental-blank` repository. All you have to do from here is run `bundle install` and then `bundle update`. You're good to go!
28
+
29
+ **Or...**
30
+
25
31
  Add this line to your Jekyll site's `Gemfile`:
26
32
 
27
33
  ```ruby
@@ -0,0 +1,16 @@
1
+ {% if site.enabled.comments == true and page.comments == true %}
2
+ <div id="disqus_thread"></div>
3
+ <script>
4
+ var disqus_config = function () {
5
+ this.page.url = '{{ page.url | absolute_url}}'; // Replace PAGE_URL with your page's canonical URL variable
6
+ //this.page.identifier = PAGE_IDENTIFIER; // Replace PAGE_IDENTIFIER with your page's unique identifier variable
7
+ };
8
+ (function() { // DON'T EDIT BELOW THIS LINE
9
+ var d = document, s = d.createElement('script');
10
+ s.src = 'https://{{site.disqus_shortname}}.disqus.com/embed.js';
11
+ s.setAttribute('data-timestamp', +new Date());
12
+ (d.head || d.body).appendChild(s);
13
+ })();
14
+ </script>
15
+ <noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
16
+ {% endif %}
data/_layouts/post.html CHANGED
@@ -17,3 +17,5 @@ layout: default
17
17
  <a class="next" href="{{page.next.url | relative_url }}">{{page.next.title}} &raquo;</a>
18
18
  {% endif %}
19
19
  </div>
20
+
21
+ {% include comments.html %}
data/_sass/_globals.scss CHANGED
@@ -75,7 +75,7 @@ img {
75
75
  display: inline-block;
76
76
  border: solid $accent 1px;
77
77
  border-radius: 3px;
78
- padding: 2px 5px;
78
+ padding: 3px 6px;
79
79
  margin-top: 6px;
80
80
  text-decoration: none;
81
81
  &:hover {
data/_sass/_post.scss CHANGED
@@ -1,5 +1,5 @@
1
1
  .post-navigation {
2
- margin: 60px auto auto auto;
2
+ margin: 60px auto 40px auto;
3
3
  display: flex;
4
4
  width: 100%;
5
5
  flex-wrap: wrap;
@@ -11,6 +11,14 @@
11
11
  }
12
12
  }
13
13
 
14
+ img + em {
15
+ color: rgba(white, .7);
16
+ font-size: 1rem;
17
+ margin-top: -50px;
18
+ margin-left: 20px;
19
+ display: block;
20
+ }
21
+
14
22
  .info {
15
23
  margin-bottom: 60px;
16
24
  margin-top: -35px;
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fundamental
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.3
4
+ version: 0.2.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Theo M Jones
@@ -90,6 +90,7 @@ files:
90
90
  - LICENSE.txt
91
91
  - README.md
92
92
  - _includes/breadcrumbs.html
93
+ - _includes/comments.html
93
94
  - _includes/facebook.svg
94
95
  - _includes/footer.html
95
96
  - _includes/head.html