appscms-tools-theme 0.4.2 → 0.4.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (70) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE.txt +21 -21
  3. data/README.md +52 -52
  4. data/_data/{pages → about/en}/about.json +11 -7
  5. data/_data/blog/alertbar.yml +3 -3
  6. data/_data/blog/authors.yml +11 -11
  7. data/_data/blog/blog.yml +3 -3
  8. data/_data/blog/nav.json +13 -13
  9. data/_data/blog/share.yml +28 -29
  10. data/_data/contact/en/contact.json +40 -0
  11. data/_data/disclaimer/en/disclaimer.json +36 -0
  12. data/_data/feature/en/compress-pdf.json +142 -77
  13. data/_data/feature/en/split-pdf.json +143 -0
  14. data/_data/feature/hi/compress-pdf.json +81 -30
  15. data/_data/footer/en/data.json +84 -84
  16. data/_data/footer/hi/data.json +85 -0
  17. data/_data/header/en/data.json +144 -58
  18. data/_data/header/hi/data.json +137 -0
  19. data/_data/{pages → help/en}/help.json +6 -7
  20. data/_data/home/en/en.json +80 -0
  21. data/_data/home/{hi.json → hi/hi.json} +48 -31
  22. data/_data/languagesupport/compress-pdf-langs.json +12 -0
  23. data/_data/languagesupport/index-langs.json +12 -0
  24. data/_data/privacy/en/privacyPolicy.json +264 -0
  25. data/_data/termAndCondition/en/termAndCondition.json +357 -0
  26. data/_includes/author_bio.html +11 -11
  27. data/_includes/custom-head.html +29 -33
  28. data/_includes/disqus_comments.html +10 -10
  29. data/_includes/dropdown/langdropdown.html +22 -0
  30. data/_includes/footer/index.html +55 -75
  31. data/_includes/head/index.html +44 -48
  32. data/_includes/header/blogHeader.html +31 -31
  33. data/_includes/header/index.html +56 -33
  34. data/_includes/paginationBlogPage.html +34 -34
  35. data/_includes/paginationPostPage.html +14 -14
  36. data/_includes/postbox.html +37 -37
  37. data/_includes/script.html +11 -4
  38. data/_includes/section/alertbar.html +11 -11
  39. data/_includes/section/count.html +23 -23
  40. data/_includes/share/socialshare.html +22 -0
  41. data/_layouts/aboutUs.html +19 -24
  42. data/_layouts/blog.html +71 -75
  43. data/_layouts/categories.html +24 -24
  44. data/_layouts/contactUs.html +46 -23
  45. data/_layouts/default.html +1 -1
  46. data/_layouts/disclaimer.html +47 -0
  47. data/_layouts/feature.html +121 -138
  48. data/_layouts/help.html +20 -23
  49. data/_layouts/home.html +41 -45
  50. data/_layouts/page.html +5 -5
  51. data/_layouts/post.html +63 -68
  52. data/_layouts/privacyPolicy.html +48 -0
  53. data/_layouts/termAndCondition.html +46 -23
  54. data/assets/cross.svg +4 -4
  55. data/assets/css/blog.css +464 -464
  56. data/assets/css/tools.css +1426 -3052
  57. data/assets/facebook.svg +4 -4
  58. data/assets/instagram.svg +4 -4
  59. data/assets/js/TopScroll.js +8 -9
  60. data/assets/linkdin.svg +4 -4
  61. data/assets/pdf.svg +20 -20
  62. data/assets/star.svg +4 -4
  63. data/assets/twitter.svg +4 -4
  64. data/assets/youtube.svg +4 -4
  65. metadata +23 -15
  66. data/_data/head/en/data.json +0 -0
  67. data/_data/home/en.json +0 -48
  68. data/_data/pages/contact.json +0 -8
  69. data/_data/pages/termAndCondition.json +0 -8
  70. data/_includes/uploader/index.html +0 -69
@@ -1,35 +1,35 @@
1
- <!-- pagination -->
2
- <div class="bottompagination">
3
- <div class="pointerup"><i class="fa fa-caret-up"></i></div>
4
- <span class="navigation" role="navigation"></span>
5
- </div>
6
- {% if paginator.total_pages > 1 %}
7
- <div class="blog-pagination">
8
- {% if paginator.previous_page %}
9
- <a style="color: #00ab6b; font-weight: 900;"
10
- href="{{ paginator.previous_page_path | prepend: site.baseurl | replace: '//', '/' }}">&laquo; Prev</a>
11
- {% else %}
12
- <span class="text-muted">&laquo; Prev</span>
13
- {% endif %}
14
-
15
- {% for page in (1..paginator.total_pages) %}
16
- {% if page == paginator.page %}
17
- <span class="webjeda text-muted">{{ page }}</span>
18
- {% elsif page == 1 %}
19
- <a href="/blog" style="color: #00ab6b; font-weight: 900;">{{ page }}</a>
20
- {% else %}
21
- <a style="color: #00ab6b; font-weight: 900;"
22
- href="{{ site.paginate_path | prepend: site.baseurl | replace: '//', '/' | replace: ':num', page }}">{{ page
23
- }}</a>
24
- {% endif %}
25
- {% endfor %}
26
-
27
- {% if paginator.next_page %}
28
- <a style="color:#00ab6b; font-weight: 900;"
29
- href="{{ paginator.next_page_path | prepend: site.baseurl | replace: '//', '/' }}">Next
30
- &raquo;</a>
31
- {% else %}
32
- <span class="text-muted">Next &raquo;</span>
33
- {% endif %}
34
- </div>
1
+ <!-- pagination -->
2
+ <div class="bottompagination">
3
+ <div class="pointerup"><i class="fa fa-caret-up"></i></div>
4
+ <span class="navigation" role="navigation"></span>
5
+ </div>
6
+ {% if paginator.total_pages > 1 %}
7
+ <div class="blog-pagination">
8
+ {% if paginator.previous_page %}
9
+ <a style="color: #00ab6b; font-weight: 900;"
10
+ href="{{ paginator.previous_page_path | prepend: site.baseurl | replace: '//', '/' }}">&laquo; Prev</a>
11
+ {% else %}
12
+ <span class="text-muted">&laquo; Prev</span>
13
+ {% endif %}
14
+
15
+ {% for page in (1..paginator.total_pages) %}
16
+ {% if page == paginator.page %}
17
+ <span class="webjeda text-muted">{{ page }}</span>
18
+ {% elsif page == 1 %}
19
+ <a href="/blog" style="color: #00ab6b; font-weight: 900;">{{ page }}</a>
20
+ {% else %}
21
+ <a style="color: #00ab6b; font-weight: 900;"
22
+ href="{{ site.paginate_path | prepend: site.baseurl | replace: '//', '/' | replace: ':num', page }}">{{ page
23
+ }}</a>
24
+ {% endif %}
25
+ {% endfor %}
26
+
27
+ {% if paginator.next_page %}
28
+ <a style="color:#00ab6b; font-weight: 900;"
29
+ href="{{ paginator.next_page_path | prepend: site.baseurl | replace: '//', '/' }}">Next
30
+ &raquo;</a>
31
+ {% else %}
32
+ <span class="text-muted">Next &raquo;</span>
33
+ {% endif %}
34
+ </div>
35
35
  {% endif %}
@@ -1,15 +1,15 @@
1
- <div class="post-links">
2
- <div class="bottompagination">
3
- <div class="pointerup"><i class="fa fa-caret-up"></i></div>
4
- <span class="navigation" role="navigation">
5
- <div class="pagination">
6
- {% if page.previous.url %}
7
- <a class="ml-1 mr-1 pageUrl" href="{{page.previous.url}}">« Prev</a>
8
- {% endif %}
9
- {% if page.next.url %}
10
- <a class="ml-1 mr-1 pageUrl" href="{{page.next.url}}"> Next »</a>
11
- {% endif %}
12
- </div>
13
- </span>
14
- </div>
1
+ <div class="post-links">
2
+ <div class="bottompagination">
3
+ <div class="pointerup"><i class="fa fa-caret-up"></i></div>
4
+ <span class="navigation" role="navigation">
5
+ <div class="pagination">
6
+ {% if page.previous.url %}
7
+ <a class="ml-1 mr-1 pageUrl" href="{{page.previous.url}}">« Prev</a>
8
+ {% endif %}
9
+ {% if page.next.url %}
10
+ <a class="ml-1 mr-1 pageUrl" href="{{page.next.url}}"> Next »</a>
11
+ {% endif %}
12
+ </div>
13
+ </span>
14
+ </div>
15
15
  </div>
@@ -1,38 +1,38 @@
1
- <!-- begin post -->
2
- <div class="col-lg-4 col-md-6 mb-4 card-group">
3
- <div class="card h-100">
4
- <a href="{{ post.url }}">
5
- <img src="{{ post.image }}" class="card-img-top" alt="">
6
- </a>
7
- <div class="card-body">
8
- <a href="{{ post.url }}" class="anchor_link">
9
- <h4 class="card-title mb-4">{{ post.title }}</h4>
10
- </a>
11
- </div>
12
-
13
- {% assign author = site.data.blog.authors[post.author] %}
14
- <div class="card-footer bg-white">
15
- <div class="wrapfooter">
16
- {% if post.author %}
17
- <span class="meta-footer-thumb">
18
- <img class="author-thumb" src="{{ author.image }}" alt="{{ author.name }}">
19
- </span>
20
- {% endif %}
21
-
22
- <span class="author-meta">
23
- <span class="post-name">
24
- <a target="_blank" href="/blog">{{post.author}}</a>
25
- </span><br>
26
- <span class="post-date">{{post.date | date_to_string }}</span>
27
- </span>
28
- <span class="post-read-more"><a href="{{ post.url }}" title="Read Story"><svg class="svgIcon-use"
29
- width="25" height="25" viewBox="0 0 25 25">
30
- <path
31
- d="M19 6c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2v14.66h.012c.01.103.045.204.12.285a.5.5 0 0 0 .706.03L12.5 16.85l5.662 4.126a.508.508 0 0 0 .708-.03.5.5 0 0 0 .118-.285H19V6zm-6.838 9.97L7 19.636V6c0-.55.45-1 1-1h9c.55 0 1 .45 1 1v13.637l-5.162-3.668a.49.49 0 0 0-.676 0z"
32
- fill-rule="evenodd"></path>
33
- </svg></a></span>
34
- </div>
35
- </div>
36
- </div>
37
- </div>
1
+ <!-- begin post -->
2
+ <div class="col-lg-4 col-md-6 mb-4 card-group">
3
+ <div class="card h-100">
4
+ <a href="{{ post.url }}">
5
+ <img src="{{ post.image }}" class="card-img-top" alt="">
6
+ </a>
7
+ <div class="card-body">
8
+ <a href="{{ post.url }}" class="anchor_link">
9
+ <h4 class="card-title mb-4">{{ post.title }}</h4>
10
+ </a>
11
+ </div>
12
+
13
+ {% assign author = site.data.blog.authors[post.author] %}
14
+ <div class="card-footer bg-white">
15
+ <div class="wrapfooter">
16
+ {% if post.author %}
17
+ <span class="meta-footer-thumb">
18
+ <img class="author-thumb" src="{{ author.image }}" alt="{{ author.name }}">
19
+ </span>
20
+ {% endif %}
21
+
22
+ <span class="author-meta">
23
+ <span class="post-name">
24
+ <a target="_blank" href="/blog">{{post.author}}</a>
25
+ </span><br>
26
+ <span class="post-date">{{post.date | date_to_string }}</span>
27
+ </span>
28
+ <span class="post-read-more"><a href="{{ post.url }}" title="Read Story"><svg class="svgIcon-use"
29
+ width="25" height="25" viewBox="0 0 25 25">
30
+ <path
31
+ d="M19 6c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2v14.66h.012c.01.103.045.204.12.285a.5.5 0 0 0 .706.03L12.5 16.85l5.662 4.126a.508.508 0 0 0 .708-.03.5.5 0 0 0 .118-.285H19V6zm-6.838 9.97L7 19.636V6c0-.55.45-1 1-1h9c.55 0 1 .45 1 1v13.637l-5.162-3.668a.49.49 0 0 0-.676 0z"
32
+ fill-rule="evenodd"></path>
33
+ </svg></a></span>
34
+ </div>
35
+ </div>
36
+ </div>
37
+ </div>
38
38
  <!-- end post -->
@@ -1,4 +1,11 @@
1
- <script src="{{ '/assets/js/TopScroll.js' | relative_url }}"></script>
2
- <script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
3
- <script src="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/js/bootstrap.min.js"></script>
4
- <script id="dsq-count-scr" src="//wordswithletter.disqus.com/count.js" async></script>
1
+ <!-- <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta2/dist/js/bootstrap.bundle.min.js" integrity="sha384-b5kHyXgcpbZJO/tY9Ul7kGkf1S0CWuKcCD38l8YkeH8z8QjE0GmW1gYU5S9FOnJ0" crossorigin="anonymous"></script> -->
2
+ <!-- <script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script> -->
3
+ <!-- <script src="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/js/bootstrap.bundle.min.js" integrity="sha384-Piv4xVNRyMGpqkS2by6br4gNJ7DXjqk09RmUpJ8jgGtD7zP9yug3goQfGII0yAns" crossorigin="anonymous"></script> -->
4
+ <!-- <script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script> -->
5
+ <!-- <script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.1/dist/umd/popper.min.js" integrity="sha384-9/reFTGAW83EW2RDu2S0VKaIzap3H66lZH81PoYlFhbGU+6BZp6G7niu735Sk7lN" crossorigin="anonymous"></script> -->
6
+ <!-- <script src="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/js/bootstrap.min.js" integrity="sha384-+YQ4JLhjyBLPDQt//I+STsc9iw4uQqACwlvpslubQzn4u2UU2UFM80nGisd026JF" crossorigin="anonymous"></script> -->
7
+ <!-- <script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script> -->
8
+ <!-- <script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.1/dist/umd/popper.min.js" integrity="sha384-9/reFTGAW83EW2RDu2S0VKaIzap3H66lZH81PoYlFhbGU+6BZp6G7niu735Sk7lN" crossorigin="anonymous"></script> -->
9
+ <!-- <script src="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/js/bootstrap.min.js" integrity="sha384-+YQ4JLhjyBLPDQt//I+STsc9iw4uQqACwlvpslubQzn4u2UU2UFM80nGisd026JF" crossorigin="anonymous"></script> -->
10
+ <script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
11
+ <script src="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/js/bootstrap.bundle.min.js" integrity="sha384-Piv4xVNRyMGpqkS2by6br4gNJ7DXjqk09RmUpJ8jgGtD7zP9yug3goQfGII0yAns" crossorigin="anonymous"></script>
@@ -1,12 +1,12 @@
1
- <div class="alertbar" style="display: none;">
2
- <div class="container text-center">
3
- <span style="font-size: 15px;">{{site.data.blog.alertbar.span}}</span>
4
- <form>
5
- <div class="mc-field-group">
6
- <input type="email" placeholder="Email" name="EMAIL" class="required email" id="mce-EMAIL"
7
- autocomplete="on" required="">
8
- <input type="submit" value="Subscribe" name="subscribe">
9
- </div>
10
- </form>
11
- </div>
1
+ <div class="alertbar" style="display: none;">
2
+ <div class="container text-center">
3
+ <span style="font-size: 15px;">{{site.data.blog.alertbar.span}}</span>
4
+ <form>
5
+ <div class="mc-field-group">
6
+ <input type="email" placeholder="Email" name="EMAIL" class="required email" id="mce-EMAIL"
7
+ autocomplete="on" required="">
8
+ <input type="submit" value="Subscribe" name="subscribe">
9
+ </div>
10
+ </form>
11
+ </div>
12
12
  </div>
@@ -1,24 +1,24 @@
1
- <div class="explore">
2
- <h2>Explore <span class="d-none d-md-inline">→</span></h2>
3
-
4
- <ul>
5
- {% assign categories_list = site.categories %}
6
- {% if categories_list.first[0] == null %}
7
- {% for category in categories_list %}
8
- <a class="cat mt-1 mb-1" href="/blog/categories#{{ category | url_escape | strip | replace: ' ', '-' }}">{{
9
- category
10
- |
11
- camelcase }} ({{ site.tags[category].size }})</a>
12
- {% endfor %}
13
- {% else %}
14
- {% for category in categories_list %}
15
- <a class="cat mt-1 mb-1" href="/blog/categories#{{ category[0] | url_escape | strip | replace: ' ', '-' }}">{{
16
- category[0]
17
- | camelcase }} ({{ category[1].size }})</a>
18
- {% endfor %}
19
- {% endif %}
20
- {% assign categories_list = nil %}
21
- </ul>
22
-
23
- </div>
1
+ <div class="explore">
2
+ <h2>Explore <span class="d-none d-md-inline">→</span></h2>
3
+
4
+ <ul>
5
+ {% assign categories_list = site.categories %}
6
+ {% if categories_list.first[0] == null %}
7
+ {% for category in categories_list %}
8
+ <a class="cat mt-1 mb-1" href="/blog/categories#{{ category | url_escape | strip | replace: ' ', '-' }}">{{
9
+ category
10
+ |
11
+ camelcase }} ({{ site.tags[category].size }})</a>
12
+ {% endfor %}
13
+ {% else %}
14
+ {% for category in categories_list %}
15
+ <a class="cat mt-1 mb-1" href="/blog/categories#{{ category[0] | url_escape | strip | replace: ' ', '-' }}">{{
16
+ category[0]
17
+ | camelcase }} ({{ category[1].size }})</a>
18
+ {% endfor %}
19
+ {% endif %}
20
+ {% assign categories_list = nil %}
21
+ </ul>
22
+
23
+ </div>
24
24
  </div>
@@ -0,0 +1,22 @@
1
+ {% assign file = page.fileName %}
2
+ {% assign folder = page.folderName %}
3
+ {% assign lang = page.lang %}
4
+ {% assign shareData=site.data[folder][lang][file] %}
5
+ {%- if site.data.blog.share.platforms -%}
6
+ <div class="social-icons">
7
+ {% assign url = page.url | relative_url | prepend: site.url %}
8
+ {% for share in site.data.blog.share.platforms %}
9
+ {% assign link = share.link | replace: 'URL', url %}
10
+ {{page.title}}
11
+ <a href="{{ link }}" data-toggle="tooltip"
12
+ onclick="window.open(this.href, 'pop-up', 'left=20,top=20,width=500,height=500,toolbar=1,resizable=0'); return false;"
13
+ data-placement="top" title="{{ share.type }}" aria-label="{{ share.type }}">
14
+ <i class="fa-fw {{ share.icon }} mb-0 py-3"></i>
15
+ </a>
16
+
17
+ {% endfor %}
18
+ </ul>
19
+ </ul>
20
+ </div>
21
+ {%- endif -%}
22
+
@@ -1,24 +1,19 @@
1
- {% assign file = page.fileName %}
2
- {% assign dataArr = site.data.pages[file] %}
3
- {% assign dataToShow = dataArr %}
4
- <!DOCTYPE html>
5
- <html lang="en" data-tool="landing">
6
- {% include head/index.html %}
7
-
8
- <body>
9
- {% include header/index.html %}
10
- <div class="sc-1ttxsn1-0 fxCLCz">
11
- <div class="sc-1ttxsn1-1 hvHwmD">
12
- <div class="sc-8oiqhz-0 fMjvGP">
13
- <h1 class="sc-8oiqhz-1 fMrSkY">{{dataToShow.h1}}</h1>
14
- <h2 class="sc-8oiqhz-2 fMAoPh">{{dataToShow.h2}}</h2>
15
- <p>
16
- {{dataToShow.paragraph}}
17
- </p>
18
- </div>
19
- </div>
20
- </div>
21
- {% include footer/index.html %}
22
- </body>
23
-
24
- </html>
1
+ {% assign file = page.fileName %}
2
+ {% assign lang = page.lang %}
3
+ {% assign folder = page.folderName %}
4
+ {% assign aboutData = site.data[folder][lang][file] %}
5
+ <!DOCTYPE html>
6
+ <html lang="en">
7
+ {% include head/index.html %}
8
+ {%- include dropdown/langdropdown.html -%}
9
+ <body>
10
+ {% include header/index.html %}
11
+ <div class="container py-4 about_layout">
12
+ <h1 class="about-h1 py-2">{{aboutData.h1}}</h1>
13
+ <h2 class="about-h2">{{aboutData.h2}}</h2>
14
+ <p class="about-para py-2">{{aboutData.paragraph}}</p>
15
+ </div>
16
+ {% include footer/index.html %}
17
+ {% include script.html %}
18
+ </body>
19
+ </html>
data/_layouts/blog.html CHANGED
@@ -1,76 +1,72 @@
1
- <html>
2
-
3
- {% include custom-head.html %}
4
-
5
- <body>
6
- {%- include header/blogHeader.html -%}
7
-
8
- <section class="section_post">
9
- <div class="container">
10
- <div class="row justify-content-center section-title-wrap">
11
- <div class="col-lg-12">
12
- <h1 style="font-weight: 900;" class="display-4 m-0 small_description">{{ site.data.blog.blog.h1 }}
13
- </h1>
14
- <p class="lead mb-5 mt-1" style="font-size: 18px;">
15
- {{ site.data.blog.blog.description }}
16
- </p>
17
- </div>
18
- </div>
19
-
20
- <!-- categories post -->
21
- <div class="main-content">
22
- {{content}}
23
- </div>
24
- <!-- close -->
25
-
26
- <div class="row">
27
- {% for post in paginator.posts %}
28
- <div class="col-lg-4 col-md-6 mb-4 card-group">
29
- <div class="card h-100">
30
- <a href="{{ post.url }}">
31
- <img src="{{ post.image }}" class="card-img-top" alt="">
32
- </a>
33
- <div class="card-body">
34
- <a href="{{ post.url }}" class="anchor_link">
35
- <h4 class="card-title mb-4">{{ post.title }}</h4>
36
- </a>
37
- </div>
38
-
39
- {% assign author = site.data.blog.authors[post.author] %}
40
- <div class="card-footer bg-white">
41
- <div class="wrapfooter">
42
- {% if post.author %}
43
- <span class="meta-footer-thumb">
44
- <img class="author-thumb" src="{{ author.image }}" alt="{{ author.name }}">
45
- </span>
46
- {% endif %}
47
-
48
- <span class="author-meta">
49
- <span class="post-name">
50
- <a target="_blank" href="/blog">{{post.author}}</a>
51
- </span><br>
52
- <span class="post-date">{{post.date | date_to_string }}</span>
53
- </span>
54
- <span class="post-read-more"><a href="{{ post.url }}" title="Read Story"><svg
55
- class="svgIcon-use" width="25" height="25" viewBox="0 0 25 25">
56
- <path
57
- d="M19 6c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2v14.66h.012c.01.103.045.204.12.285a.5.5 0 0 0 .706.03L12.5 16.85l5.662 4.126a.508.508 0 0 0 .708-.03.5.5 0 0 0 .118-.285H19V6zm-6.838 9.97L7 19.636V6c0-.55.45-1 1-1h9c.55 0 1 .45 1 1v13.637l-5.162-3.668a.49.49 0 0 0-.676 0z"
58
- fill-rule="evenodd"></path>
59
- </svg></a></span>
60
- </div>
61
- </div>
62
- </div>
63
- </div>
64
- {% endfor %}
65
- </div>
66
- {%- include paginationBlogPage.html -%}
67
- </div>
68
-
69
- {% include section/count.html %}
70
- </section>
71
- {%- include section/alertbar.html -%}
72
-
73
- {% include script.html %}
74
- </body>
75
-
1
+ <html>
2
+
3
+ {% include custom-head.html %}
4
+
5
+ <body>
6
+ {%- include header/blogHeader.html -%}
7
+
8
+ <section class="section_post">
9
+ <div class="container">
10
+ <div class="row justify-content-center section-title-wrap">
11
+ <div class="col-lg-12">
12
+ <h1 style="font-weight: 900;" class="display-4 m-0 small_description">{{ site.data.blog.blog.h1 }}
13
+ </h1>
14
+ <p class="lead mb-5 mt-1" style="font-size: 18px;">
15
+ {{ site.data.blog.blog.description }}
16
+ </p>
17
+ </div>
18
+ </div>
19
+
20
+ <!-- categories post -->
21
+ <div class="main-content">
22
+ {{content}}
23
+ </div>
24
+ <!-- close -->
25
+
26
+ <div class="row">
27
+ {% for post in paginator.posts %}
28
+ <div class="col-lg-4 col-md-6 mb-4 card-group">
29
+ <div class="card h-100">
30
+ <a href="{{ post.url }}">
31
+ <img src="{{ post.image }}" class="card-img-top" alt="">
32
+ </a>
33
+ <div class="card-body">
34
+ <a href="{{ post.url }}" class="anchor_link">
35
+ <h4 class="card-title mb-4">{{ post.title }}</h4>
36
+ </a>
37
+ </div>
38
+
39
+ {% assign author = site.data.blog.authors[post.author] %}
40
+ <div class="card-footer bg-white">
41
+ <div class="wrapfooter">
42
+ {% if post.author %}
43
+ <span class="meta-footer-thumb">
44
+ <img class="author-thumb" src="{{ author.image }}" alt="{{ author.name }}">
45
+ </span>
46
+ {% endif %}
47
+
48
+ <span class="author-meta">
49
+ <span class="post-name">
50
+ <a target="_blank" href="/blog">{{post.author}}</a>
51
+ </span><br>
52
+ <span class="post-date">{{post.date | date_to_string }}</span>
53
+ </span>
54
+ <span class="post-read-more "><a class="text-dark" href="{{ post.url }}" title="Read Story">Read More</a></span>
55
+ </div>
56
+ </div>
57
+ </div>
58
+ </div>
59
+ {% endfor %}
60
+ </div>
61
+ {%- include paginationBlogPage.html -%}
62
+ </div>
63
+
64
+ {% include section/count.html %}
65
+ </section>
66
+ {%- include section/alertbar.html -%}
67
+
68
+ {% include script.html %}
69
+ <script src="{{ '/assets/js/TopScroll.js' | relative_url }}"></script>
70
+ </body>
71
+
76
72
  </html>