Getting Started
Newsportal is a minimalist ghost theme crafted for influencers, bloggers, authors, marketers, and entrepreneurs. With a focus on crisp typography and unique styling will highlight your content beautifully and communicate an authentic and high-quality brand to your readers.
Support
If you have any questions that are beyond the scope of this help file, please feel free to send your questions to our support email: support@electronthemes.com. Our support team will reply to you as soon as possible.
Template Information
- Name: Newsportal
- Author: Electronthemes
- Platform: Ghost
- Demo: Newsportal
- Created: 27 July 2020
- Last Update: 04 April 2022 See Changelog
- Version: 3.3.0
Theme Setup
Newsportal theme setup is very easy. If you have already installed a server for Ghost you can easily setup Newsportal theme. If you don’t have a server supported with Ghost, you can set up reading Ghost Install. When you have the server, follow the instructions for setting up the theme.
Upload the theme
You can upload the theme file from the ghost dashboard. to do this
- Log in into your Ghost admin panel.
- Go to Settings > Theme > Upload a theme and upload “newsportal.zip“
- Click Activate.

Uploading the theme via (FTP)
Follow the instructions
- Login to your FTP account.
- Unzip the newsportal.zip file and copy newsportal folder to your /ghost_installation/content/themes
- Restart your installation if necessary. You can ask for help from your hosting provider if you don’t know how to do this step.
- Login to your ghost admin panel.
- Go to settings (general) and select theme “Newsportal“
- Click Save.

General Setup
Publication Info
To change publication info, go to Dashboard > General > Publication Info. Here you can change the following:
- Title
- Description
- Site Timezone
- Publication Language

Logo
We have used SVG Logo for the theme . You can change SVG Logo from Dashboard > General > Publication Identity

Favicon Icon
Ghost shows his ghost logo on your site by default. You can change Favicon Icon or Publication Icon from Dashboard > General > Publication Identity

Publication Cover
This is for showing the site bookmark images. If you upload a cover image, it will be in your site bookmark

Site Meta Settings
This is for Metadata. It will help to get on search using a search engine. You can add also Twitter and Facebook card images, content here.
You can add/edit the content from Dashboard > General > Site Meta Settings

Social Accounts
Social account section is for showing Facebook, Twitter links to your site. Go to Dashboard > Settings > Social Accounts

Primary Navigation
Ghost only supports two types of Navigation. Primary and Secondary Navigation Menu. On the header, primary navigation is showing and On Footer secondary navigation is showing. Go to Dashboard > Settings > Navigation

Secondary Navigation
Secondary Navigation is showing at the top of the header. To add a Secondary menu item, go to Dashboard > Settings > Navigation > Secondary Navigation

Create a Post
Ghost has a beautiful dashboard design. You can easily create a post. Go to Dashboard > Posts > New Post
- Feature Image
- Post Title
- Post content

Create a page
As like as post, you can create a new page from Dashboard > Pages > New Page. You can add:
- Title
- Contents
- Tags
- Authors
- Feature Image
- Excerpt
- more…

Featured Post
Ghost has awesome featured posts option to show some of your chosen posts as featured for the visitors. To add a post as featured, go to Post > Settings and scroll down. Select the checkbox Feature this post

Create Tag
To create a new tag, go to Dashboard > Tags > New Tag

Create Author
You can create multiple author in your site from dashboard. Go to Dashboard > Stuff > Invite people

Click on Invite people and you will get a new popup. You have to add an Email Address and select the staff Role. Lastly, click on Send Invitation now button. An email notification will be sent to create an account on the specific Role.

Code Injection
Code injection is a great feature on Ghost. You can easily write styles and scripts for your site without editing the theme file. You can add various plugins code here like Google analytics
Here you will two text fields for code injections. 1. Site Header and 2. Site Footer
Site Header
If you write scripts on the site header, it will show in <head> tag of the header. It will load first on your site
Site Footer
If you write scripts on the site footer, it will show at the closing of <body> tag. It will load last on your site

Integrations and Custom Integrations
Integrations are another cool feature of Ghost. You can connect a lot of third party plugins or API using integrations. To check the integrations, go to Dashboard > Integrations. You will get some inbuilt integrations and custom integrations options
Custom integrations
To create custom integrations, click on + Add custom integration at the bottom of the page and you will get a popup and add a name of the integration and Create. I have create here Search and Github Deploy integration

Labs
Labs are another very important and beta tester parts of Ghost. Ghost provides their beta updates here. Go to Dashboard > Settings > Labs
- Import Content
- Export your content
- Delete All Content
- Night shift
- Redirects
- Routes

Migration Options
You will get some options here like Import content, export content and delete content options
Default Routes
Routes.yaml is another important part. When you want to use different path link or custom files for pages and different homepage, you can use routes.yaml
file to do that. Here is default .yaml for ghost.
routes:
collections:
/:
permalink: /{slug}/
template: index
taxonomies:
tag: /tag/{slug}/
author: /author/{slug}/
Header

For the header, we have used {{> header}}
partials in folder partials/ header.hbs. In this file you can change the followings:
- Header Top
- Logo
- Search
- Dark Light Icon
- Primary Navigation
Header Top
In the header top, you can change the following parts from Header Top. Go to partials/header-top.hbs
. You can change the following elements:
- Social Profiles
- Date
- Secondary Menu
- Subscribe links
For subscribe links, you will get the code. If you want to remove or change, you can do
{{#if member}}
<li><a href="/account/">{{t "Account"}}</a></li>
<li><a href="#" data-members-signout>{{t "Signout"}}</a></li>
{{else}}
<li><a href="/signin/">{{t "Signin"}}</a></li>
<li><a href="/membership/">{{t "Subscribe"}}</a></li>
{{/if}}
Logo
To change the logo markup or text, find this structure on header.hbs
file
<div class="logo py-15">
{{#if @site.logo}}
<a href="{{@site.url}}"><img src="{{@site.logo}}" alt="{{@site.title}}"></a>
{{else}}
<h2><a href="{{@site.url}}">{{@site.title}}</a></h2>
{{/if}}
</div>
Primary Navigation
For Primary navigation, go to Dashboard >Settings > Navigation > Primary Navigation
Dark, Light and Auto version
We have used dark version by default. When you will install the theme file on your ghost server, you will get your website as dark version.
If you want to use Light and Auto version for default, you can change it from your custom settings. Auto version depend on your device color scheme mode. if the device has selected dark mode, you will get auto dark and device has selected light mode, you will get auto light. You will find the settings Settings > Design > Site Design > Site-WIde > Select Color Scheme

Footer

We used a very minimal footer in our theme. You will get all footer code partials > footer.hbs file. Here are the following parts:
- About
- Recent News
- Tags
- Copyright text
Footer About
You can change the footer about text from a custom setting. You will find here: Settings > Design > Site Design > Site-Wide > About Site footer

Recent News
You can add footer recent news. We have shown 3 recent posts in the footer. If you want to change the limit of posts, you can change at line number 50 . If you want to remove recent posts from footer, you can remove line 44 to 73
{{#get "posts" limit="3"}}
Recent Tags
At footer, we have showed 20 recent tags, If you want to change limit or remove the recent tags, you can do. Change limit
from line number 74 at footer.hbs file
{{#get "tags" limit="20" include="count.posts" order="count.posts desc"}}
Copyright text
You can change custom settings. Go to Settings > Design > Site Design > Site-Wide > Site footer

Homepage
On the homepage, you will get some design sections. The sections are diveded into some tags. You can change and repeat the section easily.
Featured Posts

We have shown a section of 3 featured artcles on homepage. If you set a post as featured, it will be added automatically in the slider. See this section how to add featured post
Featured slider post limit is 3. If you want to increase or decrease the post limit, go to partials/featured-slider.hbs and edit limit="3"
.
{{#get "posts" filter="featured:true" limit="3" include="tags"}}
If you want to remove the featured posts slider from the homepage, go to Settings > Design > Homepage and turn off Show featured posts

Tag’s sections on Homepage
All the tag oriented design are use various tag style. We are using name tag-style-o1 or tag-style-o2 so on.
- Go to Tags in your dashboard
- Open one of the tag and copy slug of the tag
- Open
index.hbs
file in your code editor - Change tag-slug from any partial
{{> tags/tag-style-01 tag_slug="trending" }}

If you want to use same style, copy this {{> tags/tag-style-01 tag_slug="trending" }}
or another and change only tag-slug. Like this
{{> tags/tag-style-05 tag_slug="design" }}
{{> tags/tag-style-05 tag_slug="lifestyle" }}
{{> tags/tag-style-05 tag_slug="creative" }}
Blog Page
You will find the blog page design here: https://newsportal.electronthemes-ghost.com/blog/
If you want to use a blog page for your website, just upload this routes.yaml
code in Settings > Labs > Routes
You will find the routes.yaml file inside theme folder.

Custom Templates
Custom template is a default setting on Ghost. It can be page template and post template. We have created some custom page and post template for the theme. The page template are as follows:

Page Template
- Membership
- Account
- Contact
- Authors
- Tags
Selecting page template
- Create a new page
- Click on Settings to the right side and scroll down
- Select page template i.e. “Membership”

Page url

When you create page, please keep page slug like this.
Page title | Page URl |
Membership | /membership/ |
Account | /account/ |
Signin | /signin/ |
Signup | /signup/ |
For other custom pages, you can add Authors, Tags, Contact page.
Post Template
- Post Fullwidth
- Post Left Sidebar
- Post Right Sidebar
- Post with table of content
We have used 3 posts page style in this theme. You can choose as following:

Custom Template: Post with table of contents
This is a new custom template of new updates (v3.0.0). You can select custom post template Post With Table Of Content to show the table of contents in your post. We have shown table of contents on a custom template. If you want to all the articles, replace {{> content}}
from post.hbs file. Use table_contents="true"
in the {{> content}} partials
{{> content table_contents="true"}}

Custom Settings
From v3.1.0, we have released custom settings for Site-Wide, Homepage, Post. You can easily select your options from Settings > Design > Site Design

Site-Wide Settings
Select color scheme
: You can change your theme color from Dark to Light or Light to Dark and Auto for defaultSearch content API
: Add your content API for the search field. When you add to this field, your search option will show and work.Site footer
: Add your copyright text in this fieldAbout site footer
: Add your add about text in this field that will show under footer
Homepage Seetings
Show header top
: You can on/off Header Top from your siteShow featured posts
: You can on/off Featured articles from HomepageSelect pagination
: You can select Pagination or Load More. By default, Load more option will work
Post Settings
Show bredcrumb
: You can show/hide bredcrumb menu from your post pageDefault post layout
: Select default post layout from this. This layout will be applied for all the articles.Select comment
: By default we are use cove comment for the posts. You can change your comment Disqus or Cove.Comment title
: You can change comment title from this fieldCove publication
: Add your cove publication ID from this field. To get cove publication id, create account to CoveDisqus shortname
: If you select Disqus Comment for your comment option, you need to add Disqus Shortname. You can learn more from [Comments Section]Show related posts
: You can show/hide related articles from post details page.Related posts title
: You can change title of relates articles section
Membership and Subscriptions
The membership page is helping your customer to understand the plan and compare the differences between your offers. Here are the step by step instructions:
Create Membership page
- Create a new page and open the page settings panel from the right side of the page
- Select the page template: Membership at the bottom dropdown
- Publish the page
Create Tiers and show on membership page
- Go to Settings > Membership in your Ghost Admin
- Go to MEMBERSHIP TIERS at the bottom
- Connect your Stripe Account if you don’t have Stripe connected
- Expand Premium position and click on +Add tier to add new tier name, description, list of benefits, price for monthly and yearly.
- Add tier to activate
- Now, go to portal settings, you can control enable and disable tiers appearing on the membership page.
Create Account Page
- Create a new page and open the page settings panel from the right side of the page
- Select the page template: Account at the bottom dropdown
- Publish the page
Search Options
We have created real-time search options the theme file. You can activate the search easily.

We have used Fuse.io for creating real time search. When you will type, you will get instant results. When you install the theme file, you have configured and add content api key on code injection
- Create a custom integrations
- Copy Content Api Key from your created custom integration
- Go to Code Injection > Site Header as follows

After collect the Content Api Key we go to : Settings > Design > Site-Wide
and insert to below search content API box.

Contact form
In the contact form, we have used Formspree for receiving contact form data.
- Go to Formspree and Signup
- Create Form
- Copy your form’s endpoint code
- Use the code in form action at line number 50
<form class="row" action="https://formspree.io/f/xxxxxx" method="POST">

To change contact information, go to custom-contact.hbs file. You change all of the information.

Comments
Ghost has no default comment sytem. We need to third-party comment box like Disqus or Cove. This theme supports both comment box. You will find both comment box in the partials folder in the theme file.
Cove Comment
Cove is popular comment system for ghost. You can easily manage comments for members and paid members posts. It is a premium comment sytem. We have a setup for cove comments. You easily change with your comments.
- Create account in Cove.chat and Login
- Click on +Create a New Account and add a name
- Copy the publication ID and paste it in
Settings > Design > Site Design > Post

- Publication ID. Copy this ID and paste to Cove publication field.

- Replace publication id with your account code

Disqus Comment
We have used discus comments for this theme. We have used our own disqus account. You can change easily with your Disqus shortname. Follow the process to create your Disqus account and get a short name.
- You can create your Disqus code in the next url: http://disqus.com/admin/create/
- Add a short-name for Website Name
- Your unique “Disqus URL” is your shortname copy that name and click finish registration.

- Go to
Settings > Design > Site Design > Post
and Select Disqus fromSelect comment
select option. - Go to
Settings > Design > Site Design > Post > Disqus shortname
; - Change with your shortname, in this case ‘example-shortname’;
- Save.

Disable Comments from site
If you want to disable comments from your posts, select Disable
from Settings > Design > Site Design > Post > Select Comment
. If will disable comments from your site

Github Deployment
Newsportal theme is ready for deployment on GitHub easily. You can read the articles on Github deployment

Development and Customization
In this theme, we have used SCSS to develop and style fast. You must have installed Nodejs and SASS on your computer.
- Open theme file in your editor like VSCode or Sublime Text
- Open terminal in the theme folder
- Run command
npm run sass
Alternatively, You can easily do it using Prepros. To edit SCSS code, follow the instruction:
- Unzip newsportal.zip (this is the template only file) and remember where is the folder location.
- Install a SASS compiler, we recommend you to use Prepos 6, you can download it here.
- Click on “Browse” to add project on the middle side.



Changing Primary and Secondary colors
You can change easily primary, secondary, text color and other colors from _variable.scss file. Open assets/scss/_variables.scss file and change the color that you want, example:
:root{
--color-primary: #f8633b;
--color-dark-primary: #f75050;
--color-secondary: #0b0b0c;
--color-heading: #242428;
--color-heading-two: #242428;
--color-dark-heading: #333333;
--color-paragraph: #666666;
--color-paragraph-two: #666666;
}
Credits
Fonts and Icon Fonts
- Lato: https://fonts.google.com/specimen/Lato
- Roboto: https://fonts.google.com/specimen/Roboto
- Secular One: https://fonts.google.com/specimen/Secular+One
Icons
- Iconic Design: https://iconify.design/
Images
- Unsplash: https://unsplash.com/
- Pixels: https://www.pexels.com/
Plugins and libraries
- jQuery: http://jquery.com
- Fitvids: https://github.com/davatron5000/FitVids.js
- Fuse Search: https://github.com/krisk/Fuse
- Prism JS: https://prismjs.com/
- Medium Zoom: https://github.com/francoischalifour/medium-zoom
- Lazy Loading Disqus: https://samclarke.com/lazy-loading-disqus
- Lazy image loader: https://github.com/verlok/lazyload
- Nicescroll: https://github.com/inuyaksa/jquery.nicescroll
Changelog
VERSION – 3.3.0: Release on 04 June 2022
* Added Support for Ghost 5.0
* Removed all deprecated code
* Small css issues fixed
* Updated English translation file
* Tag file name updated
* Global tag name used
[+] CHANGED FILES
assets/scss/_membership.scss
assets/scss/_header.scss
assets/css/style.css
partials/members/pricing-table.hbs
partials/popular-tags.hbs
partials/latest.hbs
partials/tags/tag-style-03.hbs
partials/tags/tag-style-04.hbs
partials/tags/tag-style-08.hbs
custom-membership.hbs
custom-account.hbs
default.hbs
index.hbs
package.json
locales/en.json
[+] FILE RENAMED
trending-1.hbs -> tag-style-01.hbs
weekly-top-2.hbs -> tag-style-02.hbs
fashion-3.hbs -> tag-style-03.hbs
business-4.hbs -> tag-style-04.hbs
creative-7.hbs -> tag-style-05.hbs
international-8.hbs -> tag-style-06.hbs
hot-9.hbs -> tag-style-07.hbs
[-] DELETED FILES
design-5.hbs
lifestyle-6.hbs
VERSION – 3.2.2: Release on 25 Mar 2022
* Added new feature:
- Some CSS issues fixed
- Mobile responsive issues fixed
- View All Break issues fixed
- Tag name index
[+] CHANGED FILES
package.json
assets/css/style.css
assets/scss/_news.scss
assets/scss/_responsive.scss
index.hbs
page.hbs
post.hbs
custom-contact.hbs
custom-post-left-sidebar.hbs
custom-post-right-sidebar.hbs
partials/headers/header-default.hbs
partials/headers/header-fullwidth.hbs
partials/latest.hbs
partials/tags/trending.hbs > partials/tags/trending-1.hbs
partials/tags/weekly-top.hbs > partials/tags/weekly-top-2.hbs
partials/tags/fashion.hbs > partials/tags/fashion-3.hbs
partials/tags/business.hbs > partials/tags/business-4.hbs
partials/tags/design.hbs > partials/tags/design-5.hbs
partials/tags/lifestyle.hbs > partials/tags/lifestyle-6.hbs
partials/tags/creative.hbs > partials/tags/creative-7.hbs
partials/tags/international.hbs > partials/tags/international-8.hbs
partials/tags/hot.hbs > partials/tags/hot-9.hbs
VERSION – 3.2.1: Release on 02 Mar 2022
* Added new feature:
- Supported Auto color scheme based on machine color
* Updated the existing features
- Mobile responsive issues
- Added Primary color from Ghost admin accent color option
- Featured posts spacing issues fixed
[+] CHANGED FILES
package.json
assets/css/style.css
assets/scss/_contact.scss
assets/scss/_dark-version.scss
assets/scss/_header.scss
assets/scss/_news.scss
assets/scss/_responsive.scss
custom-contact.hbs
default.hbs
index.hbs
partials/featured-posts.hbs
partials/header-top.hbs
partials/latest.hbs
partials/post-header.hbs
partials/social-share.hbs
partials/tags/trending.hbs
VERSION – 3.1.1: Release on 24 Jan 2022
. Updated the existing features
- Search proloader
- Styles and performance
- Small bug fixes
[+] CHANGED FILES
package.json
partials/header.hbs
assets/js/scripts.js
assets/css/style.css
assets/scss/_header.scss
VERSION – 3.1.0: Release on 24 Jan 2022
. Added new feature:
- Custom Settings of Design
- NFT, Adio, Video, Header, File, Callout, Button card design Added
. Updated the existing features
- Post page updated
- Styles and performance
- Small bug fixes
[+] CHANGED FILES
default.hbs
package.json
index.hbs
post.hbs
page.hbs
custom-post-fullwidth.hbs
custom-post-left-sidebar.hbs
custom-post-with-table-of-content.hbs
partials/cove-comments.hbs
partials/footer.hbs
partials/header-top.hbs
partials/header.hbs
partials/post-header.hbs
partials/related-posts.hbs
partials/comments/disqus-comment.hbs
assets/js/single.js
partials/content.hbs
partials/loop.hbs
partials/post-header.hbs
assets/js/scripts.js
assets/css/style.css
assets/scss
[+] NEWLY ADDED FILES
blog.hbs
routes.yaml
VERSION – 3.0.1: Release on 28 Sept 2021
∙ Small bug fixes of locale
. Performance improvements
[+] CHANGED FILES
default.hbs
VERSION – 3.0.0: Release on 26 Sept 2021
∙ Added: Table of comments
∙ Added: SVG Icons added
∙ Added: Cove comments added as default comment options
. Removed: Notification removed because ghost has a default notification
. Removed: Font Awesome and Other font icons removed for better performance
∙ Small bug fixes
. Performance improvements
[+] CHANGED FILES
assets/js/scripts.js
assets/css/style.css
assets/scss
custom-account.hbs
custom-post-fullwidth.hbs
custom-post-left-sidebar.hbs
custom-post-right-sidebar.hbs
custom-authors.hbs
custom-contact.hbs
package.json
default.hbs
page.hbs
post.hbs
tag.hbs
author.hbs
partials/sidebar.hbs
partials/loop.hbs
partials/featured-posts.hbs
partials/latest.hbs
partials/footer.hbs
partials/header-top.hbs
partials/header.hbs
partials/loop.hbs
partials/icons/search.hbs
partials/post-card/big-thumbnail.hbs
partials/post-card/business-thumbnail.hbs
partials/post-card/fashion-thumbnail.hbs
partials/post-card/news-big-thumbnail.hbs
partials/post-card/news-small-thumbnail.hbs
partials/post-card/short-thumbnail.hbs
partials/post-card/small-thumbnail.hbs
partials/post-card/top-reads-big-thumbnail.hbs
partials/tags/trending.hbs
partials/tags/hot.hbs
partials/tags/international.hbs
partials/tags/trending.hbs
partials/sidebar/featured-news.hbs
partials/sidebar/social-profiles.hbs
partials/sidebar/subscribe.hbs
partials/members/visibility-content.hbs
partials/members/subscriber-information.hbs
partials/related-posts.hbs
partials/author-card.hbs
partials/pagination.hbs
partials/social-share.hbs
[+] NEW ADDED FILES
partials/comments.hbs
partials/icons/calendar-checked.hbs
partials/icons/date.hbs
partials/icons/facebook.hbs
partials/icons/linkedin.hbs
partials/icons/pinterest.hbs
partials/icons/twitter.hbs
partials/icons/call.hbs
partials/icons/chat.hbs
partials/icons/edit.hbs
partials/icons/envelope.hbs
partials/icons/globe.hbs
partials/icons/home.hbs
partials/icons/open-envelope.hbs
partials/icons/quora.hbs
partials/icons/user.hbs
partials/icons/youtube.hbs
partials/bredcrumb.hbs
partials/content.hbs
partials/post-header.hbs
custom-post-with-table-of-content.hbs
custom-subscribe.hbs
[+] MODIFIED FILE NAME
partials/dicqus-comment.hbs → partials/disqus-comment.hbs
[-] DELETED FILES
partials/search-popup.hbs
assets/fonts
partials/icons/loaderr.hbs
partials/members/notification-scripts.hbs
partials/members/notifications.hbs
VERSION – 2.0.0: Release on 19 April 2021
∙ Added: Support for Ghost 4.0
∙ Added: Support for 'Public preview' for members posts
∙ Added: Support for new {{price plan}} helper
∙ Updated: {{@site.locale}} helper replaces deprecated {{@site.lang}} helper
∙ Removed: Deprecated {{@labs.members}} helper
∙ Small bug fixes
.Performance improvements
[+] CHANGED FILES
assets/js/scripts.js
assets/css/style.css
assets/scss/_dark-version.scss
assets/scss/_footer.scss
assets/scss/_news.scss
assets/scss/_pagination.scss
assets/scss/_signin.scss
assets/scss/_membership.scss
custom-account.hbs
custom-post-fullwidth.hbs
custom-post-left-sidebar.hbs
custom-post-right-sidebar.hbs
custom-account.hbs
package.json
default.hbs
page.hbs
post.hbs
partials/members/notification-scripts.hbs
partials/members/visibility-content.hbs
partials/header-top.hbs
partials/members/pricing-table.hbs
partials/members/subscriber-information.hbs
partials/sidebar/subscribe.hbs
[-] DELETED FILES
partials/search-popup.hbs
VERSION – 1.1.4: Release on 09 March 2021
[+] CHANGED FILES
scripts.js
package.json
VERSION – 1.1.3: Release on 17 Dec 2020
[+] CHANGED FILES
weekly-top.hbs
package.json
_header.scss
_signin.scss
_dark-light.scss
_featured.scss
- some css issues fixed
VERSION – 1.1.2: Release on 17 Dec 2020
[+] CHANGED FILES
scss/_variable.scss
scss/_style.scss
custom-post-fullwidth.hbs
partials/footer.hbs
partials/header.hbs
partials/members/notification-scripts.hbs
locales/en.json
[+] Newly ADDED
scss/_notification.scss
partials/members/notifications.hbs
- Notifications restored
VERSION – 1.1.1: Release on 19 Nov 2020
[+] CHANGED FILES
package.json
custom-signup.hbs
post.hbs
page.hbs
author.hbs
tag.hbs
custom-contact.hbs
custom-tags.hbs
partials/author-card.hbs
partials/footer.hbs
partials/post-card/small-thumbnail.hbs
partials/related-posts.hbs
partials/sidebar/featured-news.hbs
scripts.js
scss/_author.scss
scss/_button.scss
scss/_featured.scss
scss/_footer.scss
scss/_signin.scss
scss/_single-news.scss
scss/_dark-version.scss
[+] NEWLY ADDED
LazyLoad scripts
[-] DELETED FILES
Removed custon notifications
VERSION – 1.1.0: Release on 02 Oct 2020
[+] CHANGED FILES
package.json
partials/featured-posts.hbs
partials/latest.hbs
partials/footer.hbs
partials/loop.hbs
partials/post-card/big-thumbnail.hbs
partials/members/notifications.hbs
partials/members/notification-scripts.hbs
partials/post-card/business-big-thumbnail.hbs
partials/post-card/business-thumbnail.hbs
partials/post-card/fashion-thumbnail.hbs
partials/post-card/news-big-thumbnail.hbs
partials/post-card/news-small-thumbnail.hbs
partials/post-card/short-thumbnail.hbs
partials/post-card/small-thumbnail.hbs
partials/post-card/top-reads-big-thumbnail.hbs
partials/related-posts.hbs
partials/tags/international.hbs
partials/post-card/top-reads-big-thumbnail.hbs
partials/related-posts.hbs
partials/sidebar/social-profiles.hbs
partials/social-share.hbs
partials/tags/hot.hbs
partials/tags/trending.hbs
assets/js/scripts.js
SCSS Styles
[+] NEWLY ADDED
partials/icons/copy.hbs
Notifications for CARD, Expired Links
[-] DELETED FILES
partials/post-card.hbs
VERSION – 1.0.0: Release on 27 July 2020
[+] Initial Release