Hi,

I am about to create a blog diary. This contains tiddlers with urls that 
link to the original blogs in the body, a date field and several tags 
indicating the blog source and topics covered.

Now I want to create an index tiddler, which uses a nested list to list all 
related tiddlers per tag, sorted by date.

What I came up with so far is this construction, addressing the 'tags' 
field:

<$list filter="[has[tags]each[tags]sort[tags]]">
<h2><$view field="tags"/></h2>
<$list filter="[title{!!title}sort[date]]">
<div class="tw-menu-list-subitem">
<$view field=date format=date template="0DD mmm YYYY" /> --- <$link 
to={{!!title}}><$view field="title"/></$link>
</div>
</$list>
</$list>

My FIRST problem: if there are several tiddlers with identical tags, only 
one is listed.

My SECOND problem: ideally I would like to have individual tags in the 
outer list, not the combination of tags listed in the 'tags' field. I have 
absolutely no idea how to do this.

My THIRD problem: I would also like to include the urls in the body as 
working links to the external sites in my list. However, the LinkWidget 
seems to link only to tiddlers. Is it possible to create external links in 
a list using the text field or any other field?

Thanks a lot for your help!
Michael

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.

Reply via email to