2013-11-04 18:21:20 +00:00
|
|
|
title: $:/core/ui/PageMacros
|
|
|
|
|
2014-02-18 13:59:11 +00:00
|
|
|
\define colour(name)
|
|
|
|
<$transclude tiddler={{$:/palette}} index="$name$"/>
|
|
|
|
\end
|
2014-04-09 19:12:10 +00:00
|
|
|
|
2014-02-20 17:14:27 +00:00
|
|
|
\define color(name)
|
2014-02-20 19:12:05 +00:00
|
|
|
<<colour $name$>>
|
2014-02-20 17:14:27 +00:00
|
|
|
\end
|
2014-04-09 19:12:10 +00:00
|
|
|
|
2014-05-11 17:47:14 +00:00
|
|
|
\define tabs(tabsList,default,state:"$:/state/tab",class)
|
|
|
|
<div class="tw-tab-set $class$">
|
|
|
|
<div class="tw-tab-buttons $class$">
|
2014-04-09 19:12:10 +00:00
|
|
|
<$list filter="$tabsList$" variable="currentTab">
|
|
|
|
<$button set=<<qualify "$state$">> setTo=<<currentTab>> default="$default$" selectedClass="tw-tab-selected">
|
|
|
|
<$transclude tiddler=<<currentTab>> field="caption">
|
|
|
|
<$macrocall $name="currentTab" $type="text/plain" $output="text/plain"/>
|
|
|
|
</$transclude>
|
|
|
|
</$button>
|
|
|
|
</$list>
|
2014-05-11 17:47:14 +00:00
|
|
|
</div><div class="tw-tab-divider $class$"/><div class="tw-tab-content $class$">
|
2014-04-09 19:12:10 +00:00
|
|
|
<$list filter="$tabsList$" variable="currentTab">
|
|
|
|
<$reveal type="match" state=<<qualify "$state$">> text=<<currentTab>> default="$default$">
|
|
|
|
<$transclude tiddler=<<currentTab>> mode="block"/>
|
|
|
|
</$reveal>
|
|
|
|
</$list>
|
2013-11-04 18:21:20 +00:00
|
|
|
</div>
|
2014-05-11 17:47:14 +00:00
|
|
|
</div>
|
2013-12-05 16:21:10 +00:00
|
|
|
\end
|
2014-04-09 19:12:10 +00:00
|
|
|
|
2013-12-05 16:21:10 +00:00
|
|
|
\define wikitext-example(src)
|
|
|
|
```
|
|
|
|
$src$
|
|
|
|
```
|
|
|
|
|
|
|
|
Renders as:
|
|
|
|
|
|
|
|
$src$
|
|
|
|
|
|
|
|
In HTML:
|
|
|
|
|
|
|
|
$$$text/vnd.tiddlywiki>text/html
|
|
|
|
$src$
|
|
|
|
$$$
|
|
|
|
|
2014-03-25 14:26:54 +00:00
|
|
|
\end
|
2014-04-09 19:12:10 +00:00
|
|
|
|
2014-03-25 14:26:54 +00:00
|
|
|
\define wikitext-example-without-html(src)
|
|
|
|
```
|
|
|
|
$src$
|
|
|
|
```
|
|
|
|
|
|
|
|
Renders as:
|
|
|
|
|
|
|
|
$src$
|
|
|
|
|
2014-02-09 20:34:58 +00:00
|
|
|
\end
|
2014-04-09 19:12:10 +00:00
|
|
|
|
2014-02-09 20:34:58 +00:00
|
|
|
\define lingo-base()
|
|
|
|
$:/lingo/
|
|
|
|
\end
|
2014-04-09 19:12:10 +00:00
|
|
|
|
2014-02-09 20:34:58 +00:00
|
|
|
\define lingo(title)
|
|
|
|
{{$(lingo-base)$$title$}}
|
2013-11-04 18:21:20 +00:00
|
|
|
\end
|
|
|
|
{{$:/core/ui/PageTemplate}}
|