Posts
total 9
2023-08-17
this is my first post! You can find information of this theme in about.md 1 2 3 4 5 6 7 8 9 #include <iostream> int main() { std::cout << "Hello world!" << std::endl; return 0; } $ ls erDiagram USER ||--o{ CART : user_id OPTION ||--o{ CART : option_id...
2023-08-17
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat...
2022-01-07
You can draw diagrams and flowcharts with mermaid. ```mermaid graph TD A[Client] --> B[Load Balancer] B --> C[Server1] B --> D[Server2] ``` graph TD A[Client] --> B[Load Balancer] B --> C[Server1] B --> D[Server2] ```mermaid sequenceDiagram participant Alice participant Bob Alice->>John: Hello John, how are you? loop Healthcheck John->>John: Fight...
2022-01-06
renders inline Tex and LaTeX in $ using MathJax. $ f(x) = x^2 + 2x + 1 $ $ \int_{0}^{\pi} \sin(x) \, dx = 2 $ $ \sum_{n=1}^{10} n^2 = 385 $ $ f(x) = x^2 + 2x + 1 $ $ \int_{0}^{\pi} \sin(x) \, dx = 2 $ $...
2022-01-04
You can set redirect in front matter to redirect to other page. --- layout: post redirect: https://google.com --- if you set external-posts-category-name in _config.yml, you can see all external posts in category page. external-posts-category-name: external-links /categories#external-links
2022-01-03
You can set series in front matter to group posts. (optional) --- layout: post series: features --- with series, navigation to other posts in series will be shown in the bottom of the post. if height of post is over client height, navigation will be shown in the top of...
2022-01-02
set menu in _config.yml file to show menu button(#) in the top of the page. (optional) menu: - text: Menu - text: About url: /about - text: Tags url: /tags - text: Categories url: /categories - text: u can write html like - html: <table style="margin:0 auto"><thead><tr><th style="text-align:center">1</th><th style="text-align:center">2</th><th style="text-align:center">3</th></tr></thead><tbody><tr><td...
2022-01-01
set footer in _config.yml file to show footer in the top of the page. (all attribute is optional) footer: name: your-name-here link: https://github.com/fienestar/jekyll-terminal-theme