appscms-tools-theme 2.0.2 → 2.0.5

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: 61bae0ae6d86fa991c6435bdf21fe8e903a09b484bf415584445da2ead4c3f77
4
- data.tar.gz: 5315b0ec7b49fd2eb1619ee901a91a7aa8742e5bf6ef1b01a7cce5116910092d
3
+ metadata.gz: d641c198fd933cd2983036db74bac2cb0022adc3634fbd99cd8963c676191456
4
+ data.tar.gz: b6386718370901403ff2110736fa5d159f4b1db73d1e1d559035d17a17183912
5
5
  SHA512:
6
- metadata.gz: 78ebf2cc948fa04b3b61aa8fc34e97533612f25fc8577252e0cfb58b824ddf0ec183abe8d5a4bc3af029fea9b787e8c4a3baee3f8e78dd55e829f45c0f06aaa6
7
- data.tar.gz: cc11e027aae40b9dd84540c7a1ee87998cdc6126351af5e7534bd79e3bfb9b8b2c3a465b1474cf3579b8276b662641250644426660241323150665ebe4070898
6
+ metadata.gz: 6d79cfbcac5cd0a643d14c69a0d415cea120653e0d1cff6c5560fdc49ccbd6f455f3ac2d4cbd3c1308edeed0e7fdde4f25bec0b046211feca9f7eef89695c5c3
7
+ data.tar.gz: b5f73bf0e6d673abc43a3b37b334bc748f0fe8e4abe8b3a9a551f2c7211facd802e4c6cab72df098696794f5827ad3749eb2770caf35016b0f224bc9a9af6ee0
@@ -34,6 +34,17 @@ writer is hidden in me. You can found me with my laptop either coding or writing
34
34
  {% assign shubhangi = "Shubhangi Singh&&/assets/images/sona.jpeg&&I am pursuing a degree in computer science and love
35
35
  reading. I am also a BTS Army and enjoy anime and K-dramas. My favourite pastime is reading on Wattpad.&&N/A" | split:
36
36
  '&&' %}
37
+ {% assign balark = "Balark Singhal&&/assets/images/balark.jpeg&&I am a poet and a writer, a few of them also got
38
+ published
39
+ in some anthologies like Brave Heart of the motherland, and Scarlet Wings.I love to write Shayari and poetries and also
40
+ in my free time I like to do skating, swimming and read books.&&N/A" | split:
41
+ '&&' %}
42
+ {% assign udit = "Udit Agarwal&&/assets/images/udit.jpg&&Udit Agarwal is a Digital Marketer and a Content
43
+ Marketing Specialist, He enjoys technical as well as non-technical writing. His passion and urge for gaining new
44
+ insights has led him here. He quenches his thirst for technology through his action oriented writing skills and a
45
+ profound ability to stay up to date with latest industry trends.&&N/A" | split:
46
+ '&&' %}
47
+
37
48
  {%- assign postAuthor = post.author | split: " " -%}
38
49
  {%- assign author = postAuthor.first | downcase -%}
39
50
  {%- assign collection = [author] -%}
@@ -77,18 +77,19 @@
77
77
  {%- else -%}
78
78
  <meta name="description" content="{{description}}" />
79
79
  {%- endif -%}
80
- <link rel="stylesheet" href="/assets/css/bootstrap.min.css" {%- if site.crossorigin -%} {{ }} crossorigin="anonymous" {%-
81
- endif -%}>
80
+ <link rel="stylesheet" href="/assets/css/bootstrap.min.css" {%- if site.crossorigin -%} {{ }} crossorigin="anonymous"
81
+ {%- endif -%}>
82
82
  <link rel="canonical" href="{{site.url | append: page.url}}" />
83
83
  {%- if dataToShow.css -%}
84
- <link rel="stylesheet" href="{{dataToShow.css}}" {%- if site.crossorigin -%} {{ }} crossorigin="anonymous" {%- endif -%} />
85
- {%- else -%}
86
- <link rel="stylesheet" href="/assets/css/tools.css" {%- if site.crossorigin -%} {{ }} crossorigin="anonymous" {%- endif
84
+ <link rel="stylesheet" href="{{dataToShow.css}}" {%- if site.crossorigin -%} {{ }} crossorigin="anonymous" {%- endif
87
85
  -%} />
86
+ {%- else -%}
87
+ <link rel="stylesheet" href="/assets/css/tools.css" {%- if site.crossorigin -%} {{ }} crossorigin="anonymous" {%-
88
+ endif -%} />
88
89
  {%- endif -%}
89
90
  {%- if site.monumetricId -%}
90
- <link rel="stylesheet" href="/assets/css/responsive.css" {%- if site.crossorigin -%} {{ }} crossorigin="anonymous" {%- endif
91
- -%} />
91
+ <link rel="stylesheet" href="/assets/css/responsive.css" {%- if site.crossorigin -%} {{ }} crossorigin="anonymous" {%-
92
+ endif -%} />
92
93
  {%- endif -%}
93
94
 
94
95
  <meta data-rh="true" property="og:image" content="{{site.url}}{{favicon}}" />
@@ -206,4 +207,6 @@
206
207
  {%- include monumetric/monumetric.html -%}
207
208
  {%- endif -%}
208
209
 
210
+ {%- include monumetric/ads.html -%}
211
+
209
212
  </head>
@@ -0,0 +1,58 @@
1
+ {% if page.url != '/' %}
2
+ {% if jekyll.environment == 'production' and site.adsId %}
3
+ <script>
4
+ const autoLoadDuration = 5; //In Seconds
5
+ const eventList = ["keydown", "mousemove", "wheel", "touchmove", "touchstart", "touchend"];
6
+
7
+ const autoLoadTimeout = setTimeout(runScripts, autoLoadDuration * 1000);
8
+
9
+ eventList.forEach(function (event) {
10
+ window.addEventListener(event, triggerScripts, { passive: true })
11
+ });
12
+
13
+ function triggerScripts() {
14
+ runScripts();
15
+ clearTimeout(autoLoadTimeout);
16
+ eventList.forEach(function (event) {
17
+ window.removeEventListener(event, triggerScripts, { passive: true });
18
+ });
19
+ }
20
+
21
+ function runScripts() {
22
+ document.querySelectorAll("script[delay]").forEach(function (scriptTag) {
23
+ scriptTag.setAttribute("src", scriptTag.getAttribute("delay"));
24
+ });
25
+ }
26
+ </script>
27
+ <script type="text/javascript" delay="/assets/js/ads.js"></script>
28
+ {% endif %}
29
+
30
+ {% if jekyll.environment == 'development' and site.adsId %}
31
+ <script>
32
+ const autoLoadDuration = 5; //In Seconds
33
+ const eventList = ["keydown", "mousemove", "wheel", "touchmove", "touchstart", "touchend"];
34
+
35
+ const autoLoadTimeout = setTimeout(runScripts, autoLoadDuration * 1000);
36
+
37
+ eventList.forEach(function (event) {
38
+ window.addEventListener(event, triggerScripts, { passive: true })
39
+ });
40
+
41
+ function triggerScripts() {
42
+ runScripts();
43
+ clearTimeout(autoLoadTimeout);
44
+ eventList.forEach(function (event) {
45
+ window.removeEventListener(event, triggerScripts, { passive: true });
46
+ });
47
+ }
48
+
49
+ function runScripts() {
50
+ document.querySelectorAll("script[delay]").forEach(function (scriptTag) {
51
+ scriptTag.setAttribute("src", scriptTag.getAttribute("delay"));
52
+ });
53
+ }
54
+ </script>
55
+ <script type="text/javascript" delay="/assets/js/ads.js"></script>
56
+
57
+ {% endif %}
58
+ {% endif %}
@@ -53,5 +53,6 @@
53
53
  }
54
54
  </script>
55
55
  <script type="text/javascript" delay="{{site.monumetricId}}"></script>
56
+
56
57
  {% endif %}
57
58
  {% endif %}
Binary file
Binary file
Binary file
Binary file
data/assets/js/ads.js ADDED
@@ -0,0 +1 @@
1
+ (function(s,u,z,p){s.src=u,s.setAttribute('data-zone',z),p.appendChild(s);})(document.createElement('script'),'https://inklinkor.com/tag.min.js',5225477,document.body%7C%7Cdocument.documentElement)
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: 2.0.2
4
+ version: 2.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - vivek-appscms
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-06-30 00:00:00.000000000 Z
11
+ date: 2022-07-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -116,6 +116,7 @@ files:
116
116
  - _includes/header/blogHeader.html
117
117
  - _includes/header/index.html
118
118
  - _includes/languages/languages.html
119
+ - _includes/monumetric/ads.html
119
120
  - _includes/monumetric/monumetric.html
120
121
  - _includes/nofiletransfer/nofiletransfer.html
121
122
  - _includes/paginationBlogPage.html
@@ -279,6 +280,7 @@ files:
279
280
  - assets/images/adblock.svg
280
281
  - assets/images/alka.webp
281
282
  - assets/images/avatar.png
283
+ - assets/images/balark.jpeg
282
284
  - assets/images/fileformat.webp
283
285
  - assets/images/keshav.webp
284
286
  - assets/images/krutika.jpeg
@@ -288,10 +290,14 @@ files:
288
290
  - assets/images/safevideoconverter.svg
289
291
  - assets/images/siddhika.jpeg
290
292
  - assets/images/sona.jpeg
293
+ - assets/images/udit.jpeg
294
+ - assets/images/udit.jpg
295
+ - assets/images/udit.png
291
296
  - assets/images/uo.svg
292
297
  - assets/instagram.svg
293
298
  - assets/js/TopScroll.js
294
299
  - assets/js/adBlocker.js
300
+ - assets/js/ads.js
295
301
  - assets/js/featureResult.js
296
302
  - assets/js/googledrive.js
297
303
  - assets/js/homeResult.js