sebasic 0.1.1 → 0.2.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
  SHA256:
3
- metadata.gz: d60ee4bd1b9221d6dc0a8e932f30d46ced6c2734c973798690569f41a93c86a6
4
- data.tar.gz: 60d48def2be39d4f915d6c72b71daad377dc55db6638a78ad67ccd01501d54ea
3
+ metadata.gz: ca40379a71701a2266053b4cba437074778f3842b81d412a761164b2b4a4def5
4
+ data.tar.gz: 2e0915243eaf8df9ba9fa1b40eeb552103513178b83923170f1062ddfba6f2b6
5
5
  SHA512:
6
- metadata.gz: 7f147fe61690b36c4abb01c1c6ea3f32e92f55019c301275e99ab75306e1313fdbce8544fa7dd44d64e1783331249a8920dd3d5392f0bb0c11cf383161125564
7
- data.tar.gz: 62b5bda4aad528f36289af40f1faa1ed0441b08ad747953eb187abd1d3a82d2b30be321fe8a6048f1a111152a7bffe5310d1c485512997b1dac83acb03854483
6
+ metadata.gz: 8cfb44ab10b04aec64e44e30b4c0f7a760480a8cf69f62cd3010ca55004dbeadb215bcf22dd6d41b9eb268041acd7245d065ceabb99ac3a734044896c49abfa8
7
+ data.tar.gz: 8d786ea76c19f3a09d6c9f370133a8256fb1d9ef2926c6633a0bca65c480ffaf2fc32e72977ba455b10787e1fc1e2f7121067d7a2c3ec668cbb3485a37754e26
data/README.md CHANGED
@@ -2,9 +2,9 @@
2
2
 
3
3
  [![Gem Version](https://badge.fury.io/rb/sebasic.svg)](https://badge.fury.io/rb/sebasic)
4
4
 
5
- Sebasic is an easy on the eyes IKEA style blog [Jekyll](https://jekyllrb.com/) for programmers. [[view demo]](https://lewis8s.codes)
5
+ Sebasic is an easy on the eyes IKEA style [Jekyll](https://jekyllrb.com/) blog for programmers. [[view demo]](https://lewis8s.codes)
6
6
 
7
- Inspired by [sgolem](https://sgolem.com/) theme, and [rauchg.com](https://rauchg.com/)
7
+ Inspired by [sgolem](https://sgolem.com/), and [rauchg.com](https://rauchg.com/)
8
8
 
9
9
  ![](./github/banner_2.png)
10
10
 
@@ -75,7 +75,7 @@ url: https://lewis8s.codes
75
75
 
76
76
  sebasic:
77
77
  date_format: "%B %d, %Y"
78
- twitter_user: realDonaldTrump # Twitter username for 'follow me button'
78
+ github_user: lewisrobbins # github username
79
79
 
80
80
  theme: sebasic
81
81
  ```
@@ -5,6 +5,6 @@ url: https://lewis8s.codes
5
5
 
6
6
  sebasic:
7
7
  date_format: "%B %d, %Y"
8
- twitter_user: realDonaldTrump
8
+ github_user: lewisrobbins
9
9
 
10
10
  theme: sebasic
@@ -0,0 +1,17 @@
1
+ <script
2
+ async
3
+ src="https://www.googletagmanager.com/gtag/js?id={{ site.google_analytics }}"
4
+ ></script>
5
+ <script>
6
+ window["ga-disable-{{ site.google_analytics }}"] =
7
+ window.doNotTrack === "1" ||
8
+ navigator.doNotTrack === "1" ||
9
+ navigator.doNotTrack === "yes" ||
10
+ navigator.msDoNotTrack === "1";
11
+ window.dataLayer = window.dataLayer || [];
12
+ function gtag() {
13
+ dataLayer.push(arguments);
14
+ }
15
+ gtag("js", new Date());
16
+ gtag("config", "{{ site.google_analytics }}");
17
+ </script>
@@ -1,6 +1,6 @@
1
1
  <header class="style_header">
2
2
  <nav>
3
3
  <a class="home_link" href="/">{{ site.title }}</a>
4
- <a class="follow_me" target="_blank" href="https://twitter.com/{{ site.sebasic.twitter_user }}">Follow Me</a>
4
+ <a class="follow_me" rel=”noopener noreferrer” target="_blank" href="https://github.com/{{ site.sebasic.github_user }}">Follow Me</a>
5
5
  </nav>
6
6
  </header>
@@ -6,7 +6,7 @@ layout: default
6
6
  </head>
7
7
 
8
8
  {%- if site.posts.size > 0 -%}
9
- <ul>
9
+ <ul class="home_list">
10
10
  {% for post in site.posts %}
11
11
  {% capture post_data %}{{ page.date | date: "%B %d, %Y" }}{% endcapture %}
12
12
 
@@ -24,7 +24,15 @@
24
24
  }
25
25
  /* index list of articles */
26
26
 
27
- ul, ol {
27
+ .content ul {
28
+ padding-left: 0.9rem;
29
+ }
30
+
31
+ .content li {
32
+ line-height: 1.5;
33
+ }
34
+
35
+ ul.home_list {
28
36
  list-style: none;
29
37
  }
30
38
  ul li {
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sebasic
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Lewis R
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-06-07 00:00:00.000000000 Z
11
+ date: 2020-06-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -91,6 +91,7 @@ files:
91
91
  - README.md
92
92
  - _config.yml
93
93
  - _includes/footer.html
94
+ - _includes/google-analytics.html
94
95
  - _includes/head.html
95
96
  - _includes/header.html
96
97
  - _layouts/default.html