This is a blog powered by Eleventy, a lightweight static site generator. It's a place where I share my experiences, projects, life incidents, and mind-blowing facts. My aim is to make this blog useful, fun, and totally interesting for you. So, let's embark on this awesome journey together and explore the amazing world of technology!
To get the most out of this blog, it would be helpful if you have some familiarity with basic HTML and JavaScript. This is a static site, which means the server builds it using the content of the src
folder and serves it as plain HTML files for fast loading by your visitors. The posts are written in Markdown, a lightweight markup language that is easy to learn.
To run this blog locally, follow these steps:
- Clone the repository to your local machine.
- Install the necessary dependencies by running
npm install
. - Start the development server by running
npm start
. - Open your browser and navigate to
http://localhost:8080
to view the blog.
-
src/
: This folder contains all the files used to build the blog.index.md
: The content for the home page.posts/
: Markdown files for the blog posts.about.md
: The content for the about page.
-
public/style.css
: The CSS file that contains the styling rules for the blog. -
.eleventy.js
: Configuration file for Eleventy, where you can customize how the blog builds.