quickstand 0.1.10 → 0.1.11
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/_layouts/post.html +12 -10
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: dd3bbbf79cac22c4e0888eed1445e51fbdc268cde15cce6e0f75f335473570cc
|
4
|
+
data.tar.gz: 3d6594e7317c988251eb7731dce12a154a5f2622c7882c4a04d52a87f23b38cd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2c843b468379eba0f3fcfb9e6f6a07c0beca809c2c4b562bff1ebe164c3885bbb6b23f8d7a3d398b693691925f121b01344de7e25674479d99a3d36fb499a321
|
7
|
+
data.tar.gz: 93a11c4c8af26f4062f4de61916fcd0d91cfd9b1126fa82656bbb03bbb0dbe4a9d600b764d8c5cf4aac7f804dd42f4f25428cdb0517034d7ecc41ded610089b2
|
data/_layouts/post.html
CHANGED
@@ -22,10 +22,22 @@ layout: default
|
|
22
22
|
{% for tag in page.tags %}
|
23
23
|
<span class="tag bg-{{tag.bg}}">{{ tag.text }}</span>
|
24
24
|
{% endfor %}
|
25
|
+
</div>
|
25
26
|
|
27
|
+
<div class="" style="padding: 10px">
|
26
28
|
{% include share_buttons.html %}
|
27
29
|
</div>
|
30
|
+
|
31
|
+
<div class="pagination">
|
32
|
+
{% if page.next.url %}
|
33
|
+
<a href="{{ page.next.url | prepend: site.baseurl }}" class="left arrow">←</a>
|
34
|
+
{% endif %}
|
35
|
+
{% if page.previous.url %}
|
36
|
+
<a href="{{ page.previous.url | prepend: site.baseurl }}" class="right arrow">→</a>
|
37
|
+
{% endif %}
|
28
38
|
|
39
|
+
<a href="#" class="top">Top</a>
|
40
|
+
</div>
|
29
41
|
|
30
42
|
</div>
|
31
43
|
|
@@ -33,13 +45,3 @@ layout: default
|
|
33
45
|
{% include disqus_comments.html %}
|
34
46
|
{% endif %}
|
35
47
|
|
36
|
-
<div class="pagination">
|
37
|
-
{% if page.next.url %}
|
38
|
-
<a href="{{ page.next.url | prepend: site.baseurl }}" class="left arrow">←</a>
|
39
|
-
{% endif %}
|
40
|
-
{% if page.previous.url %}
|
41
|
-
<a href="{{ page.previous.url | prepend: site.baseurl }}" class="right arrow">→</a>
|
42
|
-
{% endif %}
|
43
|
-
|
44
|
-
<a href="#" class="top">Top</a>
|
45
|
-
</div>
|