aboutsummaryrefslogtreecommitdiff
path: root/src/blog.rs
AgeCommit message (Collapse)Author
2022-06-11feat: Add project tabGabriel A. Giovanini
2022-06-11fix: Fix blog post timestampsGabriel A. Giovanini
For some the timestamp got messed up. Now they should be restored properly as well the `locustfile.py` pointing to the right endpoints.
2022-06-11feat: Handle 404 resultGabriel A. Giovanini
Now gracefully handle 404, so instead of just panic now it will return a proper http 404 response.
2022-06-10ref: Move from HTML to MDGabriel A. Giovanini
Keep and write in html is pain, so I'm rendering md as html.
2022-06-09feat: Move from pico to custom cssGabriel A. Giovanini
Use css from my current blog, which is a lot smaller. The text itself looks good but the code still breaks the page. Metrics: - hyper: 16.37 KB / 16.47 KB transferred - 1 request
2022-05-15feat: Add missing blog postGabriel A. Giovanini
Add the missing blog post from my hugo blog. Also add a locustfile so I can do some stress test locally.
2022-05-14feat: Add title and date into the post templateGabriel A. Giovanini
Now post template has title and created date by defaul.
2022-05-14feat: Move code to blogGabriel A. Giovanini
- Move most logic of the blog to blog.rs, making it easier to test. - Now the file contains the creation date of the blog post to be parsed. - Add chrono to parse datetime, so later we can order by date. - Refactor gitlab pipeline, move `before_script` to a proper place.