appscms-tools-theme 0.1.1 → 0.1.2
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/_includes/author_bio.html +12 -0
- data/_includes/head.html +50 -0
- data/_includes/header.html +90 -0
- data/_includes/pagination.html +16 -0
- data/_includes/pagination2.html +31 -0
- data/_includes/postbox.html +33 -0
- data/_includes/section/alertbar.html +13 -0
- data/_includes/section/count.html +24 -0
- data/_layouts/blog.html +92 -0
- data/_layouts/categories.html +25 -0
- data/_layouts/feature.html +689 -614
- data/_layouts/post.html +92 -2
- metadata +12 -2
data/_layouts/post.html
CHANGED
|
@@ -1,5 +1,95 @@
|
|
|
1
1
|
---
|
|
2
|
-
layout:
|
|
2
|
+
layout: post
|
|
3
3
|
---
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
<html>
|
|
6
|
+
|
|
7
|
+
<head>
|
|
8
|
+
{%- assign seo_description = page.description | default: page.excerpt | default: site.description -%}
|
|
9
|
+
{%- if seo_description -%}
|
|
10
|
+
{%- assign seo_description = seo_description | markdownify | strip_html | strip_newlines | escape_once -%}
|
|
11
|
+
{%- endif -%}
|
|
12
|
+
|
|
13
|
+
<meta charset="UTF-8">
|
|
14
|
+
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
15
|
+
<meta name="keywords" content="BlogPost">
|
|
16
|
+
<meta name="description" content="{{ seo_description }}">
|
|
17
|
+
<meta name="og:description" content="{{ seo_description }} ">
|
|
18
|
+
<meta property="og:title" content="{{ page.title | default: site.title }}">
|
|
19
|
+
<meta property="og:type" content="article">
|
|
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="Harshit Raghav">
|
|
24
|
+
|
|
25
|
+
<title>{{page.title}}</title>
|
|
26
|
+
|
|
27
|
+
<!-- fonts -->
|
|
28
|
+
<link href="https://fonts.googleapis.com/css2?family=Quicksand&display=swap" rel="stylesheet">
|
|
29
|
+
<link href="https://fonts.googleapis.com/css2?family=Open+Sans&display=swap" rel="stylesheet">
|
|
30
|
+
|
|
31
|
+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.0/css/all.min.css" />
|
|
32
|
+
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta1/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
33
|
+
<link rel="stylesheet" href="{{ '/css/main.css' | relative_url }}">
|
|
34
|
+
<link rel="stylesheet" href="{{ 'css/blog.css' | relative_url }}">
|
|
35
|
+
<link rel="stylesheet" href="{{ 'css/post.css' | relative_url }}">
|
|
36
|
+
|
|
37
|
+
</head>
|
|
38
|
+
|
|
39
|
+
<body>
|
|
40
|
+
{%- include header.html -%}
|
|
41
|
+
|
|
42
|
+
<section class="section_post">
|
|
43
|
+
<div class="container">
|
|
44
|
+
<div class="row section-title-wrap">
|
|
45
|
+
<div class="col-md-12 mt-5">
|
|
46
|
+
<h1 class="display-4" style="font-weight: 900;">{{ page.title }}</h1>
|
|
47
|
+
</div>
|
|
48
|
+
</div>
|
|
49
|
+
|
|
50
|
+
<div class="row mt-5">
|
|
51
|
+
<div class="col-md-2">
|
|
52
|
+
<div class="socialIons">
|
|
53
|
+
<ul class="list-unstyled item-lists2">
|
|
54
|
+
<li><a style="pointer-events: none;">{{ site.data.share.label }}</a></li>
|
|
55
|
+
{% capture title %}{{ page.title }}{% endcapture %}
|
|
56
|
+
{% assign url = page.url | relative_url | prepend: site.url %}
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
{% for share in site.data.share.platforms %}
|
|
60
|
+
{% assign link = share.link | replace: 'TITLE', title | replace: 'URL', url %}
|
|
61
|
+
<li> <a href=" {{ link }}" data-toggle="tooltip"
|
|
62
|
+
onclick="window.open(this.href, 'pop-up', 'left=20,top=20,width=500,height=500,toolbar=1,resizable=0'); return false;"
|
|
63
|
+
data-placement="top" title="{{ share.type }}" aria-label="{{ share.type }}">
|
|
64
|
+
<i class="fa-fw {{ share.icon }}"></i>
|
|
65
|
+
</a>
|
|
66
|
+
</li>
|
|
67
|
+
{% endfor %}
|
|
68
|
+
</span>
|
|
69
|
+
</ul>
|
|
70
|
+
<div class="sep"></div>
|
|
71
|
+
</ul>
|
|
72
|
+
</div>
|
|
73
|
+
</div>
|
|
74
|
+
|
|
75
|
+
<div class="col-md-8">
|
|
76
|
+
{% assign author = site.data.authors[page.author] %}
|
|
77
|
+
|
|
78
|
+
{% if author %}
|
|
79
|
+
{% include author_bio.html %}
|
|
80
|
+
{% endif %}
|
|
81
|
+
|
|
82
|
+
{{ content }}
|
|
83
|
+
{%- include pagination.html -%}
|
|
84
|
+
|
|
85
|
+
</div>
|
|
86
|
+
</div>
|
|
87
|
+
</section>
|
|
88
|
+
{%- include section/count.html -%}
|
|
89
|
+
{%- include section/alertbar.html -%}
|
|
90
|
+
</body>
|
|
91
|
+
|
|
92
|
+
|
|
93
|
+
<script src="/js/TopScroll.js"></script>
|
|
94
|
+
|
|
95
|
+
</html>
|
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: 0.1.
|
|
4
|
+
version: 0.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- vivek-appscms
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-
|
|
11
|
+
date: 2021-02-02 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|
|
@@ -61,6 +61,16 @@ extra_rdoc_files: []
|
|
|
61
61
|
files:
|
|
62
62
|
- LICENSE.txt
|
|
63
63
|
- README.md
|
|
64
|
+
- _includes/author_bio.html
|
|
65
|
+
- _includes/head.html
|
|
66
|
+
- _includes/header.html
|
|
67
|
+
- _includes/pagination.html
|
|
68
|
+
- _includes/pagination2.html
|
|
69
|
+
- _includes/postbox.html
|
|
70
|
+
- _includes/section/alertbar.html
|
|
71
|
+
- _includes/section/count.html
|
|
72
|
+
- _layouts/blog.html
|
|
73
|
+
- _layouts/categories.html
|
|
64
74
|
- _layouts/default.html
|
|
65
75
|
- _layouts/feature.html
|
|
66
76
|
- _layouts/home.html
|