appscms-tools-theme 4.2.1 → 4.2.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (38) hide show
  1. checksums.yaml +4 -4
  2. data/_data/feature/en/compress-pdf.json +1 -309
  3. data/_data/home/en/en.json +429 -1
  4. data/_data/rating/rating.json +1 -1
  5. data/_includes/appscms/customblog/relatedposts.html +2 -2
  6. data/_includes/appscms/head/bloghead.html +7 -0
  7. data/_includes/appscms/head/head.html +9 -1
  8. data/_includes/appscms/headings/devtool-headings.html +38 -0
  9. data/_includes/appscms/home/devtool-feature-boxes.html +71 -0
  10. data/_includes/appscms/howto/howto.html +35 -45
  11. data/_includes/appscms/navbars/devtool-navbar.html +50 -0
  12. data/_includes/appscms/navbars/devtool-toolbar.html +100 -0
  13. data/_includes/appscms/searchbar/devtool-searchbar.html +63 -0
  14. data/_includes/customblog/pageRelatedPosts.html +1 -1
  15. data/_includes/customblog/recentposts.html +1 -1
  16. data/_includes/customblog/relatedBlogs.html +1 -1
  17. data/_includes/customblog/relatedposts.html +2 -2
  18. data/_includes/postbox.html +1 -1
  19. data/_includes/section/recent_posts.html +1 -1
  20. data/_includes/section/related_categories_post.html +2 -2
  21. data/_layouts/appscms-author.html +2 -2
  22. data/_layouts/appscms-blog.html +1 -1
  23. data/_layouts/author.html +2 -2
  24. data/_layouts/blog-1.html +1 -1
  25. data/_layouts/blog.html +1 -1
  26. data/_layouts/devtool-blog.html +132 -0
  27. data/_layouts/devtool-feature.html +55 -0
  28. data/_layouts/devtool-home.html +54 -0
  29. data/_layouts/devtools.html +1 -1
  30. data/_layouts/feature.html +299 -387
  31. data/_layouts/home.html +248 -266
  32. data/assets/css/appscms-blog.css +1 -0
  33. data/assets/css/appscms-contenttool.css +1 -0
  34. data/assets/css/appscms-theme.css +1 -0
  35. data/assets/css/blog.css +1 -0
  36. data/assets/css/devtool-main.css +1351 -0
  37. data/assets/css/tools.css +21 -0
  38. metadata +12 -3
@@ -0,0 +1,55 @@
1
+ {% assign file = page.fileName %} {% assign lang = page.lang %} {% assign folder
2
+ = page.folderName %} {% assign pageData = site.data[folder][lang][file] %} {%-
3
+ assign boxColor = site.data[page.folderName][page.lang][page.fileName].color -%}
4
+
5
+ <!DOCTYPE html>
6
+ <html lang="{{ page.lang }}">
7
+ {%- include appscms/head/head.html -%}
8
+ <body>
9
+ {%- include appscms/navbars/navbar.html -%} {%- include
10
+ appscms/navbars/toolbar.html -%} {%- include bookmark.html -%} {%- if
11
+ site.safeui -%}
12
+ <div
13
+ class="alert alert-{{pageData.variant | default: 'primary'}} fade show text-center"
14
+ role="alert"
15
+ id="safeui-alert"
16
+ >
17
+ <div class="container">
18
+ {%- if pageData.alertmsg -%} {{pageData.alertmsg}} {%- else -%} We do
19
+ not upload any files to server, hence your data is 100% secure. {%-
20
+ endif -%}
21
+ </div>
22
+ </div>
23
+ {%- endif -%} {%- include appscms/headings/headings.html -%} {%- include
24
+ appscms/uploadbutton/uploadbutton.html -%} {%- include
25
+ appscms/featurehighlight/featurehighlight.html -%} {%- include
26
+ appscms/howto/howto.html -%} {%- if pageData.infographics.size > 0 -%} {%-
27
+ include appscms/infographics/infographics.html -%} {%- endif -%} {%- include
28
+ appscms/faq/faq.html -%}
29
+ <!-- {%- include
30
+ appscms/extras/traffic-count.html -%} -->
31
+ {%- if site.userTrackingCount -%} {%- include userTracking.html -%} {%-
32
+ endif -%} {%- assign langen = "en" -%} {%- if
33
+ site.data[folder][langen][file].categories -%} {% assign categories=
34
+ site.data[folder][langen][file].categories %} {%- else -%} {% assign
35
+ categories= page.categories %} {%- endif -%} {%- if
36
+ site.data[folder][langen][file].tags -%} {% assign tags=
37
+ site.data[folder][langen][file].tags %} {%- else -%} {% assign tags=
38
+ page.tags %} {%- endif -%} {%- if pageData.posts.size > 0 -%} {%- include
39
+ appscms/customblog/pageRelatedPosts.html -%} {%- else -%} {%- if
40
+ categories.size > 0 or tags.size > 0 -%} {%- include
41
+ appscms/recent-posts/related_categories_post.html -%} {%- else -%} {%-
42
+ include appscms/recent-posts/recent_posts.html -%} {%- endif -%} {%- endif
43
+ -%} {%- if site.customblogdata -%} {%- if categories.size> 0 or
44
+ tags.size>0-%} {%- include appscms/customblog/relatedposts.html -%} {%- else
45
+ -%} {%- include appscms/customblog/recentposts.html -%} {% endif %} {%-
46
+ endif -%} {%- include appscms/extras/ratings.html -%} {%- if
47
+ pageData.author.size > 0 -%} {% include
48
+ appscms/featurePageAuthors/featurePageAuthors.html %} {%- endif -%} {%-
49
+ include appscms/footer/products.html -%} {%- include
50
+ appscms/footer/footer.html -%} {%- if site.customCode -%} {%- include
51
+ customCode.html -%} {%- endif -%} {%- include appscms/scripts/script.html
52
+ -%}
53
+ </body>
54
+ </html>
55
+
@@ -0,0 +1,54 @@
1
+ {% assign file = page.fileName %} {% assign lang = page.lang %} {% assign folder
2
+ = page.folderName %} {% assign pageData = site.data[folder][lang][file] %} {%-
3
+ assign boxColor = site.data[page.folderName][page.lang][page.fileName].color -%}
4
+ <!DOCTYPE html>
5
+ <html lang="{{ page.lang }}">
6
+ {%- include appscms/head/head.html -%}
7
+ <body>
8
+ {%- include appscms/navbars/devtool-navbar.html -%} {%- include
9
+ appscms/navbars/devtool-toolbar.html -%} {%- if homeData.nofileupload -%}
10
+ <div
11
+ id="safeui-alert"
12
+ class="alert alert-{{homeData.variant | default: 'primary'}} fade show text-center"
13
+ role="alert"
14
+ >
15
+ <div class="container">
16
+ {%- if homeData.alertmsg -%} {{homeData.alertmsg}} {%- else -%} We do
17
+ not upload any files to server, hence your data is 100% secure. {%-
18
+ endif -%}
19
+ </div>
20
+ </div>
21
+ {%- endif -%} {%- include appscms/headings/devtool-headings.html -%} {%- if
22
+ site.search -%} {%- include appscms/searchbar/devtool-searchbar.html -%} {%- endif
23
+ -%}
24
+
25
+ <!-- {%- include
26
+ appscms/category-tabs/category-tabs.html -%} -->
27
+ {%- include appscms/home/devtool-feature-boxes.html -%}
28
+ <div class="appcms-home-content-box" id="appcms-home-content-box">
29
+ {{ content }}
30
+ </div>
31
+ {%- assign langen = "en" -%} {%- if
32
+ site.data[folder][langen][file].categories -%} {% assign categories=
33
+ site.data[folder][langen][file].categories %} {%- else -%} {% assign
34
+ categories= page.categories %} {%- endif -%} {%- if
35
+ site.data[folder][langen][file].tags -%} {% assign tags=
36
+ site.data[folder][langen][file].tags %} {%- else -%} {% assign tags=
37
+ page.tags %} {%- endif -%} {%- if pageData.posts.size > 0 -%} {%- include
38
+ appscms/customblog/pageRelatedPosts.html -%} {%- else -%} {%- if
39
+ categories.size > 0 or tags.size > 0 -%} {%- include
40
+ appscms/recent-posts/related_categories_post.html -%} {%- else -%} {%-
41
+ include appscms/recent-posts/recent_posts.html -%} {%- endif -%} {%- endif
42
+ -%} {%- if site.customblogdata -%} {%- if categories.size> 0 or
43
+ tags.size>0-%} {%- include appscms/customblog/relatedposts.html -%} {%- else
44
+ -%} {%- include appscms/customblog/recentposts.html -%} {% endif %} {%-
45
+ endif -%}
46
+
47
+ <!--
48
+ {%- include
49
+ appscms/extras/traffic-count.html -%} -->
50
+ {%- include appscms/footer/products.html -%} {%- include
51
+ appscms/footer/footer.html -%} {%- include appscms/scripts/script.html -%}
52
+ </body>
53
+ </html>
54
+
@@ -1,5 +1,5 @@
1
1
  ---
2
- layout: home
2
+ layout: devtool-feature
3
3
  ---
4
4
  <div class="container">
5
5
  <div class="row">