appscms-tools-theme 1.3.2 → 1.3.3
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 +4 -4
- 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: 9a92ddc18ae49d4184049f07951662b0a8fc3ef139f5b72c9672acf81ba531ac
|
|
4
|
+
data.tar.gz: 9fc65802bd17344b80cf9223e68221396b05915ca8bb1d619ae079c5d0192a4e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f71979382cdf1d1a358f5eece76760050491f61a5e55dcf45109385d5f8b545faac7442ec38ebee1e00e153815517e68dd4165f01d37e4ae01ed3d696c39c3ac
|
|
7
|
+
data.tar.gz: b5caf9982ebaa3d6e89b18d394b661d4a0b6b04f37df67512313ad224437173b5e46d09deca1a63b71d0b444d136bff019e709dcfa48aa1c2ecc09e9c98e22e1
|
data/_layouts/post.html
CHANGED
|
@@ -78,6 +78,7 @@
|
|
|
78
78
|
|
|
79
79
|
<div class="theseFeatures">
|
|
80
80
|
{%- if page.URLS -%}
|
|
81
|
+
{{page.URLS}}
|
|
81
82
|
<h3 class="font-weight-bolder">Checkout out these features</h3>
|
|
82
83
|
<br>
|
|
83
84
|
{%- for item in page.URLS -%}
|
|
@@ -88,9 +89,9 @@
|
|
|
88
89
|
<h3 class="font-weight-bolder">Checkout out these features</h3>
|
|
89
90
|
<br>
|
|
90
91
|
|
|
91
|
-
|
|
92
|
-
{%- for item in
|
|
93
|
-
{
|
|
92
|
+
{% assign tools = site.pages | where_exp:"item","item.tool" %}
|
|
93
|
+
{%- for item in tools limit: 10-%}
|
|
94
|
+
{% if item.tool %}
|
|
94
95
|
<p class="mb-3"> <a class="featureLink" style="font-size: 13px"
|
|
95
96
|
href="/{{item.permalink }}">{{item.permalink
|
|
96
97
|
|
|
|
@@ -100,7 +101,6 @@
|
|
|
100
101
|
{%- endif -%}
|
|
101
102
|
{%- endfor -%}
|
|
102
103
|
{%- endif -%}
|
|
103
|
-
|
|
104
104
|
</div>
|
|
105
105
|
</div>
|
|
106
106
|
</div>
|