- My name is
Aline, my pronouns areshe/Her.- I live in France and I am a college student.
- Two of my hobbies are :
Photography and codding- I speak
French (Native) and English (C1)
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.
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