mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-06 01:56:20 +00:00
20 lines
512 B
Plaintext
20 lines
512 B
Plaintext
title: $:/core/macros/timeline
|
|
tags: $:/tags/Macro
|
|
|
|
\define timeline(limit:"100",format:"DDth MMM YYYY")
|
|
<div class="tc-timeline">
|
|
<$list filter="[!is[system]has[modified]!sort[modified]limit[$limit$]eachday[modified]]">
|
|
<div class="tc-menu-list-item">
|
|
<$view field="modified" format="date" template="$format$"/>
|
|
<$list filter="[sameday{!!modified}!is[system]!sort[modified]]">
|
|
<div class="tc-menu-list-subitem">
|
|
<$link to={{!!title}}>
|
|
<$view field="title"/>
|
|
</$link>
|
|
</div>
|
|
</$list>
|
|
</div>
|
|
</$list>
|
|
</div>
|
|
\end
|