simport 1.3.0 → 1.4.0

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: 8c4ca51acdc0bc5e3c754bcd618931a71c911a8b
4
- data.tar.gz: e33b2b0ab92b60b3c4c2133e78f4cee1fb08a5a3
3
+ metadata.gz: 6d62fd8d171f3626f9cd84e6739d1d94d5b0113c
4
+ data.tar.gz: d2f0081711835291aead2c068fe1234f3507eb36
5
5
  SHA512:
6
- metadata.gz: 77b3d45cb7377ff07cf140d208ac9c593a6a18b77d48666cf76f96c94777f852037a98bac9c714399279983f09efedb5fc0a7faa988c0e7df75b9ccccd7af93f
7
- data.tar.gz: 4179cd21d994f163910b04ed087872194e3bd28c557c6190f3afd4f2ce9ffe4f010a505e6b646122139572fdbbbe82871d07eb5d5c4a44794dc2fa7b8a7f1f44
6
+ metadata.gz: 71ca2899b9e88e02012c9d337b58cb7a40bd1a5e6207617b4e4d531a90114fefb220d3983b82cd3f3880fcd3ba6eabc49d00ab5173a58179419b7a0b35c8b260
7
+ data.tar.gz: 160d0e97f1b9c02bce1a51df32116a5a7b2aaae88cc160537586c665d82ff5ab8f7ab66361820027da94e7720d999b12cd3f7591175eebc1291f3496b89363de
data/README.md CHANGED
@@ -95,6 +95,13 @@ excerpt: An intro to bananas
95
95
  ---
96
96
  ```
97
97
 
98
+ Note: By default jekyll knows to look for blog/posts. For TILs, one additionaly configuration is required. Add the following to the `_config.yml`:
99
+ ```
100
+ collections:
101
+ tils:
102
+ output: true
103
+ ```
104
+
98
105
  #### page
99
106
 
100
107
  This is the layout that includes the navbar. This has no styling and can be used for any cusom pages.
@@ -109,6 +116,16 @@ These three official plugins are useful Jekyll sites and are required to get sta
109
116
 
110
117
  [jekyll-seo-tag](https://github.com/jekyll/jekyll-seo-tag) - Adds meta tags to help with SEO
111
118
 
119
+ ## Enabling Google Analytics
120
+
121
+ To enable Google Analytics, add the following lines to your Jekyll site:
122
+
123
+ ```
124
+ google_analytics: UA-NNNNNNNN-N
125
+ ```
126
+
127
+ Google Analytics will only appear in production, i.e., JEKYLL_ENV=production
128
+
112
129
  ## Contributing
113
130
 
114
131
  Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/hello. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
data/_sass/blog.scss CHANGED
@@ -4,6 +4,11 @@
4
4
  padding: 0 25px;
5
5
  }
6
6
 
7
+ #blog a {
8
+ text-decoration: none;
9
+ color: #505050;
10
+ }
11
+
7
12
  .blog-post {
8
13
  -webkit-transition: -webkit-transform 0.3s;
9
14
  transition: -webkit-transform 0.3s;
data/_sass/main.scss CHANGED
@@ -19,11 +19,6 @@ p {
19
19
  -webkit-font-smoothing: antialiased !important;
20
20
  }
21
21
 
22
- a {
23
- text-decoration: none;
24
- color: #505050;
25
- }
26
-
27
22
  .right {
28
23
  float: right;
29
24
  }
@@ -17,6 +17,11 @@ nav {
17
17
  width: 75%;
18
18
  }
19
19
 
20
+ nav a {
21
+ text-decoration: none;
22
+ color: #505050;
23
+ }
24
+
20
25
  .nav-button {
21
26
  height: 100%;
22
27
  color: rgba(0, 0, 0, 0.87);
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: simport
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.0
4
+ version: 1.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Redhwan Nacef