fundamental 0.2.3 → 0.2.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.
- checksums.yaml +4 -4
- data/README.md +8 -2
- data/_includes/comments.html +16 -0
- data/_layouts/post.html +2 -0
- data/_sass/_globals.scss +1 -1
- data/_sass/_post.scss +9 -1
- metadata +2 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b8ad1c6a73d80d0302c4ffd6f0e2d32e82bca074
|
|
4
|
+
data.tar.gz: 137861114f52c9f2126cde8ac2eb5e9ca9200634
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 47ecf3bc90a63593ad9052cc585820bd712aa450121646f6c4d9a45ae44771751fc9374df7e86b8ecd25d25b7f7477bf8c5c73bec9078dab6286b6d2bd34a458
|
|
7
|
+
data.tar.gz: 23c3f738d5199d73e737619a4285bba9545582d8ae0ae235c8b9ac05941b87e43b733c6c551cab9b90b0d11f80c6d64524a7513c6d991ae74b7ce9233ba781c6
|
data/README.md
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
# 
|
|
2
2
|
|
|
3
|
-
](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](
|
|
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
data/_sass/_globals.scss
CHANGED
data/_sass/_post.scss
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
.post-navigation {
|
|
2
|
-
margin: 60px 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.
|
|
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
|