appscms-tools-theme 0.1.9 → 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_includes/custom-head.html +34 -0
- data/_includes/header.html +34 -0
- data/_includes/pagination.html +34 -15
- data/_includes/pagination2.html +15 -31
- data/_includes/postbox.html +1 -1
- data/_includes/section/alertbar.html +1 -2
- data/_layouts/blog.html +9 -36
- data/_layouts/post.html +6 -39
- data/assets/css/blog.css +266 -14
- data/assets/images/avatar.png +0 -0
- metadata +4 -2
- data/assets/css/post.css +0 -145
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 39e9cd41376d675c918575a4f5f8cacae4e3a95e412dcc844f20c1f6cc2fafc7
|
4
|
+
data.tar.gz: 59f5ca42af077ee83f58890c86b98aa9f641037edddf5b9c338073d09a9b37f7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3ed4f23e0fd571a6aa87c9694e58f3cadc13aa681923b5ec5e0fe18094621ebe17894b7187f257d14e8f5020c1c53c1d2059d07688b053701189a2bc2095db12
|
7
|
+
data.tar.gz: 39fd45f1769be3afa192b811e1731bea198060dfff99eeec319a18f60ff10762dcefd46648a63e6ca07ed4a9c5d845f133b515292b9b5bcb6feee7cf47126296
|
@@ -0,0 +1,34 @@
|
|
1
|
+
<head>
|
2
|
+
{%- assign seo_description = page.description | default: page.excerpt | default: site.description -%}
|
3
|
+
{%- if seo_description -%}
|
4
|
+
{%- assign seo_description = seo_description | markdownify | strip_html | strip_newlines | escape_once -%}
|
5
|
+
{%- endif -%}
|
6
|
+
{%- if page.date -%}
|
7
|
+
{%- assign og_type = "article" -%}
|
8
|
+
{%- else -%}
|
9
|
+
{%- assign og_type = "website" -%}
|
10
|
+
{%- endif -%}
|
11
|
+
|
12
|
+
<meta charset="UTF-8">
|
13
|
+
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
14
|
+
<meta name="keywords" content="{{site.keyboard}}">
|
15
|
+
<meta name="description" content="{{ seo_description}}">
|
16
|
+
<meta name="og:description" content="{{ seo_description}}">
|
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
|
+
|
24
|
+
<title>{{page.title}}</title>
|
25
|
+
|
26
|
+
<!-- fonts -->
|
27
|
+
<link href="https://fonts.googleapis.com/css2?family=Quicksand&display=swap" rel="stylesheet">
|
28
|
+
<link href="https://fonts.googleapis.com/css2?family=Open+Sans&display=swap" rel="stylesheet">
|
29
|
+
|
30
|
+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.0/css/all.min.css" />
|
31
|
+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css">
|
32
|
+
|
33
|
+
<link rel="stylesheet" href="{{ '/assets/css/blog.css' | relative_url }}">
|
34
|
+
</head>
|
@@ -0,0 +1,34 @@
|
|
1
|
+
<!-- header starts -->
|
2
|
+
<header id="header">
|
3
|
+
<!-- navigation startss -->
|
4
|
+
<nav class="navbar navbar-expand-lg navbar-dark bg-light">
|
5
|
+
|
6
|
+
{% if site.data.nav.navbar-brand-text %}
|
7
|
+
<a class="navbar-brand" href="/" title="{{site.data.nav.navbar-brand-text}}">
|
8
|
+
{{site.data.nav.navbar-brand-text}}
|
9
|
+
</a>
|
10
|
+
|
11
|
+
{% else %}
|
12
|
+
|
13
|
+
<a class="navbar-brand" href="/" title="{{site.data.nav.navbar-brand-text}}">
|
14
|
+
<img src="{{site.data.nav.navbar-brand-logo}}" class="logo" alt="logo-image">
|
15
|
+
</a>
|
16
|
+
|
17
|
+
{% endif %}
|
18
|
+
|
19
|
+
|
20
|
+
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent">
|
21
|
+
<i class="fas fa-bars fa-2x" style="color:#000"></i>
|
22
|
+
</button>
|
23
|
+
|
24
|
+
<div class="collapse navbar-collapse" id="navbarSupportedContent">
|
25
|
+
<ul class="navbar-nav ml-auto">
|
26
|
+
<li class="nav-item">
|
27
|
+
<a class="nav-link" href="/blog">{{site.data.nav.item}}</a>
|
28
|
+
</li>
|
29
|
+
</ul>
|
30
|
+
</div>
|
31
|
+
</nav>
|
32
|
+
<!-- navbar close -->
|
33
|
+
</header>
|
34
|
+
<!-- header close -->
|
data/_includes/pagination.html
CHANGED
@@ -1,16 +1,35 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
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: '//', '/' }}">« Prev</a>
|
11
|
+
{% else %}
|
12
|
+
<span class="text-muted">« Prev</span>
|
13
|
+
{% endif %}
|
11
14
|
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
</
|
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
|
+
»</a>
|
31
|
+
{% else %}
|
32
|
+
<span class="text-muted">Next »</span>
|
33
|
+
{% endif %}
|
34
|
+
</div>
|
35
|
+
{% endif %}
|
data/_includes/pagination2.html
CHANGED
@@ -1,31 +1,15 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
<div class="
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
{% else %}
|
17
|
-
<a style="color: green; font-weight: 900;"
|
18
|
-
href="{{ site.paginate_path | prepend: site.baseurl | replace: '//', '/' | replace: ':num', page }}">{{ page
|
19
|
-
}}</a>
|
20
|
-
{% endif %}
|
21
|
-
{% endfor %}
|
22
|
-
|
23
|
-
{% if paginator.next_page %}
|
24
|
-
<a style="color:green; font-weight: 900;"
|
25
|
-
href="{{ paginator.next_page_path | prepend: site.baseurl | replace: '//', '/' }}">Next
|
26
|
-
»</a>
|
27
|
-
{% else %}
|
28
|
-
<span class="text-muted">Next »</span>
|
29
|
-
{% endif %}
|
30
|
-
</div>
|
31
|
-
{% endif %}
|
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
|
+
</div>
|
data/_includes/postbox.html
CHANGED
@@ -12,7 +12,7 @@
|
|
12
12
|
<div class="card-footer bg-white">
|
13
13
|
<div class="wrapfooter">
|
14
14
|
<span class="meta-footer-thumb">
|
15
|
-
<img class="author-thumb" src="
|
15
|
+
<img class="author-thumb" src="{{post.url}}" alt="{{ post.author.name }}">
|
16
16
|
</span>
|
17
17
|
<span class="author-meta">
|
18
18
|
<span class="post-name">
|
@@ -1,7 +1,6 @@
|
|
1
1
|
<div class="alertbar" style="display: none;">
|
2
2
|
<div class="container text-center">
|
3
|
-
<span style="font-size: 15px;">
|
4
|
-
<b>story</b> from us, subscribe to our newsletter</span>
|
3
|
+
<span style="font-size: 15px;">{{site.data.alertbar.span}}</span>
|
5
4
|
<form>
|
6
5
|
<div class="mc-field-group">
|
7
6
|
<input type="email" placeholder="Email" name="EMAIL" class="required email" id="mce-EMAIL"
|
data/_layouts/blog.html
CHANGED
@@ -1,46 +1,21 @@
|
|
1
1
|
<html>
|
2
2
|
|
3
|
-
|
4
|
-
<meta charset="UTF-8">
|
5
|
-
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
6
|
-
<meta name="keywords" content="Mathbig - Blogposts">
|
7
|
-
<meta name="description" content="{{site.description}}">
|
8
|
-
<meta property="og:title" content="{{ page.title | default: site.title }}">
|
9
|
-
<meta property="og:type" content="website">
|
10
|
-
<meta property="og:locale" content="en_US">
|
11
|
-
<meta property="og:site_name" content="{{site.name}}">
|
12
|
-
<meta property="og:url" content="{{site.url | append: page.url}}">
|
13
|
-
<meta name="author" content="Harshit Raghav">
|
14
|
-
|
15
|
-
<title>{{page.title}}</title>
|
16
|
-
|
17
|
-
<!-- fonts -->
|
18
|
-
<link href="https://fonts.googleapis.com/css2?family=Quicksand&display=swap" rel="stylesheet">
|
19
|
-
<link href="https://fonts.googleapis.com/css2?family=Open+Sans&display=swap" rel="stylesheet">
|
20
|
-
|
21
|
-
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.0/css/all.min.css" />
|
22
|
-
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta1/dist/css/bootstrap.min.css" rel="stylesheet">
|
23
|
-
|
24
|
-
<link rel="stylesheet" href="{{ '/assets/css/tools.css' | relative_url }}">
|
25
|
-
<link rel="stylesheet" href="{{ '/assets/css/blog.css' | relative_url }}">
|
26
|
-
<link rel="stylesheet" href="{{'/assets/css/tools.css' | relative_url }}">
|
27
|
-
</head>
|
3
|
+
{% include custom-head.html %}
|
28
4
|
|
29
5
|
<body>
|
30
|
-
{%- include header
|
6
|
+
{%- include header.html -%}
|
31
7
|
|
32
8
|
<section class="section_post">
|
33
9
|
<div class="container">
|
34
10
|
<div class="row justify-content-center section-title-wrap">
|
35
|
-
<div class="col-lg-12
|
36
|
-
<h1 style="font-weight: 900;">{{ site.data.blog.
|
11
|
+
<div class="col-lg-12">
|
12
|
+
<h1 style="font-weight: 900;" class="display-4 mb-5">{{ site.data.blog.h1 }}</h1>
|
37
13
|
</div>
|
38
14
|
</div>
|
39
15
|
|
40
|
-
<!--
|
41
|
-
|
16
|
+
<!-- categories post -->
|
42
17
|
<div class="main-content">
|
43
|
-
{{
|
18
|
+
{{content}}
|
44
19
|
</div>
|
45
20
|
<!-- close -->
|
46
21
|
|
@@ -59,12 +34,11 @@
|
|
59
34
|
<div class="card-footer bg-white">
|
60
35
|
<div class="wrapfooter">
|
61
36
|
<span class="meta-footer-thumb">
|
62
|
-
<img class="author-thumb" src="
|
63
|
-
alt="{{ post.author.name }}">
|
37
|
+
<img class="author-thumb" src="{{ author.image }}" alt="{{ post.author.name }}">
|
64
38
|
</span>
|
65
39
|
<span class="author-meta">
|
66
40
|
<span class="post-name">
|
67
|
-
<a target="_blank" href="{{ post.
|
41
|
+
<a target="_blank" href="{{ post.url }}">{{post.author}}</a>
|
68
42
|
</span><br>
|
69
43
|
<span class="post-date">{{post.date | date_to_string }}</span>
|
70
44
|
</span>
|
@@ -80,13 +54,12 @@
|
|
80
54
|
</div>
|
81
55
|
{% endfor %}
|
82
56
|
</div>
|
57
|
+
{%- include pagination.html -%}
|
83
58
|
</div>
|
84
59
|
|
85
|
-
{%- include pagination2.html -%}
|
86
60
|
{% include section/count.html %}
|
87
61
|
</section>
|
88
62
|
{%- include section/alertbar.html -%}
|
89
|
-
|
90
63
|
<script src="/js/TopScroll.js"></script>
|
91
64
|
</body>
|
92
65
|
|
data/_layouts/post.html
CHANGED
@@ -1,43 +1,9 @@
|
|
1
|
-
---
|
2
|
-
layout: post
|
3
|
-
---
|
4
|
-
|
5
1
|
<html>
|
6
2
|
|
7
|
-
|
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/feature.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>
|
3
|
+
{% include custom-head.html %}
|
38
4
|
|
39
5
|
<body>
|
40
|
-
{%- include header
|
6
|
+
{%- include header.html -%}
|
41
7
|
|
42
8
|
<section class="section_post">
|
43
9
|
<div class="container">
|
@@ -79,8 +45,10 @@ layout: post
|
|
79
45
|
{% include author_bio.html %}
|
80
46
|
{% endif %}
|
81
47
|
|
82
|
-
|
83
|
-
|
48
|
+
<div class="post-content">
|
49
|
+
{{ content }}
|
50
|
+
</div>
|
51
|
+
{%- include pagination2.html -%}
|
84
52
|
|
85
53
|
</div>
|
86
54
|
</div>
|
@@ -89,7 +57,6 @@ layout: post
|
|
89
57
|
{%- include section/alertbar.html -%}
|
90
58
|
</body>
|
91
59
|
|
92
|
-
<link rel="stylesheet" href="{{'/assets/css/tools.css' | relative_url }}">
|
93
60
|
<script src="/js/TopScroll.js"></script>
|
94
61
|
|
95
62
|
</html>
|
data/assets/css/blog.css
CHANGED
@@ -1,7 +1,77 @@
|
|
1
|
-
|
1
|
+
/**********************************************/
|
2
|
+
/***************BLOG-CSS-STYLING *************/
|
3
|
+
/********************************************/
|
4
|
+
|
5
|
+
html {
|
6
|
+
scroll-behavior: smooth;
|
7
|
+
font-size: 62.5%;
|
8
|
+
}
|
9
|
+
body {
|
2
10
|
font-family: 'Open Sans', sans-serif !important;
|
3
11
|
}
|
4
|
-
|
12
|
+
a {
|
13
|
+
text-decoration: none !important;
|
14
|
+
}
|
15
|
+
|
16
|
+
.section_post {
|
17
|
+
margin-top: 100px;
|
18
|
+
}
|
19
|
+
|
20
|
+
/* logo styling */
|
21
|
+
.logo {
|
22
|
+
width: 50px;
|
23
|
+
border-radius: 50%;
|
24
|
+
}
|
25
|
+
|
26
|
+
/* HEADER STYLING */
|
27
|
+
header {
|
28
|
+
width: 100%;
|
29
|
+
position: relative;
|
30
|
+
background: url(../assets/images/bg_elements.png);
|
31
|
+
}
|
32
|
+
.navbar {
|
33
|
+
width: 100%;
|
34
|
+
padding: 1.2rem 10rem !important;
|
35
|
+
position: fixed;
|
36
|
+
top: 0;
|
37
|
+
left: 0;
|
38
|
+
z-index: 999;
|
39
|
+
}
|
40
|
+
.navbar-brand {
|
41
|
+
font-size: 2.2rem;
|
42
|
+
color: var(--txtColor) !important;
|
43
|
+
font-weight: 900;
|
44
|
+
}
|
45
|
+
.navbar-dark .navbar-toggler {
|
46
|
+
outline: none !important;
|
47
|
+
}
|
48
|
+
.navbar-nav .nav-item {
|
49
|
+
padding: 0 10px;
|
50
|
+
}
|
51
|
+
.navbar-nav .nav-link:hover {
|
52
|
+
color: var(--txtColor) !important;
|
53
|
+
transition: all 0.2s linear;
|
54
|
+
-webkit-transition: all 0.2s linear;
|
55
|
+
-moz-transition: all 0.2s linear;
|
56
|
+
}
|
57
|
+
.nav-link {
|
58
|
+
text-decoration: none !important;
|
59
|
+
font-size: 16px;
|
60
|
+
color: gray !important;
|
61
|
+
}
|
62
|
+
.dropdown:hover .dropdown-menu {
|
63
|
+
display: block;
|
64
|
+
border: none;
|
65
|
+
font-size: 14px;
|
66
|
+
left: -160px;
|
67
|
+
padding: 13.5px;
|
68
|
+
background: transparent;
|
69
|
+
}
|
70
|
+
.dropdown-item {
|
71
|
+
text-align: right;
|
72
|
+
}
|
73
|
+
|
74
|
+
/* blogs-card title, content styling */
|
5
75
|
.anchor_link {
|
6
76
|
text-decoration: none !important;
|
7
77
|
color: #343a40 !important;
|
@@ -23,7 +93,7 @@
|
|
23
93
|
}
|
24
94
|
/* close */
|
25
95
|
|
26
|
-
/*
|
96
|
+
/* Blog-card-footer styling */
|
27
97
|
.card-footer {
|
28
98
|
border: none;
|
29
99
|
}
|
@@ -51,9 +121,13 @@
|
|
51
121
|
display: inline-block;
|
52
122
|
margin-top: 8px;
|
53
123
|
}
|
124
|
+
.post-date {
|
125
|
+
color: rgba(0, 0, 0, 0.44);
|
126
|
+
font-size: 13px;
|
127
|
+
}
|
54
128
|
/* close */
|
55
129
|
|
56
|
-
/*
|
130
|
+
/* BLOG-Categories stlying */
|
57
131
|
.explore {
|
58
132
|
color: #fff;
|
59
133
|
margin-bottom: 100px;
|
@@ -90,9 +164,8 @@
|
|
90
164
|
}
|
91
165
|
/* close */
|
92
166
|
|
93
|
-
/* alertbar stlying */
|
167
|
+
/* BLOG-alertbar stlying */
|
94
168
|
.alertbar {
|
95
|
-
font-family: 'Open Sans', sans-serif !important;
|
96
169
|
box-shadow: 0 -3px 10px 0 rgb(0 0 0 / 8%);
|
97
170
|
position: fixed;
|
98
171
|
bottom: 0;
|
@@ -135,28 +208,28 @@
|
|
135
208
|
}
|
136
209
|
/* close */
|
137
210
|
|
138
|
-
/*
|
139
|
-
.
|
140
|
-
.
|
141
|
-
padding: 7px
|
142
|
-
border: 1px solid #eee;
|
211
|
+
/* Blog-Pages-Pagination stlying*/
|
212
|
+
.blog-pagination a,
|
213
|
+
.blog-pagination span {
|
214
|
+
padding: 7px 10px;
|
143
215
|
margin-left: -2px;
|
144
216
|
margin-right: -2px;
|
145
217
|
background-color: #ffffff;
|
146
218
|
display: inline-block;
|
219
|
+
text-decoration: none;
|
147
220
|
}
|
148
221
|
|
149
|
-
.
|
222
|
+
.blog-pagination a:hover {
|
150
223
|
background-color: #f1f1f1;
|
151
224
|
color: #333;
|
152
225
|
}
|
153
226
|
|
154
|
-
.
|
227
|
+
.blog-pagination {
|
155
228
|
text-align: center;
|
156
229
|
font-size: 14px;
|
157
230
|
}
|
158
231
|
|
159
|
-
/*
|
232
|
+
/* BLOG-Categories-PAGes styling */
|
160
233
|
.section-title h2 {
|
161
234
|
border-bottom: 1px solid rgba(0, 0, 0, 0.125);
|
162
235
|
font-weight: 700;
|
@@ -169,3 +242,182 @@
|
|
169
242
|
padding-bottom: 20px;
|
170
243
|
margin-bottom: -1px;
|
171
244
|
}
|
245
|
+
|
246
|
+
/***************************************************************/
|
247
|
+
/********************** post-layouts-styling *******************/
|
248
|
+
/***************************************************************/
|
249
|
+
|
250
|
+
/* left-sidebar-social-styling */
|
251
|
+
.post-content {
|
252
|
+
font-size: 20px;
|
253
|
+
}
|
254
|
+
|
255
|
+
.socialIons {
|
256
|
+
position: sticky;
|
257
|
+
top: 100px;
|
258
|
+
}
|
259
|
+
.socialIons > .item-lists2 {
|
260
|
+
display: flex;
|
261
|
+
flex-direction: column;
|
262
|
+
width: 100%;
|
263
|
+
}
|
264
|
+
.socialIons > .item-lists2 > li {
|
265
|
+
list-style: none;
|
266
|
+
padding: 8px 0px;
|
267
|
+
margin: 0 auto;
|
268
|
+
}
|
269
|
+
.socialIons .item-lists2 li a {
|
270
|
+
color: rgba(95, 21, 21, 0.44);
|
271
|
+
fill: rgba(0, 0, 0, 0.44);
|
272
|
+
font-size: 15px;
|
273
|
+
cursor: pointer;
|
274
|
+
text-decoration: none !important;
|
275
|
+
}
|
276
|
+
.socialIons > .item-lists2 > li i {
|
277
|
+
font-size: 18px;
|
278
|
+
color: rgba(0, 0, 0, 0.44);
|
279
|
+
fill: rgba(0, 0, 0, 0.44);
|
280
|
+
}
|
281
|
+
.sep {
|
282
|
+
height: 1px;
|
283
|
+
width: 20px;
|
284
|
+
background: #999;
|
285
|
+
margin: 3px auto;
|
286
|
+
}
|
287
|
+
.comments-count {
|
288
|
+
margin: 18px 25px;
|
289
|
+
text-align: center;
|
290
|
+
}
|
291
|
+
.comment_count {
|
292
|
+
font-size: 12px;
|
293
|
+
color: rgba(95, 21, 21, 0.44) !important;
|
294
|
+
fill: rgba(0, 0, 0, 0.44);
|
295
|
+
text-decoration: none !important;
|
296
|
+
}
|
297
|
+
/* close */
|
298
|
+
|
299
|
+
/* right-sidebar-styling-starts */
|
300
|
+
/* author bio styling.. */
|
301
|
+
.author_image .author-thumb {
|
302
|
+
width: 60px;
|
303
|
+
height: 60px;
|
304
|
+
object-fit: cover;
|
305
|
+
}
|
306
|
+
.author-meta .postName {
|
307
|
+
font-size: 18px !important;
|
308
|
+
color: rgba(0, 0, 0, 0.8) !important;
|
309
|
+
text-decoration: none !important;
|
310
|
+
font-family: 'Merriweather', serif;
|
311
|
+
}
|
312
|
+
.btn_follow {
|
313
|
+
margin-left: 5px;
|
314
|
+
margin-bottom: 10px;
|
315
|
+
border-color: #02b875;
|
316
|
+
color: #1c9963 !important;
|
317
|
+
padding: 3px 10px;
|
318
|
+
text-align: center;
|
319
|
+
border-radius: 999em;
|
320
|
+
font-size: 1.5rem;
|
321
|
+
display: inline-block;
|
322
|
+
border: 1px solid;
|
323
|
+
}
|
324
|
+
.author_bio {
|
325
|
+
font-family: 'Merriweather', serif;
|
326
|
+
color: rgba(0, 0, 0, 0.44);
|
327
|
+
font-size: 13px;
|
328
|
+
line-height: 20px;
|
329
|
+
}
|
330
|
+
/* close */
|
331
|
+
|
332
|
+
/* pagination-styling-postpages */
|
333
|
+
.pointerup i.fa {
|
334
|
+
color: #eaeaea;
|
335
|
+
}
|
336
|
+
.pointerup {
|
337
|
+
margin-bottom: -9px;
|
338
|
+
margin-left: 49%;
|
339
|
+
font-size: 30px;
|
340
|
+
}
|
341
|
+
.bottompagination span.navigation {
|
342
|
+
display: block;
|
343
|
+
font-size: 0.93rem;
|
344
|
+
padding: 15px 0 0 0;
|
345
|
+
text-align: center;
|
346
|
+
margin-bottom: 0rem;
|
347
|
+
color: #999;
|
348
|
+
border-top: 1px solid #ddd;
|
349
|
+
}
|
350
|
+
.pagination {
|
351
|
+
display: -ms-flexbox;
|
352
|
+
display: flex;
|
353
|
+
padding-left: 0;
|
354
|
+
list-style: none;
|
355
|
+
border-radius: 0.25rem;
|
356
|
+
display: block;
|
357
|
+
color: green;
|
358
|
+
font-size: 15px;
|
359
|
+
margin-bottom: 30px;
|
360
|
+
}
|
361
|
+
.pageUrl {
|
362
|
+
color: green;
|
363
|
+
font-size: 12px;
|
364
|
+
font-weight: 900;
|
365
|
+
text-decoration: none;
|
366
|
+
margin-right: 10px;
|
367
|
+
}
|
368
|
+
.pageUrl:hover {
|
369
|
+
text-decoration: none;
|
370
|
+
color: green;
|
371
|
+
}
|
372
|
+
|
373
|
+
@media (max-width: 768px) {
|
374
|
+
.socialIons > .item-lists2 {
|
375
|
+
flex-direction: row;
|
376
|
+
align-items: center;
|
377
|
+
}
|
378
|
+
.socialIons > .item-lists2 > li {
|
379
|
+
padding-right: 30px;
|
380
|
+
margin: 0;
|
381
|
+
}
|
382
|
+
.sep {
|
383
|
+
margin: 0;
|
384
|
+
}
|
385
|
+
.author-meta {
|
386
|
+
padding-left: 15px;
|
387
|
+
}
|
388
|
+
.comments-count {
|
389
|
+
margin: 18px 0;
|
390
|
+
text-align: left;
|
391
|
+
}
|
392
|
+
|
393
|
+
.navbar {
|
394
|
+
padding: 1.2rem 15px !important;
|
395
|
+
}
|
396
|
+
.title,
|
397
|
+
.description {
|
398
|
+
width: 100% !important;
|
399
|
+
text-align: center;
|
400
|
+
}
|
401
|
+
.angle-arrow {
|
402
|
+
position: fixed;
|
403
|
+
bottom: 4px;
|
404
|
+
right: 32px;
|
405
|
+
top: auto;
|
406
|
+
z-index: 999;
|
407
|
+
}
|
408
|
+
.alertbar form {
|
409
|
+
display: block;
|
410
|
+
margin-top: 10px;
|
411
|
+
}
|
412
|
+
}
|
413
|
+
@media (max-width: 992px) {
|
414
|
+
.dropdown:hover .dropdown-menu {
|
415
|
+
left: 0px;
|
416
|
+
padding: 0;
|
417
|
+
}
|
418
|
+
.dropdown-item {
|
419
|
+
text-align: left;
|
420
|
+
font-weight: 600;
|
421
|
+
padding: 0.25rem 0;
|
422
|
+
}
|
423
|
+
}
|
Binary file
|
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.
|
4
|
+
version: 0.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- vivek-appscms
|
@@ -62,7 +62,9 @@ files:
|
|
62
62
|
- LICENSE.txt
|
63
63
|
- README.md
|
64
64
|
- _includes/author_bio.html
|
65
|
+
- _includes/custom-head.html
|
65
66
|
- _includes/head/index.html
|
67
|
+
- _includes/header.html
|
66
68
|
- _includes/header/index.html
|
67
69
|
- _includes/pagination.html
|
68
70
|
- _includes/pagination2.html
|
@@ -79,10 +81,10 @@ files:
|
|
79
81
|
- assets/bulb.svg
|
80
82
|
- assets/cloud.svg
|
81
83
|
- assets/css/blog.css
|
82
|
-
- assets/css/post.css
|
83
84
|
- assets/css/tools.css
|
84
85
|
- assets/easy.svg
|
85
86
|
- assets/guaranty.svg
|
87
|
+
- assets/images/avatar.png
|
86
88
|
- assets/pdf.svg
|
87
89
|
- assets/protect.svg
|
88
90
|
- assets/support.svg
|
data/assets/css/post.css
DELETED
@@ -1,145 +0,0 @@
|
|
1
|
-
body {
|
2
|
-
font-size: 20px;
|
3
|
-
}
|
4
|
-
|
5
|
-
/* post-layouts styling */
|
6
|
-
|
7
|
-
/* left-sidebar-social-styling */
|
8
|
-
.socialIons {
|
9
|
-
position: sticky;
|
10
|
-
top: 100px;
|
11
|
-
}
|
12
|
-
.socialIons > .item-lists2 {
|
13
|
-
display: flex;
|
14
|
-
flex-direction: column;
|
15
|
-
width: 100%;
|
16
|
-
}
|
17
|
-
.socialIons > .item-lists2 > li {
|
18
|
-
list-style: none;
|
19
|
-
padding: 8px 0px;
|
20
|
-
margin: 0 auto;
|
21
|
-
}
|
22
|
-
.socialIons .item-lists2 li a {
|
23
|
-
color: rgba(95, 21, 21, 0.44);
|
24
|
-
fill: rgba(0, 0, 0, 0.44);
|
25
|
-
font-size: 15px;
|
26
|
-
cursor: pointer;
|
27
|
-
text-decoration: none !important;
|
28
|
-
}
|
29
|
-
.socialIons > .item-lists2 > li i {
|
30
|
-
font-size: 18px;
|
31
|
-
color: rgba(0, 0, 0, 0.44);
|
32
|
-
fill: rgba(0, 0, 0, 0.44);
|
33
|
-
}
|
34
|
-
.sep {
|
35
|
-
height: 1px;
|
36
|
-
width: 20px;
|
37
|
-
background: #999;
|
38
|
-
margin: 3px auto;
|
39
|
-
}
|
40
|
-
.comments-count {
|
41
|
-
margin: 18px 25px;
|
42
|
-
text-align: center;
|
43
|
-
}
|
44
|
-
.comment_count {
|
45
|
-
font-size: 12px;
|
46
|
-
color: rgba(95, 21, 21, 0.44) !important;
|
47
|
-
fill: rgba(0, 0, 0, 0.44);
|
48
|
-
text-decoration: none !important;
|
49
|
-
}
|
50
|
-
/* close */
|
51
|
-
|
52
|
-
/* right-sidebar-styling-starts */
|
53
|
-
/* author bio styling.. */
|
54
|
-
.author_image .author-thumb {
|
55
|
-
width: 60px;
|
56
|
-
height: 60px;
|
57
|
-
object-fit: cover;
|
58
|
-
}
|
59
|
-
.author-meta .postName {
|
60
|
-
font-size: 18px !important;
|
61
|
-
color: rgba(0, 0, 0, 0.8) !important;
|
62
|
-
text-decoration: none !important;
|
63
|
-
font-family: 'Merriweather', serif;
|
64
|
-
}
|
65
|
-
.btn_follow {
|
66
|
-
margin-left: 5px;
|
67
|
-
margin-bottom: 10px;
|
68
|
-
border-color: #02b875;
|
69
|
-
color: #1c9963 !important;
|
70
|
-
padding: 3px 10px;
|
71
|
-
text-align: center;
|
72
|
-
border-radius: 999em;
|
73
|
-
font-size: 1.5rem;
|
74
|
-
display: inline-block;
|
75
|
-
border: 1px solid;
|
76
|
-
}
|
77
|
-
.author_bio {
|
78
|
-
font-family: 'Merriweather', serif;
|
79
|
-
color: rgba(0, 0, 0, 0.44);
|
80
|
-
font-size: 13px;
|
81
|
-
line-height: 20px;
|
82
|
-
}
|
83
|
-
/* close */
|
84
|
-
|
85
|
-
/* pagination-styling-forblog */
|
86
|
-
.pointerup i.fa {
|
87
|
-
color: #eaeaea;
|
88
|
-
}
|
89
|
-
.pointerup {
|
90
|
-
margin-bottom: -9px;
|
91
|
-
margin-left: 49%;
|
92
|
-
font-size: 30px;
|
93
|
-
}
|
94
|
-
.bottompagination span.navigation {
|
95
|
-
display: block;
|
96
|
-
font-size: 0.93rem;
|
97
|
-
padding: 15px 0 0 0;
|
98
|
-
text-align: center;
|
99
|
-
margin-bottom: 0rem;
|
100
|
-
color: #999;
|
101
|
-
border-top: 1px solid #ddd;
|
102
|
-
}
|
103
|
-
.pagination {
|
104
|
-
display: -ms-flexbox;
|
105
|
-
display: flex;
|
106
|
-
padding-left: 0;
|
107
|
-
list-style: none;
|
108
|
-
border-radius: 0.25rem;
|
109
|
-
display: block;
|
110
|
-
color: green;
|
111
|
-
font-size: 15px;
|
112
|
-
margin-bottom: 30px;
|
113
|
-
}
|
114
|
-
.pageUrl {
|
115
|
-
color: green;
|
116
|
-
font-size: 12px;
|
117
|
-
font-weight: 900;
|
118
|
-
text-decoration: none;
|
119
|
-
margin-right: 10px;
|
120
|
-
}
|
121
|
-
.pageUrl:hover {
|
122
|
-
text-decoration: none;
|
123
|
-
color: green;
|
124
|
-
}
|
125
|
-
|
126
|
-
@media (max-width: 767px) {
|
127
|
-
.socialIons > .item-lists2 {
|
128
|
-
flex-direction: row;
|
129
|
-
align-items: center;
|
130
|
-
}
|
131
|
-
.socialIons > .item-lists2 > li {
|
132
|
-
padding-right: 30px;
|
133
|
-
margin: 0;
|
134
|
-
}
|
135
|
-
.sep {
|
136
|
-
margin: 0;
|
137
|
-
}
|
138
|
-
.author-meta {
|
139
|
-
padding-left: 15px;
|
140
|
-
}
|
141
|
-
.comments-count {
|
142
|
-
margin: 18px 0;
|
143
|
-
text-align: left;
|
144
|
-
}
|
145
|
-
}
|