quickstand 0.1.12 → 0.1.13

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c4f7d6383a364b9fea30859066d0bb49c4119f1a2c5b3661fc58529960d59be1
4
- data.tar.gz: d297b94f2d4898bc5fbb25cbeb5174b0a0bd4e389fe97c6315b58af468631a30
3
+ metadata.gz: ff128800d703812f24aae7a6fd4707473023e6745eb50d6fa8d3380050685b0a
4
+ data.tar.gz: 7136d4b529e62915a18ff5335afb3cea8b51c89dfd3860fb2f877726d2710996
5
5
  SHA512:
6
- metadata.gz: c51d779c78232239f9c67f71b5b52e97fcfbfb38ab096de5b8697d9c508033615ebe8edc0ffec02d5cf0f2b1ab3fa4cc28deaf11b9ac0d1f59f013426a65b919
7
- data.tar.gz: a0fa7474c1ef430eaf729aa9e103342487de28f9742944436df5e57f0b151710c2198eb104835f519ae2623fbd51f55ef21d2f07e2841e21780d3ecdd82c716a
6
+ metadata.gz: 3984998c0441eccdf2956de1fa9a036e76aa4809527c0dac9822a2292be95d38dc86b5c819b45c8b4cd03962d3cd008981b2d23f3d6ef918f3a30b5833cfd4e2
7
+ data.tar.gz: 0dd27dd8cc04abe027908898daa62f5e5c97e4cb0be860462f880e10d906062fdeece399a625f367185eb1c9ed8b6c5c02c93170ce0093520ed8d7d7e1f5175e
data/_layouts/home.html CHANGED
@@ -11,7 +11,7 @@ layout: default
11
11
  <div class="catalogue-line"></div>
12
12
 
13
13
  <p>
14
- {{ post.content | strip_html | truncatewords: 30 }}
14
+ {{ post.subtitle }}
15
15
  </p>
16
16
 
17
17
  {% for tag in post.tags %}
data/_layouts/post.html CHANGED
@@ -3,19 +3,37 @@ layout: default
3
3
  ---
4
4
 
5
5
  <div class="post">
6
+
7
+ <h1 class="post-title">{{ page.title }}</h1>
8
+
6
9
  <div class="post-info">
7
- <small>
8
- <span>Written by</span>
9
- <a href="{{ page.author.link }}" class="">{{ page.author.name }}</a>
10
- {% if page.date %}
11
- <span>on&nbsp;</span><time datetime="{{ page.date }}">{{ page.date | date: "%B %d, %Y" }}</time>
12
- {% endif %}
13
- </small>
10
+ <div class="">
11
+ <small>
12
+ <span>Written by</span>
13
+ <a href="{{ page.author.link }}" class="">{{ page.author.name }}</a>
14
+ {% if page.date %}
15
+ <span>on&nbsp;</span><time datetime="{{ page.date }}">{{ page.date | date: "%B %d, %Y" }}</time>
16
+ {% endif %}
17
+ </small>
18
+ </div>
19
+ <div class="">
20
+ <small>
21
+ {% capture words %}
22
+ {{ content | number_of_words | minus: 180 }}
23
+ {% endcapture %}
24
+ {% unless words contains '-' %}
25
+ {{ words | plus: 180 | divided_by: 180 | append: ' minutes to read' }}
26
+ {% endunless %}
27
+ </small>
28
+ </div>
14
29
  </div>
15
30
 
16
- <h1 class="post-title">{{ page.title }}</h1>
17
31
  <div class="post-line"></div>
18
32
 
33
+ <div class="post-subtitle">
34
+ <i class="">{{page.subtitle}}</i>
35
+ </div>
36
+
19
37
  {{ content }}
20
38
 
21
39
  <div class="" style="padding: 10px">
@@ -4,6 +4,12 @@
4
4
  border-radius: 4px;
5
5
  }
6
6
 
7
+ .text {
8
+ &-white {
9
+ color: white;
10
+ }
11
+ }
12
+
7
13
  .bg {
8
14
  @each $name, $colour in $colour_map {
9
15
  &-#{$name} {color: white; background-color: $colour }
@@ -38,6 +44,7 @@
38
44
  font-family: $serif-secondary;
39
45
  letter-spacing: 0.5px;
40
46
  text-align: center;
47
+ margin: 1rem 0;
41
48
 
42
49
  span {
43
50
  font-style: italic;
@@ -52,6 +59,13 @@
52
59
  text-align: center;
53
60
  }
54
61
 
62
+ &-subtitle {
63
+ color: $default-tint;
64
+ font-family: $sans-serif;
65
+ font-size: 1.0rem;
66
+ margin: 1rem 0;
67
+ }
68
+
55
69
  &-line {
56
70
  border-top: 0.4rem solid $default-shade;
57
71
  display: block;
@@ -12,9 +12,9 @@ $code-color: #bf616a;
12
12
 
13
13
  $primary: #FF5765;
14
14
  $secondary: #4686f4;
15
- $tertiary: #FFDB15; //DC3522; // #FF9B71;
16
- $quaternary:#A8E10C; // #fd5e60;
17
- $quinary: #FF9B71;
15
+ $tertiary: #08cf0e; //DC3522; // #FF9B71;
16
+ $quaternary:#7d08cf; // #fd5e60;
17
+ $quinary: #cfc708;
18
18
 
19
19
  $lightheap: #35978f;
20
20
  $divshow: #8A6FDF;
data/assets/logo.ico ADDED
Binary file
data/assets/logo.png ADDED
Binary file
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: quickstand
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.12
4
+ version: 0.1.13
5
5
  platform: ruby
6
6
  authors:
7
7
  - Prashant Khanduri
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-04-18 00:00:00.000000000 Z
11
+ date: 2020-04-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -97,6 +97,8 @@ files:
97
97
  - _sass/quickstand/_variables.scss
98
98
  - assets/.DS_Store
99
99
  - assets/js/disqusLoader.js
100
+ - assets/logo.ico
101
+ - assets/logo.png
100
102
  - assets/main.scss
101
103
  homepage: https://bitbucket.org/khanduri/quickstand
102
104
  licenses: