Content Updates
Content Update from content folder
To update various page data, follow these steps.
- GO to root/content folder.
- To update homepage, go to `content/_index.md file. Open the file you will get all the data for the homepage here. Change the necessary data there.
---
title: "Home"
date: 2024-07-29T13:48:36+06:00
hero:
- name: >
Make your <span class="font-playfair italic inline-block px-5 border-2 rounded-[88px] pt-0.5 pb-2.5 leading-none border-paragraph bg-[#D9D9D900] dark:border-[#F0F3EA]"> Finance </span> more efficient.
tagline: "50k+ Trusted Businesses"
description: >
Until recently, the prevailing view assumed lorem ipsum was born as a nonsense text. It's not Latin, though it looks like it
vision:
- name: >
A strong vision is crucial for the analysis of wealth.
tagline: Data Integrations
details: >
Until recently, the prevailing view assumed lorem ipsum was born as a nonsense text nothing Before & After magazine.
features:
- item: Guided Payment Procurement
- item: Guided Payment Procurement
- item: Guided Payment Procurement
solution:
- name: >
Ensure strong solutions are available at all times
tagline: Strong Solutions
details: >
Until recently, the prevailing view assumed lorem ipsum was born as a nonsense text nothing Before & After magazine.
features:
- item: On Demand Support
- item: Information Sharing
- item: Cloud Technology
integration:
- name: >
Make productivity easier with 50+ Integrations
tagline: Top Integration
details: >
Until recently, the prevailing view assumed lorem ipsum was born as a nonsense text nothing Before & After magazine.
cta:
- title: >
Start Your Free <br /> Trial Today.
details: >
By creating a custom Web design for your business, we can bring your vision to life.
features:
- No Credit Card Required
- Free For 30 Day Trial.
- Money Back Guarente.
---
-
Some data of a page might comes from another page. Such as for the testimonial data in the home page, you need to update the data from testimonial page. To do so, go to
content/testimonial/_index.md
file update the infortmations. -
Some image also might need to change directly from layouts. For this, go to the
themes/aplio/layouts
folder. Now, go to the partial or page folders and replace the images there. For example, for home page hero image go to thethemes/aplio/layouts/partials/home/hero.html
file and change the image sources.
<img
src="{{"images/hero/hero-chart.png" | absURL }}"
alt="hero Image"
class="inline-block dark:hidden"
/>
Note: All the data for respective pages are added in the content/respective-page._index.md file. Such as, content/about for the about page.
Content Update from data folder
you can update some common data from data folder. These are clients, counters, cta, newsletter, and custom services sections. You will get these codes in the folwoing data format
project-root > data > …yml
- To edit a YML file read https://www.educative.io/blog/yaml-tutorial (opens in a new tab)
- for example, to update clients, go to the data/clients.yaml file. now, change the
title
,subTitle
to update the title and subtitle of the section. Next, change or add the images inside the clients parameter.
---
title: >
The world's best companies trust aplio.
subTitle: >
Trusted by thousands of companies across 50+ countries
clients:
- iconLight: "images/clients/group.svg"
iconDark: "images/clients/group-dark.svg"
- iconLight: "images/clients/infinity.svg"
iconDark: "images/clients/infinity-dark.svg"
- iconLight: "images/clients/artifact.svg"
iconDark: "images/clients/artifact-dark.svg"
- iconLight: "images/clients/caudile.svg"
iconDark: "images/clients/caudile-dark.svg"
- iconLight: "images/clients/axeptio.svg"
iconDark: "images/clients/axeptio-dark.svg"
- iconLight: "images/clients/mfinity.svg"
iconDark: "images/clients/mfinity-dark.svg"
---