appscms-tools-theme 0.1.3 → 0.1.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_includes/{head.html → head/index.html} +1 -5
- data/_includes/{header.html → header/index.html} +0 -0
- data/_layouts/blog.html +4 -5
- data/_layouts/feature.html +3 -2
- data/_layouts/home.html +2 -93
- data/_layouts/post.html +4 -3
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7a54f392601e566591ce8f47756a4c5a69c396f861ee6d377c8c85afb2178730
|
4
|
+
data.tar.gz: 4b752623bae690d22756af96b394d8c384daaf59dcee8703c4920800c5e2437d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 06fdda216b73e5528bb8aecb789c9514ea339acfbbadf6d4a66322aae5583e1d0d8e4e83a0aa56280b9d97525d93b1f09cde27c7cb29dca728546fbc53a62f04
|
7
|
+
data.tar.gz: 0b6676fcf4fd4e6095cf72d0d785fb9212428430be459c478c1d241b3b38b28e0cbf49dee580224212dde0e76f007e66a5603142f476b8c22f559358bf159a8a
|
@@ -1,6 +1,4 @@
|
|
1
1
|
<head>
|
2
|
-
|
3
|
-
<link rel="stylesheet" href="{{ 'css/main.css' | relative_url }}">
|
4
2
|
<meta charset="utf-8">
|
5
3
|
<link rel="shortcut icon" href="/favicon.png">
|
6
4
|
|
@@ -44,7 +42,5 @@
|
|
44
42
|
<link rel="preload" href="/build/ca6a911b9040a84259b8c6f7f4cbb72e.svg" as=image>
|
45
43
|
<link rel="preload" href="/build/95cf74e5f89f93cfd5f97d16fa673f05.svg" as=image>
|
46
44
|
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600,700" rel="stylesheet">
|
47
|
-
|
48
|
-
|
49
|
-
|
45
|
+
<link rel="stylesheet" href="{{ '../css/tools.css' | relative_url }}">
|
50
46
|
</head>
|
File without changes
|
data/_layouts/blog.html
CHANGED
@@ -12,9 +12,6 @@
|
|
12
12
|
<meta property="og:url" content="{{site.url | append: page.url}}">
|
13
13
|
<meta name="author" content="Harshit Raghav">
|
14
14
|
|
15
|
-
<link rel="stylesheet" href="{{ '/css/main.css' | relative_url }}">
|
16
|
-
<link rel="stylesheet" href="{{ 'css/blog.css' | relative_url }}">
|
17
|
-
|
18
15
|
<title>{{page.title}}</title>
|
19
16
|
|
20
17
|
<!-- fonts -->
|
@@ -24,11 +21,12 @@
|
|
24
21
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.0/css/all.min.css" />
|
25
22
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta1/dist/css/bootstrap.min.css" rel="stylesheet">
|
26
23
|
|
27
|
-
<link rel="stylesheet" href="
|
24
|
+
<link rel="stylesheet" href="{{ 'css/tools.css' | relative_url }}">
|
25
|
+
<link rel="stylesheet" href="{{ 'css/blog.css' | relative_url }}">
|
28
26
|
</head>
|
29
27
|
|
30
28
|
<body>
|
31
|
-
{%- include header.html -%}
|
29
|
+
{%- include header/index.html -%}
|
32
30
|
|
33
31
|
<section class="section_post">
|
34
32
|
<div class="container">
|
@@ -88,6 +86,7 @@
|
|
88
86
|
</section>
|
89
87
|
{%- include section/alertbar.html -%}
|
90
88
|
|
89
|
+
<link rel="stylesheet" href="{{ 'css/tools.css' | relative_url }}">
|
91
90
|
<script src="/js/TopScroll.js"></script>
|
92
91
|
</body>
|
93
92
|
|
data/_layouts/feature.html
CHANGED
@@ -1,9 +1,9 @@
|
|
1
1
|
<!DOCTYPE html>
|
2
2
|
<html lang="en" data-tool="landing">
|
3
|
-
{% include head.html %}
|
3
|
+
{% include head/index.html %}
|
4
4
|
|
5
5
|
<body>
|
6
|
-
{% include header.html %}
|
6
|
+
{% include header/index.html %}
|
7
7
|
<!-- h1 and h2 -->
|
8
8
|
<div class="sc-1ttxsn1-0 fxCLCz">
|
9
9
|
<div class="sc-1ttxsn1-1 hvHwmD">
|
@@ -752,5 +752,6 @@
|
|
752
752
|
|
753
753
|
<!-- Footer End -->
|
754
754
|
</body>
|
755
|
+
<link rel="stylesheet" href="{{ 'css/feature.css' | relative_url }}">
|
755
756
|
|
756
757
|
</html>
|
data/_layouts/home.html
CHANGED
@@ -3,101 +3,10 @@
|
|
3
3
|
{% assign dataToShow = dataArr %}
|
4
4
|
<!DOCTYPE html>
|
5
5
|
<html lang="en" data-tool="landing">
|
6
|
-
{% include head.html %}
|
6
|
+
{% include head/index.html %}
|
7
7
|
|
8
8
|
<body>
|
9
|
-
|
10
|
-
<div class="bitun5-1 inueBp">
|
11
|
-
<div class="bitun5-0 fElXmN">
|
12
|
-
<div class="sc-1sjqft3-1 ckHxed">
|
13
|
-
<div class="sc-1sjqft3-2 ckPTIm">
|
14
|
-
<div class="sc-168sfod-0 hiSbSb">
|
15
|
-
<a class="lqkt1b-0 fdItuc sc-168sfod-1 hjaywk" href="/" title="PDF">
|
16
|
-
<div class="sc-168sfod-3 hjrrEC" id="__cond-851085">
|
17
|
-
<img class="sc-168sfod-2 hjiVat" src="/build/95cf74e5f89f93cfd5f97d16fa673f05.svg"
|
18
|
-
alt="logo">
|
19
|
-
</div>
|
20
|
-
</a>
|
21
|
-
</div>
|
22
|
-
</div>
|
23
|
-
<div class="sc-1sjqft3-3 ckYqmv">
|
24
|
-
<div class="sc-1hd6z21-0 hcnRAo">
|
25
|
-
<div style="display:flex" id="__cond-851086">
|
26
|
-
<ul class="sc-1hd6z21-1 hcwoex">
|
27
|
-
<div style="display: flex;" id="__cond-851087">
|
28
|
-
<li class="sc-1mqygah-0 hIbenQ">
|
29
|
-
<a class="lqkt1b-0 fdItuc sc-1mqygah-1 cdDJXX" href="/#">
|
30
|
-
<div class="sc-1hd6z21-3 hcNhmP">pdf for Teams<div
|
31
|
-
class="sc-1hd6z21-4 hcVDQY">
|
32
|
-
<div class="yngot0-0 hHIHUq">New</div>
|
33
|
-
</div>
|
34
|
-
</div>
|
35
|
-
</a>
|
36
|
-
</li>
|
37
|
-
</div>
|
38
|
-
</ul>
|
39
|
-
<div style="display: flex;" id="__cond-851088">
|
40
|
-
<div class="sc-1hd6z21-2 hcEKIG">
|
41
|
-
|
42
|
-
</div>
|
43
|
-
</div>
|
44
|
-
</div>
|
45
|
-
</div>
|
46
|
-
<div style="display:flex" id="__cond-851089">
|
47
|
-
<div class="soxssp-0 gXzTud">
|
48
|
-
<div class="xda4z1-0 fIwWsF">Login</div>
|
49
|
-
</div>
|
50
|
-
</div>
|
51
|
-
<div style="display: none;" id="__cond-851090"></div>
|
52
|
-
<div style="display:flex" id="__cond-851091">
|
53
|
-
<div class="sc-1ucfe2p-0 ipqJFq">
|
54
|
-
<button class="sc-1mvwhop-0 cPHJoA" type="submit">
|
55
|
-
<div id="__cond-851092">Free Trial</div>
|
56
|
-
</button>
|
57
|
-
</div>
|
58
|
-
</div>
|
59
|
-
<div class="yue4at-0 fPnIVd">
|
60
|
-
<div class="yue4at-1 fPwfzm">
|
61
|
-
<div style="display: none;" id="__cond-851093">
|
62
|
-
<div class="sc-1pc5grg-0 jxQvto">
|
63
|
-
<div class="sc-1pc5grg-1 deuuwy">
|
64
|
-
<div class="vnoyvz-0 sHtdd">
|
65
|
-
<div class="vnoyvz-1 sPPHm">
|
66
|
-
<div class="vnoyvz-2 sYmlv">
|
67
|
-
|
68
|
-
</div>
|
69
|
-
</div>
|
70
|
-
</div>
|
71
|
-
<div class="rhlin0-0 cblySq">
|
72
|
-
<div class="sc-2xfn8l-0 bxyVaO sxq67w-0 bVpxBN">
|
73
|
-
<svg xmlns="http://www.w3.org/2000/svg"
|
74
|
-
xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 12 12"
|
75
|
-
fill="#000">
|
76
|
-
<polygon points="2 5 10 5 6 9"></polygon>
|
77
|
-
</svg>
|
78
|
-
</div>
|
79
|
-
</div>
|
80
|
-
<div class="sc-1apfbp1-0 knfgvG">
|
81
|
-
|
82
|
-
</div>
|
83
|
-
</div>
|
84
|
-
</div>
|
85
|
-
</div>
|
86
|
-
<div style="display:flex" id="__cond-851094">
|
87
|
-
<div class="rnvo6-0 jxYGTk">
|
88
|
-
<div class="rnvo6-1 jyhdxt">
|
89
|
-
|
90
|
-
</div>
|
91
|
-
</div>
|
92
|
-
</div>
|
93
|
-
</div>
|
94
|
-
</div>
|
95
|
-
</div>
|
96
|
-
</div>
|
97
|
-
</div>
|
98
|
-
</div>
|
99
|
-
<div class="sc-1p2sah-0 jKLUgT"></div>
|
100
|
-
<!-- Header End -->
|
9
|
+
{% include header/index.html %}
|
101
10
|
|
102
11
|
<div class="sc-1ttxsn1-0 fxCLCz">
|
103
12
|
<div class="sc-1ttxsn1-1 hvHwmD">
|
data/_layouts/post.html
CHANGED
@@ -30,14 +30,14 @@ layout: post
|
|
30
30
|
|
31
31
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.0/css/all.min.css" />
|
32
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/
|
33
|
+
<link rel="stylesheet" href="{{ '/css/feature.css' | relative_url }}">
|
34
34
|
<link rel="stylesheet" href="{{ 'css/blog.css' | relative_url }}">
|
35
35
|
<link rel="stylesheet" href="{{ 'css/post.css' | relative_url }}">
|
36
36
|
|
37
37
|
</head>
|
38
38
|
|
39
39
|
<body>
|
40
|
-
{%- include header.html -%}
|
40
|
+
{%- include header/index.html -%}
|
41
41
|
|
42
42
|
<section class="section_post">
|
43
43
|
<div class="container">
|
@@ -89,7 +89,8 @@ layout: post
|
|
89
89
|
{%- include section/alertbar.html -%}
|
90
90
|
</body>
|
91
91
|
|
92
|
-
|
92
|
+
<link rel="stylesheet" href="{{ '../css/tools.css' | relative_url }}">
|
93
|
+
<link rel="stylesheet" href="../css/tools.css">
|
93
94
|
<script src="/js/TopScroll.js"></script>
|
94
95
|
|
95
96
|
</html>
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
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.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- vivek-appscms
|
@@ -62,8 +62,8 @@ files:
|
|
62
62
|
- LICENSE.txt
|
63
63
|
- README.md
|
64
64
|
- _includes/author_bio.html
|
65
|
-
- _includes/head.html
|
66
|
-
- _includes/header.html
|
65
|
+
- _includes/head/index.html
|
66
|
+
- _includes/header/index.html
|
67
67
|
- _includes/pagination.html
|
68
68
|
- _includes/pagination2.html
|
69
69
|
- _includes/postbox.html
|