mirror of
https://github.com/welpo/tabi.git
synced 2025-11-23 02:00:25 +01:00
✨ feat(micro): add microblogging section to homepage
- Add micro section display on homepage with RSS feed - Support configurable section name via micro_section_name - Add toggle via show_micro config option - Create templates/partials/main_page_micro_list.html - Add sass/parts/_micro.scss for styling - Include RSS icon next to section heading Closes #1
This commit is contained in:
parent
393c5a8cb9
commit
06c55da7b7
11 changed files with 256 additions and 0 deletions
|
|
@ -10,6 +10,10 @@ projects_path = "projects/_index.md"
|
|||
max_projects = 3
|
||||
show_projects_first = false
|
||||
social_media_card = "index.jpg"
|
||||
micro_path = "micro/_index.md"
|
||||
max_micro = 3
|
||||
micro_section_name = "Latest Thoughts"
|
||||
show_micro = true
|
||||
+++
|
||||
|
||||
tabi is an accessible [Zola](https://www.getzola.org) theme with [search](@/blog/mastering-tabi-settings/index.md#search), [multi-language support](@/blog/faq-languages/index.md), [optional JavaScript](@/blog/javascript/index.md), a perfect Lighthouse score, and comprehensive documentation. Crafted for personal websites and blogs.
|
||||
|
|
|
|||
6
content/micro/2025-11-08-1430.md
Normal file
6
content/micro/2025-11-08-1430.md
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
+++
|
||||
title = "2025-11-08 14:30"
|
||||
date = 2025-11-08T14:30:00+08:00
|
||||
+++
|
||||
|
||||
Why Microblog: Thoughts decay without capture; short posts reduce friction between idea and publication.
|
||||
6
content/micro/2025-11-08-2211.md
Normal file
6
content/micro/2025-11-08-2211.md
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
+++
|
||||
title = "2025-11-08 22:11"
|
||||
date = 2025-11-08T22:11:53+08:00
|
||||
+++
|
||||
|
||||
Writing clarifies thinking and compounds your expertise into searchable, permanent knowledge capital.
|
||||
6
content/micro/2025-11-08-2226.md
Normal file
6
content/micro/2025-11-08-2226.md
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
+++
|
||||
title = "2025-11-08 22:26"
|
||||
date = 2025-11-08T22:26:37+08:00
|
||||
+++
|
||||
|
||||
Why use SSG: Pre-rendered HTML eliminates servers, databases, and runtime vulnerabilities while maximizing speed.
|
||||
6
content/micro/2025-11-08-2300.md
Normal file
6
content/micro/2025-11-08-2300.md
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
+++
|
||||
title = "2025-11-08 23:00"
|
||||
date = 2025-11-08T23:00:00+08:00
|
||||
+++
|
||||
|
||||
Shipping code is better than perfect code. Ship it.
|
||||
8
content/micro/_index.md
Normal file
8
content/micro/_index.md
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
+++
|
||||
title = "Micro"
|
||||
description = "Short blogs"
|
||||
sort_by = "date"
|
||||
template = "section.html"
|
||||
paginate_by = 20
|
||||
generate_feeds = true
|
||||
+++
|
||||
Loading…
Add table
Add a link
Reference in a new issue