About Aline

Some facts about me :

Here are my skills :

How are the blogs generated ?

I am writting inside of markdown files and then the framework that I use automatically translates it to an html file, the only thing that I needed to do was a layout and all the css.
The framework used is called Astro and is very powerfull even if I am not yet an expert of it...
To display the blogs I used a map function that searches in my markdown folder for files ending in .md then I fetch the url of the post as the hyperlink and the post name for the text, this way it gives a name to the post as well as a clickeable link to it.

How are the tags fetched and displayed ?

The tags are fetched using the same method as previously : fetching all the .md files and retrieving the tags from them, then It displays the tag as an hyperlink, with the following url [../tags/(tag)], when clicking on this link, it "creates" the tag html page to display all the posts with this tag using the same technique, of retrieving the tags from the posts but this time it only displays if the post has the tag in it's Tag List