logchimp 0.0.6 → 0.0.7

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: 7cb08aa70608438e727d4efeb1786a0253befa7c3fdc6a58f005b9a4a433e92e
4
- data.tar.gz: 0ff89eda0a38a41ee6a5930dc16e46a1843f6d83b14dc907e3242b3d122361e2
3
+ metadata.gz: fd698f56b0214b0413a009eb0f4457bcb14b43828967aea7a011dd5a41bd5f42
4
+ data.tar.gz: e13bf66dc9b9efef63560667a356b9f79d5f1982933feb3d6231bb437e25718a
5
5
  SHA512:
6
- metadata.gz: efb96f2883cf2a3f585f0d47303f942e7ef099a5d23b44e46cb13ce0a60d8de8cd599855bd30cfd2ebde8c400243e003b819a451b66267ff549a137f8d8a6526
7
- data.tar.gz: be421835775d09b184ed04695afb2293b13e341e9d40e5ea0414250054521db073f0f8e063f175dc85e05d8c33384c9a459e48bc9f1f85dbb9394f2880f77d3f
6
+ metadata.gz: b0ebea318e1c8bb4f6a8c936a1026c34e48675d224b92f3dfbaa7d97e1a36c5574ea0a73fd75aea328ab59a08c229697ea9c15ac3e7368cf282948049b1c29e2
7
+ data.tar.gz: c9c5ab33a3c521b57306654fa62a9450a2b0f9f05799cbad2ba5d5e8993817d3591159128b3aebde7ae7bc8a50494024972455ce163b42da06d1bac0ca1bd6f0
@@ -4,7 +4,7 @@
4
4
  {% for author in site.data.teams %}
5
5
  {% if post.author == author.name %}
6
6
  {% if author.image %}
7
- <img src="{{ author.image }}" alt="{{ author.name }}">
7
+ <img src="{{ author.image | relative_url }}" alt="{{ author.name }}">
8
8
  {% else %}
9
9
  <span class="authorImagePlaceholder">
10
10
  {{ author.name | slice: 0 }}
data/_includes/card.html CHANGED
@@ -1,6 +1,10 @@
1
1
  <li>
2
2
  <h2>{{ post.title }}</h2>
3
- <div class="time minWidth900">{{ post.date | timeago }}</div>
3
+ <div class="time minWidth900">
4
+ <a href="{{ post.url | relative_url }}">
5
+ {{ post.date | timeago }}
6
+ </a>
7
+ </div>
4
8
  <div class="category">
5
9
 
6
10
  {% include category.html %}
@@ -0,0 +1 @@
1
+ <svg viewBox="0 0 20 10"><g stroke="none" stroke-width="1"><g transform="translate(0.000000, -5.000000)"><polygon points="0.1 10.1277851 4.8706422 5.35714286 5.42110092 5.90760157 1.56788991 9.76081258 20.1 9.76081258 20.1 10.4947575 1.56788991 10.4947575 5.42110092 14.3479685 4.8706422 14.8984273"></polygon></g></g></svg>
data/_includes/meta.html CHANGED
@@ -1,3 +1,10 @@
1
+ <meta charset="utf-8">
2
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
3
+ <meta name="viewport" content="width=device-width, initial-scale=1">
4
+
1
5
  <title>{{ site.title }} | LogChimp</title>
2
6
 
7
+ <link rel="shortcut icon" href="{{ 'assets/img/logchimp.png' | relative_url }}" />
8
+ <link rel="icon" href="{{ 'assets/img/logchimp.png' | relative_url }}" />
9
+
3
10
  <link rel="stylesheet" href="{{ 'assets/css/style.css' | relative_url }}">
@@ -0,0 +1,60 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ <div class="container changelog-container">
6
+
7
+ <div class="newPost">
8
+ <a href="{{ '/' | relative_url }}">
9
+ {% include icons/back.svg %}Back
10
+ </a>
11
+ </div>
12
+
13
+ <li style="border-top: 1px solid #f3f3f3;">
14
+ <h2>{{ page.title }}</h2>
15
+ <div class="time minWidth900">
16
+ <a href="{{ page.url | relative_url }}">
17
+ {{ page.date | timeago }}
18
+ </a>
19
+ </div>
20
+ <div class="category">
21
+
22
+ {% if page.category %}
23
+ {% for categoryMeta in site.data.category %}
24
+ {% if page.category == categoryMeta.name %}
25
+ <div class="category-meta {% if page.author %}mb10{% endif %}" style="background-color: #{{ categoryMeta.color }}; border: 1px solid #{{ categoryMeta.color }};">
26
+ {{ page.category }}
27
+ </div>
28
+ {% else %}
29
+
30
+ {% endif %}
31
+ {% endfor %}
32
+ {% endif %}
33
+
34
+ <div class="time maxWidth900 {% if page.author %}mb10{% endif %}">
35
+ {{ page.date | timeago }}
36
+ </div>
37
+
38
+ {% if site.teams %}
39
+ <div class="author">
40
+ {% if page.author %}
41
+ {% for author in site.data.teams %}
42
+ {% if page.author == author.name %}
43
+ {% if author.image %}
44
+ <img src="{{ author.image | relative_url }}" alt="{{ author.name }}">
45
+ {% else %}
46
+ <span class="authorImagePlaceholder">
47
+ {{ author.name | slice: 0 }}
48
+ </span>
49
+ {% endif %}
50
+ <p class="authorName">{{ author.name }}, {{ author.job }}</p>
51
+ {% endif %}
52
+ {% endfor %}
53
+ {% endif %}
54
+ </div>
55
+ {% endif %}
56
+
57
+ </div>
58
+ <div class="content">{{ page.content }}</div>
59
+ </li>
60
+ </div>
@@ -2,6 +2,9 @@
2
2
  $white: #ffffff
3
3
  $black: #000000
4
4
 
5
+ // Link
6
+ $link: #3778ff
7
+
5
8
  // Typography
6
9
  $fontfamily: 'Roboto', sans-serif
7
10
  $code_fontfamily: 'Space Mono', monospace
@@ -13,7 +13,7 @@ ul, li
13
13
  list-style: none
14
14
 
15
15
  a
16
- color: #3778ff
16
+ color: $link
17
17
  text-decoration: none
18
18
 
19
19
  &:hover
@@ -10,6 +10,9 @@ li
10
10
  border-bottom: 1px solid #f3f3f3
11
11
  position: relative
12
12
 
13
+ &:first-child
14
+ border-top: 1px solid #f3f3f3
15
+
13
16
  h2
14
17
  font-size: 1.55rem
15
18
  font-weight: 500
@@ -2,9 +2,11 @@
2
2
  line-height: 1.45
3
3
  -webkit-transition: opacity .3s ease
4
4
  transition: opacity .3s ease
5
- color: rgba(71,82,93,.4)
6
5
  font-size: .9rem
7
6
 
7
+ a
8
+ color: rgba(71,82,93,.4)
9
+
8
10
  @media (max-width: 900px)
9
11
  .minWidth900
10
12
  display: none
@@ -1,2 +1,2 @@
1
1
  .changelog-container
2
- padding-top: 100px
2
+ padding-top: 90px
@@ -1 +1,2 @@
1
1
  @import 'index'
2
+ @import 'post'
@@ -0,0 +1,8 @@
1
+ .newPost
2
+ margin-bottom: 35px
3
+
4
+ a
5
+ svg
6
+ fill: $link
7
+ width: 20px
8
+ margin-right: 7px
Binary file
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logchimp
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.6
4
+ version: 0.0.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yashu Mittal
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-08-12 00:00:00.000000000 Z
11
+ date: 2018-08-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -93,11 +93,13 @@ files:
93
93
  - _includes/category.html
94
94
  - _includes/footer.html
95
95
  - _includes/header.html
96
+ - _includes/icons/back.svg
96
97
  - _includes/meta.html
97
98
  - _layouts/default.html
98
99
  - _layouts/empty.html
99
100
  - _layouts/home.html
100
101
  - _layouts/page.html
102
+ - _layouts/post.html
101
103
  - _sass/1-helpers/_functions.sass
102
104
  - _sass/1-helpers/_helpers.sass
103
105
  - _sass/1-helpers/_mixins.sass
@@ -117,8 +119,10 @@ files:
117
119
  - _sass/4-modules/_time.sass
118
120
  - _sass/5-pages/_index.sass
119
121
  - _sass/5-pages/_pages.sass
122
+ - _sass/5-pages/_post.sass
120
123
  - assets/css/style.sass
121
124
  - assets/img/happy.png
125
+ - assets/img/logchimp.png
122
126
  - assets/img/logchimp.svg
123
127
  homepage: https://gitlab.com/codecarrot/logchimp/logchimp
124
128
  licenses: