appscms-tools-theme 4.3.9 → 4.4.0
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/_data/header/en/data.json +920 -17649
- data/_includes/appscms/head/bloghead.html +6 -69
- data/_includes/appscms/home/contenttool-feature-boxes.html +1 -1
- data/_includes/appscms/navbars/toolbar.html +6 -1
- data/assets/css/appscms-feature.css +6 -1
- data/assets/css/appscms-theme.css +1 -3
- metadata +2 -2
|
@@ -68,7 +68,7 @@
|
|
|
68
68
|
{%- endif -%}
|
|
69
69
|
|
|
70
70
|
<meta charset="UTF-8" />
|
|
71
|
-
<link rel="shortcut icon" href="{{favicon}}" />
|
|
71
|
+
<link rel="shortcut icon" href="{{site.favicon}}" />
|
|
72
72
|
<link rel="canonical" href="{{site.url | append: page.url}}" />
|
|
73
73
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
|
|
74
74
|
<meta name="keywords" content="{{site.keyboard}}" />
|
|
@@ -120,73 +120,10 @@
|
|
|
120
120
|
{%- if page.layout == "blog-1" -%}
|
|
121
121
|
<link rel="stylesheet" href="{{'/assets/css/blog-1.css' | relative_url }}" {%- if site.crossorigin -%} crossorigin {%-
|
|
122
122
|
endif -%} />
|
|
123
|
-
{%- endif -%}
|
|
124
|
-
== 'production' and site.monumetricId %}
|
|
125
|
-
<script>
|
|
126
|
-
const autoLoadDuration = 5; //In Seconds
|
|
127
|
-
const eventList = [
|
|
128
|
-
"keydown",
|
|
129
|
-
"mousemove",
|
|
130
|
-
"wheel",
|
|
131
|
-
"touchmove",
|
|
132
|
-
"touchstart",
|
|
133
|
-
"touchend",
|
|
134
|
-
];
|
|
123
|
+
{%- endif -%}
|
|
135
124
|
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
});
|
|
141
|
-
|
|
142
|
-
function triggerScripts() {
|
|
143
|
-
runScripts();
|
|
144
|
-
clearTimeout(autoLoadTimeout);
|
|
145
|
-
eventList.forEach(function (event) {
|
|
146
|
-
window.removeEventListener(event, triggerScripts, { passive: true });
|
|
147
|
-
});
|
|
148
|
-
}
|
|
149
|
-
|
|
150
|
-
function runScripts() {
|
|
151
|
-
document.querySelectorAll("script[delay]").forEach(function (scriptTag) {
|
|
152
|
-
scriptTag.setAttribute("src", scriptTag.getAttribute("delay"));
|
|
153
|
-
});
|
|
154
|
-
}
|
|
155
|
-
</script>
|
|
156
|
-
<script type="text/javascript" defer delay="{{site.monumetricId}}" data-cfasync="false"></script>
|
|
157
|
-
{% endif %} {% if jekyll.environment == 'development' and site.monumetricId %}
|
|
158
|
-
<script>
|
|
159
|
-
const autoLoadDuration = 5; //In Seconds
|
|
160
|
-
const eventList = [
|
|
161
|
-
"keydown",
|
|
162
|
-
"mousemove",
|
|
163
|
-
"wheel",
|
|
164
|
-
"touchmove",
|
|
165
|
-
"touchstart",
|
|
166
|
-
"touchend",
|
|
167
|
-
];
|
|
168
|
-
|
|
169
|
-
const autoLoadTimeout = setTimeout(runScripts, autoLoadDuration * 1000);
|
|
170
|
-
|
|
171
|
-
eventList.forEach(function (event) {
|
|
172
|
-
window.addEventListener(event, triggerScripts, { passive: true });
|
|
173
|
-
});
|
|
174
|
-
|
|
175
|
-
function triggerScripts() {
|
|
176
|
-
runScripts();
|
|
177
|
-
clearTimeout(autoLoadTimeout);
|
|
178
|
-
eventList.forEach(function (event) {
|
|
179
|
-
window.removeEventListener(event, triggerScripts, { passive: true });
|
|
180
|
-
});
|
|
181
|
-
}
|
|
182
|
-
|
|
183
|
-
function runScripts() {
|
|
184
|
-
document.querySelectorAll("script[delay]").forEach(function (scriptTag) {
|
|
185
|
-
scriptTag.setAttribute("src", scriptTag.getAttribute("delay"));
|
|
186
|
-
});
|
|
187
|
-
}
|
|
188
|
-
</script>
|
|
189
|
-
<script type="text/javascript" delay="{{site.monumetricId}}"></script>
|
|
190
|
-
|
|
191
|
-
{% endif %}
|
|
125
|
+
<link rel="manifest" href="/assets/js/manifest.json" />
|
|
126
|
+
|
|
127
|
+
{%- include google-analytics.html -%}
|
|
128
|
+
|
|
192
129
|
</head>
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<div class="container" id="appscms-tools-section">
|
|
2
|
-
<div class="appscms-contenttool-container">
|
|
2
|
+
<div class="appscms-contenttool-container" id="appscms-tools-section-row">
|
|
3
3
|
{% for item in pageData.features %}
|
|
4
4
|
<a href="{{item.url}}">
|
|
5
5
|
<div class="appscms-contenttool-tool">
|
|
@@ -66,7 +66,12 @@
|
|
|
66
66
|
<div class="row">
|
|
67
67
|
{%- assign count = 0 -%} {% for i in item.links %} {% assign count
|
|
68
68
|
= count | plus:1 %} {%- if count == 1 -%}
|
|
69
|
-
|
|
69
|
+
{%- if site.name == "olarandoms" -%}
|
|
70
|
+
<div class="col-xl-6">
|
|
71
|
+
{%- else -%}
|
|
72
|
+
|
|
73
|
+
<div class="col-md-6 col-lg-4">
|
|
74
|
+
{%- endif -%}
|
|
70
75
|
{%- endif -%} {% if count == 6 %}
|
|
71
76
|
<li>
|
|
72
77
|
<a class="toolbar-link" href="{{i.url}}">{{i.name}}</a>
|
|
@@ -338,8 +338,13 @@
|
|
|
338
338
|
.carousel-inner {
|
|
339
339
|
display: flex;
|
|
340
340
|
flex-wrap: nowrap;
|
|
341
|
+
justify-content: center;
|
|
342
|
+
}
|
|
343
|
+
@media screen and (max-width: 768px) {
|
|
344
|
+
.carousel-inner {
|
|
345
|
+
justify-content: normal;
|
|
346
|
+
}
|
|
341
347
|
}
|
|
342
|
-
|
|
343
348
|
.slide {
|
|
344
349
|
flex: 0 0 calc(100% / 3);
|
|
345
350
|
scroll-snap-align: start;
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: appscms-tools-theme
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 4.
|
|
4
|
+
version: 4.4.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- vivek-appscms
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-
|
|
11
|
+
date: 2024-03-01 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|