appscms-tools-theme 1.2.4 → 1.2.8

Sign up to get free protection for your applications and to get access to all the features.
Files changed (52) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +0 -2
  3. data/_data/files/.gitignore +4 -0
  4. data/_data/files/README.md +1 -0
  5. data/_data/files/en/3gp.json +145 -1
  6. data/_data/files/en/acc.json +26 -1
  7. data/_data/files/en/aff.json +66 -1
  8. data/_data/files/en/cr2.json +170 -1
  9. data/_data/files/en/dvd.json +26 -1
  10. data/_data/files/en/mov.json +147 -1
  11. data/_data/files/en/ogg.json +164 -1
  12. data/_data/files/en/vmv.json +48 -1
  13. data/_data/home/en/en.json +35 -2
  14. data/_data/rating/rating.json +1 -1
  15. data/_includes/adsense/adsense.html +7 -0
  16. data/_includes/custom-head.html +39 -30
  17. data/_includes/feature.html +36 -0
  18. data/_includes/fileformat/comparisonfiles.html +4 -4
  19. data/_includes/head/index.html +156 -141
  20. data/_layouts/post.html +104 -28
  21. data/assets/css/blog.css +5 -1
  22. data/assets/fileimg/2DVHHaP.jpeg +0 -0
  23. data/assets/fileimg/38J4iOl.jpeg +0 -0
  24. data/assets/fileimg/5938cLE.jpeg +0 -0
  25. data/assets/fileimg/6z9n45v.jpeg +0 -0
  26. data/assets/fileimg/7Z9sNdy.jpeg +0 -0
  27. data/assets/fileimg/7xNWYRA.jpeg +0 -0
  28. data/assets/fileimg/82vepge.jpeg +0 -0
  29. data/assets/fileimg/8aN9yEj.jpeg +0 -0
  30. data/assets/fileimg/AuNqAKT.jpeg +0 -0
  31. data/assets/fileimg/Cc9amsH.jpeg +0 -0
  32. data/assets/fileimg/FdqTl1x.jpeg +0 -0
  33. data/assets/fileimg/H7CZmss.jpeg +0 -0
  34. data/assets/fileimg/Kp0egqG.jpeg +0 -0
  35. data/assets/fileimg/MX9qrvZ.jpeg +0 -0
  36. data/assets/fileimg/Mt9PAUF.jpeg +0 -0
  37. data/assets/fileimg/NY9GTXm.jpeg +0 -0
  38. data/assets/fileimg/PLx4Opv.jpeg +0 -0
  39. data/assets/fileimg/QdcouPN.jpeg +0 -0
  40. data/assets/fileimg/XYvKzO9.jpeg +0 -0
  41. data/assets/fileimg/XxsKREw.jpeg +0 -0
  42. data/assets/fileimg/c2PuNRk.jpeg +0 -0
  43. data/assets/fileimg/cPO8bqH.jpeg +0 -0
  44. data/assets/fileimg/fVyIEs4.jpeg +0 -0
  45. data/assets/fileimg/ffv3iNy.jpeg +0 -0
  46. data/assets/fileimg/jcTagMw.jpeg +0 -0
  47. data/assets/fileimg/nrsG7Ys.jpeg +0 -0
  48. data/assets/fileimg/sOBpiyF.jpeg +0 -0
  49. data/assets/fileimg/t2WljZe.jpeg +0 -0
  50. data/assets/fileimg/wcqHWtb.jpeg +0 -0
  51. metadata +18 -4
  52. data/assets/js/googledriveinput.js +0 -126
@@ -1,32 +1,41 @@
1
1
  <head>
2
- {% assign favicon = site.favicon %}
3
- {%- assign seo_description = page.description | default: page.excerpt | default: site.description -%}
4
- {%- if seo_description -%}
5
- {%- assign seo_description = seo_description | markdownify | strip_html | strip_newlines | escape_once -%}
6
- {%- endif -%}
7
- {%- if page.date -%}
8
- {%- assign og_type = "article" -%}
9
- {%- else -%}
10
- {%- assign og_type = "website" -%}
11
- {%- endif -%}
12
- <meta charset="UTF-8">
13
- <link rel="shortcut icon" href="{{favicon}}">
14
- <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
15
- <meta name="keywords" content="{{site.keyboard}}">
16
- <meta name="description" content="{{ seo_description | slice: 0, 155 }}">
17
- <meta name="og:description" content="{{ seo_description | slice: 0, 155 }}">
18
- <meta property="og:title" content="{{ page.title | default: site.title }}">
19
- <meta property="og:type" content="{{og_type}}">
20
- <meta property="og:locale" content="en_US">
21
- <meta property="og:site_name" content="{{site.name}}">
22
- <meta property="og:url" content="{{site.url | append: page.url}}">
23
- <meta name="author" content="{{ site.author_name }}">
24
- <title>{{page.title}}</title>
25
- <link href="https://fonts.googleapis.com/css2?family=Open+Sans&display=swap" rel="stylesheet">
26
- <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.0/css/all.min.css" />
27
- <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css">
28
- <link rel="stylesheet" href="{{'/assets/css/blog.css' | relative_url }}">
29
- <script src="https://code.jquery.com/jquery-3.5.1.js"></script>
2
+ {% assign favicon = site.favicon %} {%- assign seo_description =
3
+ page.description | default: page.excerpt | default: site.description -%} {%-
4
+ if seo_description -%} {%- assign seo_description = seo_description |
5
+ markdownify | strip_html | strip_newlines | escape_once -%} {%- endif -%} {%-
6
+ if page.date -%} {%- assign og_type = "article" -%} {%- else -%} {%- assign
7
+ og_type = "website" -%} {%- endif -%}
8
+ <meta charset="UTF-8" />
9
+ <link rel="shortcut icon" href="{{favicon}}" />
10
+ <meta
11
+ name="viewport"
12
+ content="width=device-width, initial-scale=1, shrink-to-fit=no"
13
+ />
14
+ <meta name="keywords" content="{{site.keyboard}}" />
15
+ <meta name="description" content="{{ seo_description | slice: 0, 155 }}" />
16
+ <meta name="og:description" content="{{ seo_description | slice: 0, 155 }}" />
17
+ <meta property="og:title" content="{{ page.title | default: site.title }}" />
18
+ <meta property="og:type" content="{{og_type}}" />
19
+ <meta property="og:locale" content="en_US" />
20
+ <meta property="og:site_name" content="{{site.name}}" />
21
+ <meta property="og:url" content="{{site.url | append: page.url}}" />
22
+ <meta name="author" content="{{ site.author_name }}" />
23
+ <title>{{page.title}}</title>
24
+ <link
25
+ href="https://fonts.googleapis.com/css2?family=Open+Sans&display=swap"
26
+ rel="stylesheet"
27
+ />
28
+ <link
29
+ rel="stylesheet"
30
+ href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.0/css/all.min.css"
31
+ />
32
+ <link
33
+ rel="stylesheet"
34
+ href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css"
35
+ />
36
+ {% include adsense/adsense.html %}
37
+ <link rel="stylesheet" href="{{'/assets/css/blog.css' | relative_url }}" />
38
+ <script src="https://code.jquery.com/jquery-3.5.1.js"></script>
30
39
 
31
- {%- include google-analytics.html -%}
32
- </head>
40
+ {%- include google-analytics.html -%}
41
+ </head>
@@ -0,0 +1,36 @@
1
+ {% assign path = page.jsonFile %}
2
+ {% assign jsonPath = site.data[path] %}
3
+ {% assign dataToShow = jsonPath %}
4
+ <div class="container-fluid">
5
+ <div class="row">
6
+ <div class="col-xl-3 col-lg-12">
7
+ <div class="row">
8
+ <div class="col-xl-3 p-0">
9
+ <div class="feature">
10
+ <img src="/assets/images/left_obj_01.png" alt="">
11
+ <span class="site-no"> {{dataToShow.featureNo}}</span>
12
+ <h5 class="title">{{dataToShow.feature_title}}</h5>
13
+ <p class="description">{{dataToShow.feature_description}}</p>
14
+ </div>
15
+ </div>
16
+ </div>
17
+ </div>
18
+ <div class="col-xl-9 col-lg-12">
19
+ <div class="row text-center">
20
+ {% for entry in dataToShow.featureList %}
21
+ <div class="col-lg-4 col-md-6 my-3">
22
+ <div class="card-body h-100">
23
+ <i loading="lazy" class="{{ entry.fa_class }} FA"></i>
24
+ <h5 class="card-title">
25
+ {{ entry.feature_heading }}
26
+ </h5>
27
+ <p class="card-text" style="color: #a7a7a7;
28
+ font-size: 14px;">{{ entry.feature_text}}</p>
29
+ </div>
30
+ </div>
31
+ {% endfor %}
32
+ </div>
33
+ </div>
34
+ </div>
35
+ </div>
36
+ <link rel="stylesheet" href="{{ 'css/feature.css' | relative_url }}">
@@ -65,28 +65,28 @@
65
65
  {%- endif -%}
66
66
  {%- if firstFile.Createdby or secondFile.Createdby -%}
67
67
  <tr>
68
- <th scope="row">CreatedbyName</th>
68
+ <th scope="row">Created by</th>
69
69
  <td> <a class="software-name" href="{{firstFile.CreatedbyLink}}"> {{firstFile.Createdby}}</a></td>
70
70
  <td> <a class="software-name" href="{{secondFile.CreatedbyLink}}"> {{secondFile.Createdby}}</a></td>
71
71
  </tr>
72
72
  {%- endif -%}
73
73
  {%- if firstFile.CreatedInYear or secondFile.CreatedInYear -%}
74
74
  <tr>
75
- <th scope="row">CreatedInYear</th>
75
+ <th scope="row">Created in </th>
76
76
  <td>{{firstFile.CreatedInYear}}</td>
77
77
  <td>{{secondFile.CreatedInYear}}</td>
78
78
  </tr>
79
79
  {%- endif -%}
80
80
  {%- if firstFile.BasicInformation or secondFile.BasicInformation -%}
81
81
  <tr>
82
- <th scope="row">BasicInformation</th>
82
+ <th scope="row">Basic information</th>
83
83
  <td>{{firstFile.BasicInformation}}</td>
84
84
  <td>{{secondFile.BasicInformation}}</td>
85
85
  </tr>
86
86
  {%- endif -%}
87
87
  {%- if firstFile.DetailedInformation or secondFile.DetailedInformation -%}
88
88
  <tr>
89
- <th scope="row">DetailedInformation</th>
89
+ <th scope="row">Detailed information</th>
90
90
  <td>{{firstFile.DetailedInformation}}</td>
91
91
  <td>{{secondFile.DetailedInformation}}</td>
92
92
  </tr>
@@ -1,144 +1,159 @@
1
1
  <head>
2
- {% assign file = page.fileName %}
3
- {% assign lang = page.lang %}
4
- {% assign dataArr = site.data.[page.folderName][lang][file] %}
5
- {% assign dataToShow = dataArr %}
6
- {% assign title = dataToShow.TITLE | replace:"$variable", page.value | default:page.title | default: site.title %}
7
- {% assign description = dataToShow.META | replace:"$variable", page.value | default: site.description %}
8
- {% assign keywords = dataToShow.keywords %}
9
- {% assign favicon = site.favicon %}
10
- {%- assign langsupport = page.langsupport -%}
11
- {%- assign variable = site.data.languagesupport[langsupport]-%}
12
- {{site.weburl}}
13
- <meta charset="utf-8">
14
- <link rel="shortcut icon" href="{{favicon}}">
15
- <meta name="viewport" content="width=device-width">
16
- <title>{{title}}</title>
17
- {%- if dataToShow.keywords -%}
18
- <meta name="keywords" content="{{keywords}}" />
19
- {%- endif -%}
20
- <meta name="description" content="{{description}}">
21
- <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/css/bootstrap.min.css" integrity="sha384-B0vP5xmATw1+K9KRQjQERJvTumQW0nPEzvF6L/Z6nronJ3oUOFUFpCjEUQouq2+l" crossorigin="anonymous">
22
- <link rel="canonical" href="{{site.url | append: page.url}}">
23
- <link href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300;400;600&display=swap" rel="stylesheet">
24
- <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w==" crossorigin="anonymous" referrerpolicy="no-referrer" />
25
- <link rel="stylesheet" href="/assets/css/tools.css">
26
- <meta data-rh="true" property="og:image" content="{{site.url}}{{favicon}}">
27
- <meta property="og:title" content="{{title}}">
28
- <meta property="og:description" content="{{description}}">
29
- <meta property="og:type" content="website">
30
- <meta data-rh="true" property="og:url" content="{{site.url | append: page.url}}">
31
- <meta data-rh="true" property="og:site_name" content="{{site.name}}">
32
- <meta data-rh="true" property="twitter:domain" content="{{site.url}}">
33
- <meta data-rh="true" property="twitter:url" content="{{site.url | append: page.url}}">
34
- <meta data-rh="true" name="twitter:title" content="{{title}}">
35
- <meta data-rh="true" name="twitter:description" content="{{description}}">
36
- <meta data-rh="true" name="twitter:image:src" content="{{site.url}}{{favicon}}">
37
- {%- if page.noindex -%}
38
- <meta name="robots" content="noindex">
39
- {%- endif -%}
40
-
41
- {%- if site.pwa -%}
42
- <link rel="manifest" href="/assets/js/manifest.json">
43
- {%- endif -%}
44
- {%- for item in variable.langsupport -%}
45
- <link data-rh="true" rel="alternate" href="{{site.url | append: item.permalink}}" hreflang="{{item.hreflang}}">
46
- {%- endfor -%}
47
- {% include cssfile/links.html %}
48
- <script type="application/ld+json">
49
- {
50
- "@context": "http://schema.org",
51
- "@type": "Organization",
52
- "url": "{{site.siteurl}}",
53
- "logo": "{{site.siteurl}}{{site.logo}}"
54
- }
55
- </script>
56
- <script type="application/ld+json">
57
- {
58
- "@context": "http://schema.org",
59
- "@type": "WebSite",
60
- "name": "{{site.name}}",
61
- "alternateName": "{{site.alternateName}}",
62
- "url": "{{site.siteurl}}"}
63
- </script>
64
- {%- if dataToShow.HOW_TO_CONTENT -%}
65
- {%- if dataToShow.HOW_TO_CONTENT.heading != '' -%}
66
- <script type="application/ld+json">
67
- {
68
- "@context": "http://schema.org",
69
- "@type": "HowTo",
70
- "name": "{{dataToShow.HOW_TO_CONTENT.heading | replace:'"', "'" }}",
71
- "image": "{{site.siteurl}}{{dataToShow.HOW_TO_CONTENT.logoImageUrl}}",
72
- "step": [
73
- {%- for item in dataToShow.HOW_TO_CONTENT.steps-%}
74
- {%- if forloop.last == true -%}
75
- { "@type": "HowToStep",
76
- "text": "{{item | replace:'"', "'" }}",
77
- "image": "{{site.siteurl}}{{dataToShow.HOW_TO_CONTENT.logoImageUrl}}",
78
- "url": "{{site.url | append: page.url}}#step{{ forloop.index }}"
79
- }
80
- {%- else -%}
81
- { "@type": "HowToStep",
82
- "text": "{{item | replace:'"', "'" }}",
83
- "image": "{{site.siteurl}}{{dataToShow.HOW_TO_CONTENT.logoImageUrl}}",
84
- "url": "{{site.url | append: page.url}}#step{{ forloop.index}}"
85
- },
86
- {%- endif -%}
87
- {%- endfor -%}
88
- ]
89
- }
90
- </script>
91
- {%- endif -%}
92
- {%- endif -%}
93
-
94
- {%- if dataToShow.FAQ -%}
95
- {%- if dataToShow.FAQ.first.question !='' -%}
96
- <script type="application/ld+json">
97
- {
98
- "@context": "http://schema.org",
99
- "@type": "FAQPage",
100
- "mainEntity": [
101
- {%- for item in dataToShow.FAQ-%}
102
- {%- if forloop.last == true -%}
103
- {"@type": "Question",
104
- "name": "{{item.question | replace:'"', "'" }}",
105
- "acceptedAnswer": {
106
- "@type": "Answer",
107
- "text": "{{item.answer | replace:'"', "'" }}"
108
- }
109
- }
110
- {%- else -%}
111
- {"@type": "Question",
112
- "name": "{{item.question | replace:'"', "'" }}",
113
- "acceptedAnswer": {
114
- "@type": "Answer",
115
- "text": "{{item.answer | replace:'"', "'" }}"
116
- }
117
- },
118
- {%- endif -%}
119
- {%- endfor -%}
120
- ]
2
+ {% assign file = page.fileName %} {% assign lang = page.lang %} {% assign
3
+ dataArr = site.data.[page.folderName][lang][file] %} {% assign dataToShow =
4
+ dataArr %} {% assign title = dataToShow.TITLE | replace:"$variable",
5
+ page.value | default:page.title | default: site.title %} {% assign description
6
+ = dataToShow.META | replace:"$variable", page.value | default:
7
+ site.description %} {% assign keywords = dataToShow.keywords %} {% assign
8
+ favicon = site.favicon %} {%- assign langsupport = page.langsupport -%} {%-
9
+ assign variable = site.data.languagesupport[langsupport]-%} {{site.weburl}}
10
+ <meta charset="utf-8" />
11
+ <link rel="shortcut icon" href="{{favicon}}" />
12
+ <meta name="viewport" content="width=device-width" />
13
+ <title>{{title}}</title>
14
+ {%- if dataToShow.keywords -%}
15
+ <meta name="keywords" content="{{keywords}}" />
16
+ {%- endif -%}
17
+ <meta name="description" content="{{description}}" />
18
+ <link
19
+ rel="stylesheet"
20
+ href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/css/bootstrap.min.css"
21
+ integrity="sha384-B0vP5xmATw1+K9KRQjQERJvTumQW0nPEzvF6L/Z6nronJ3oUOFUFpCjEUQouq2+l"
22
+ crossorigin="anonymous"
23
+ />
24
+ <link rel="canonical" href="{{site.url | append: page.url}}" />
25
+ <link
26
+ href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300;400;600&display=swap"
27
+ rel="stylesheet"
28
+ />
29
+ <link
30
+ rel="stylesheet"
31
+ href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"
32
+ integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w=="
33
+ crossorigin="anonymous"
34
+ referrerpolicy="no-referrer"
35
+ />
36
+ <link rel="stylesheet" href="/assets/css/tools.css" />
37
+ <meta data-rh="true" property="og:image" content="{{site.url}}{{favicon}}" />
38
+ <meta property="og:title" content="{{title}}" />
39
+ <meta property="og:description" content="{{description}}" />
40
+ <meta property="og:type" content="website" />
41
+ <meta
42
+ data-rh="true"
43
+ property="og:url"
44
+ content="{{site.url | append: page.url}}"
45
+ />
46
+ <meta data-rh="true" property="og:site_name" content="{{site.name}}" />
47
+ <meta data-rh="true" property="twitter:domain" content="{{site.url}}" />
48
+ <meta
49
+ data-rh="true"
50
+ property="twitter:url"
51
+ content="{{site.url | append: page.url}}"
52
+ />
53
+ <meta data-rh="true" name="twitter:title" content="{{title}}" />
54
+ <meta data-rh="true" name="twitter:description" content="{{description}}" />
55
+ <meta
56
+ data-rh="true"
57
+ name="twitter:image:src"
58
+ content="{{site.url}}{{favicon}}"
59
+ />
60
+ {% include adsense/adsense.html %} {%- if page.noindex -%}
61
+ <meta name="robots" content="noindex" />
62
+ {%- endif -%} {%- if site.pwa -%}
63
+ <link rel="manifest" href="/assets/js/manifest.json" />
64
+ {%- endif -%} {%- for item in variable.langsupport -%}
65
+ <link
66
+ data-rh="true"
67
+ rel="alternate"
68
+ href="{{site.url | append: item.permalink}}"
69
+ hreflang="{{item.hreflang}}"
70
+ />
71
+ {%- endfor -%} {% include cssfile/links.html %}
72
+ <script type="application/ld+json">
73
+ {
74
+ "@context": "http://schema.org",
75
+ "@type": "Organization",
76
+ "url": "{{site.siteurl}}",
77
+ "logo": "{{site.siteurl}}{{site.logo}}"
78
+ }
79
+ </script>
80
+ <script type="application/ld+json">
81
+ {
82
+ "@context": "http://schema.org",
83
+ "@type": "WebSite",
84
+ "name": "{{site.name}}",
85
+ "alternateName": "{{site.alternateName}}",
86
+ "url": "{{site.siteurl}}"
87
+ }
88
+ </script>
89
+ {%- if dataToShow.HOW_TO_CONTENT -%} {%- if dataToShow.HOW_TO_CONTENT.heading
90
+ != '' -%}
91
+ <script type="application/ld+json">
92
+ {
93
+ "@context": "http://schema.org",
94
+ "@type": "HowTo",
95
+ "name": "{{dataToShow.HOW_TO_CONTENT.heading | replace:'"', "'" }}",
96
+ "image": "{{site.siteurl}}{{dataToShow.HOW_TO_CONTENT.logoImageUrl}}",
97
+ "step": [
98
+ {%- for item in dataToShow.HOW_TO_CONTENT.steps-%}
99
+ {%- if forloop.last == true -%}
100
+ { "@type": "HowToStep",
101
+ "text": "{{item | replace:'"', "'" }}",
102
+ "image": "{{site.siteurl}}{{dataToShow.HOW_TO_CONTENT.logoImageUrl}}",
103
+ "url": "{{site.url | append: page.url}}#step{{ forloop.index }}"
121
104
  }
122
- </script>
123
- {%- endif -%}
124
- {%- endif -%}
125
-
126
-
127
- {%- if page.tool -%}
128
- {%- include Rating/structureddata.html -%}
129
- {%- endif -%}
130
- {%- include google-analytics.html -%}
131
- {%- if site.pwa -%}
132
- <script>
133
- if ('serviceWorker' in navigator) {
134
- window.addEventListener('load', () => {
135
- navigator.serviceWorker.register('/serviceworker.js')
136
- .then((reg) => console.log('Success: ', reg.scope))
137
- .catch((err) => console.log('Failure: ', err));
138
- })
139
- }
140
- </script>
105
+ {%- else -%}
106
+ { "@type": "HowToStep",
107
+ "text": "{{item | replace:'"', "'" }}",
108
+ "image": "{{site.siteurl}}{{dataToShow.HOW_TO_CONTENT.logoImageUrl}}",
109
+ "url": "{{site.url | append: page.url}}#step{{ forloop.index}}"
110
+ },
141
111
  {%- endif -%}
142
-
143
- </head>
144
-
112
+ {%- endfor -%}
113
+ ]
114
+ }
115
+ </script>
116
+ {%- endif -%} {%- endif -%} {%- if dataToShow.FAQ -%} {%- if
117
+ dataToShow.FAQ.first.question !='' -%}
118
+ <script type="application/ld+json">
119
+ {
120
+ "@context": "http://schema.org",
121
+ "@type": "FAQPage",
122
+ "mainEntity": [
123
+ {%- for item in dataToShow.FAQ-%}
124
+ {%- if forloop.last == true -%}
125
+ {"@type": "Question",
126
+ "name": "{{item.question | replace:'"', "'" }}",
127
+ "acceptedAnswer": {
128
+ "@type": "Answer",
129
+ "text": "{{item.answer | replace:'"', "'" }}"
130
+ }
131
+ }
132
+ {%- else -%}
133
+ {"@type": "Question",
134
+ "name": "{{item.question | replace:'"', "'" }}",
135
+ "acceptedAnswer": {
136
+ "@type": "Answer",
137
+ "text": "{{item.answer | replace:'"', "'" }}"
138
+ }
139
+ },
140
+ {%- endif -%}
141
+ {%- endfor -%}
142
+ ]
143
+ }
144
+ </script>
145
+ {%- endif -%} {%- endif -%} {%- if page.tool -%} {%- include
146
+ Rating/structureddata.html -%} {%- endif -%} {%- include google-analytics.html
147
+ -%} {%- if site.pwa -%}
148
+ <script>
149
+ if ('serviceWorker' in navigator) {
150
+ window.addEventListener('load', () => {
151
+ navigator.serviceWorker
152
+ .register('/serviceworker.js')
153
+ .then((reg) => console.log('Success: ', reg.scope))
154
+ .catch((err) => console.log('Failure: ', err))
155
+ })
156
+ }
157
+ </script>
158
+ {%- endif -%}
159
+ </head>
data/_layouts/post.html CHANGED
@@ -1,6 +1,34 @@
1
1
  <html>
2
2
 
3
3
  {% include custom-head.html %}
4
+
5
+
6
+ <style>
7
+ p {
8
+ margin-bottom: 3rem;
9
+ }
10
+
11
+ .mainThings {
12
+ padding-left: 40px;
13
+ position: sticky;
14
+ top: 80px;
15
+ }
16
+
17
+ .theseFeatures .featureLink:hover {
18
+ text-decoration: underline !important;
19
+ }
20
+
21
+ @media (max-width:768px) {
22
+ .theseFeatures {
23
+ text-align: center !important;
24
+ padding-left: 0;
25
+ position: static;
26
+ top: auto;
27
+ }
28
+
29
+ }
30
+ </style>
31
+
4
32
  <body>
5
33
  {%- include header/blogHeader.html -%}
6
34
  <section class="section_post">
@@ -11,31 +39,6 @@
11
39
  </div>
12
40
  </div>
13
41
  <div class="row mt-5">
14
- <div class="col-md-2">
15
- <div class="socialIons">
16
- <ul class="list-unstyled item-lists2">
17
- <li><a style="pointer-events: none;">{{ site.data.blog.share.label }}</a></li>
18
- {% capture title %}{{ page.title }}{% endcapture %}
19
- {% assign url = page.url | relative_url | prepend: site.url %}
20
- {% for share in site.data.blog.share.platforms %}
21
- {% assign link = share.link | replace: 'TITLE', title | replace: 'URL', url %}
22
- <li> <a href=" {{ link }}" data-toggle="tooltip"
23
- onclick="window.open(this.href, 'pop-up', 'left=20,top=20,width=500,height=500,toolbar=1,resizable=0'); return false;"
24
- data-placement="top" title="{{ share.type }}" aria-label="{{ share.type }}">
25
- <i class="fa-fw {{ share.icon }}"></i>
26
- </a>
27
- </li>
28
- {% endfor %}
29
- </span>
30
- </ul>
31
- <div class="sep"></div>
32
- <div class="comments-count">
33
- <a href="{{ content.absolute_url }}#disqus_thread" class="comment_count"></a>
34
- </div>
35
- </ul>
36
- </div>
37
- </div>
38
-
39
42
  <div class="col-md-8">
40
43
  {%- include authors/authors.html -%}
41
44
  {%- include postauthorbio.html -%}
@@ -45,20 +48,93 @@
45
48
  <div class="post-content">
46
49
  {{ content }}
47
50
  </div>
48
-
51
+
49
52
  {%- include paginationPostPage.html -%}
53
+ </div>
54
+ <div class="col-md-4">
55
+ <div class="mainThings">
56
+ <div class="socialIons">
57
+ <ul class="list-unstyled item-lists2">
58
+ <li><a style="pointer-events: none;">{{ site.data.blog.share.label }}</a></li>
59
+ {% capture title %}{{ page.title }}{% endcapture %}
60
+ {% assign url = page.url | relative_url | prepend: site.url %}
61
+ {% for share in site.data.blog.share.platforms %}
62
+ {% assign link = share.link | replace: 'TITLE', title | replace: 'URL', url %}
63
+ <li> <a href=" {{ link }}" data-toggle="tooltip"
64
+ onclick="window.open(this.href, 'pop-up', 'left=20,top=20,width=500,height=500,toolbar=1,resizable=0'); return false;"
65
+ data-placement="top" title="{{ share.type }}" aria-label="{{ share.type }}">
66
+ <i class="fa-fw {{ share.icon }}"></i>
67
+ </a>
68
+ </li>
69
+ {% endfor %}
70
+ </span>
71
+ </ul>
72
+ <!-- <div class="sep"></div> -->
73
+ <div class="comments-count">
74
+ <a href="{{ content.absolute_url }}#disqus_thread" class="comment_count"></a>
75
+ </div>
76
+ </ul>
77
+ </div>
78
+
79
+ <div class="theseFeatures">
80
+ {%- if page.URLS -%}
81
+ <h3 class="font-weight-bolder">Checkout out these features</h3>
82
+ <br>
83
+ {%- for item in page.URLS -%}
84
+ <p class="mb-3"> <a class="featureLink" style="font-size: 13px"
85
+ href="{{item.url}}">{{item.name}}</a></p>
86
+ {%- endfor -%}
87
+ {% else %}
88
+ <h3 class="font-weight-bolder">Checkout out these features</h3>
89
+ <br>
90
+
91
+ {%- for item in site.pages limit: 12-%}
92
+ {%- if
93
+ item.name != "about.md" and
94
+ item.name != 'categories.md' and
95
+ item.name != 'contact.md' and
96
+ item.name != 'download.md' and
97
+ item.name != "example.md" and
98
+ item.name != 'fileinfo.md' and
99
+ item.name != 'googledrive.js' and
100
+ item.name != 'disclaimer.md' and
101
+ item.name != 'help.md' and
102
+ item.name != 'termsandconditions.md' and
103
+ item.name != 'index.html' and
104
+ item.name != 'privacy.md' and
105
+ item.name != 'index-hi.md'
106
+ -%}
107
+
108
+
109
+
110
+
111
+ <p class="mb-3"> <a class="featureLink" style="font-size: 13px"
112
+ href="/{{item.permalink }}">{{item.permalink
113
+ |
114
+ capitalize |
115
+ replace: '-', ' '
116
+ }}</a></p>
117
+ {%- endif -%}
118
+ {%- endfor -%}
119
+ {%- endif -%}
120
+
121
+ </div>
122
+ </div>
123
+ </div>
124
+ <div class="col-md-12">
50
125
  {%- if page.categories or page.tags-%}
51
126
  {%- include section/related_categories_post.html -%}
52
127
  {%- else -%}
53
128
  {%- include section/recent_posts.html -%}
54
129
  {% endif %}
55
- <div class="commentsection">
130
+ <div class="commentsection my-5">
56
131
  {%- if site.disqus.shortname -%}
57
132
  {%- include disqus_comments.html -%}
58
133
  {%- endif -%}
59
134
  </div>
60
135
  </div>
61
136
  </div>
137
+ </div>
62
138
  </section>
63
139
  {%- include section/count.html -%}
64
140
  {%- include section/alertbar.html -%}
@@ -66,4 +142,4 @@
66
142
  <script src="{{ '/assets/js/TopScroll.js' | relative_url }}"></script>
67
143
  </body>
68
144
 
69
- </html>
145
+ </html>