Create a Blog Post
To create a blog post on Aplio, you need to create a Markdown (.md) file inside the content/blog
folder. Each .md file will generate a new blog post page, and a list of these files will be displayed on the blog list page. By clicking on the title of a blog or the "Read the blog" button, users can navigate to the respective blog details page.
Here's how you can create your first blog post:
- Create a new file at
content/blog/greetings.md
. - Add the following front matter at the beginning of the file:
---
title : 'A digital prescription for the banking industry'
date : 2024-07-30T22:26:31+06:00
isFeatured: true
thumbnail: "images/blog/blog1.png"
fetureImage: "images/blog/blogDetails.png"
author: Natalia Port
tags: Marketing
categories : Investment Banks
---
- Below the front matter, you can add the content of your blog post using Markdown syntax.
Lorem ipsum dolor sit amet consectetur. Nullam blandit dui gravida aliquam enim eu. Adipiscing viverra vulputate curabitur est.
Morbi lorem proin morbi tempor risus. Nisl lobortis diam id faucibus pretium vitae suspendisse sed accumsan. Sodales morbi tristique elit cursus gravida. Ullamcorper commodo eget pulvinar pretium. Condimentum rhoncus commodo amet nec auctor nibh vel mi blandit.
Neque ultrices nunc condimentum morbi risus tincidunt. Vel arcu lacus non ornare. Porttitor in rhoncus magna augue adipiscing.
### Work harder & gain success
Morbi lorem proin morbi tempor risus. Nisl lobortis diam id faucibus pretium vitae suspendisse sed accumsan. Sodales morbi tristique elit cursus gravida. Ullamcorper commodo eget pulvinar pretium. Condimentum rhoncus commodo amet nec auctor nibh vel mi blandit.
Neque ultrices nunc condimentum morbi risus tincidunt. Vel arcu lacus non ornare. Porttitor in rhoncus magna augue adipiscing.
- Manage your time so you’ll get more done in less time
- Cut expenses without sacrificing quality
- Attract and retain quality, high-paying customers


### Manage your online banking
Morbi lorem proin morbi tempor risus. Nisl lobortis diam id faucibus pretium vitae suspendisse sed accumsan. Sodales morbi tristique elit cursus gravida. Ullamcorper commodo eget pulvinar pretium. Condimentum rhoncus commodo amet nec auctor nibh vel mi blandit.
Neque ultrices nunc condimentum morbi risus tincidunt. Vel arcu lacus non ornare. Porttitor in rhoncus magna augue adipiscing.
- Manage your time so you’ll get more done in less time
- Cut expenses without sacrificing quality
- Attract and retain quality, high-paying customers
Save the file after adding your desired content.
A new blog post titled "A digital prescription for the banking industry" is now available at http://localhost:3000/blog/greetings
.
Blog List
The blog list page fetches data from the .md
files located in the content/blog
folder. It displays a list of blog posts based on these files. To add more blog posts, create additional .md
files following the same structure as described above.
The blog list page will automatically retrieve the necessary details.