2015-09-09 16:46:42 +00:00
|
|
|
title: $:/core/macros/thumbnails
|
2015-03-23 11:36:11 +00:00
|
|
|
tags: $:/tags/Macro
|
|
|
|
|
2015-03-23 16:05:25 +00:00
|
|
|
\define thumbnail(link,icon,color,background-color,image,caption,width:"280",height:"157")
|
2015-03-25 11:11:18 +00:00
|
|
|
<$link to="""$link$"""><div class="tc-thumbnail-wrapper">
|
|
|
|
<div class="tc-thumbnail-image" style="width:$width$px;height:$height$px;"><$reveal type="nomatch" text="" default="""$image$""" tag="div" style="width:$width$px;height:$height$px;">
|
2015-03-23 16:05:25 +00:00
|
|
|
[img[$image$]]
|
2015-04-01 13:06:59 +00:00
|
|
|
</$reveal><$reveal type="match" text="" default="""$image$""" tag="div" class="tc-thumbnail-background" style="width:$width$px;height:$height$px;background-color:$background-color$;"></$reveal></div><div class="tc-thumbnail-icon" style="fill:$color$;color:$color$;">
|
2015-03-23 16:05:25 +00:00
|
|
|
$icon$
|
2015-03-25 11:11:18 +00:00
|
|
|
</div><div class="tc-thumbnail-caption">
|
2015-03-23 11:36:11 +00:00
|
|
|
$caption$
|
2015-09-08 18:32:07 +00:00
|
|
|
</div>
|
|
|
|
</div></$link>
|
2015-03-23 11:36:11 +00:00
|
|
|
\end
|
|
|
|
|
2015-03-23 16:05:25 +00:00
|
|
|
\define thumbnail-right(link,icon,color,background-color,image,caption,width:"280",height:"157")
|
2015-03-25 11:11:18 +00:00
|
|
|
<div class="tc-thumbnail-right-wrapper"><<thumbnail """$link$""" """$icon$""" """$color$""" """$background-color$""" """$image$""" """$caption$""" """$width$""" """$height$""">></div>
|
2015-03-23 11:36:11 +00:00
|
|
|
\end
|
2015-03-23 16:05:25 +00:00
|
|
|
|
|
|
|
\define list-thumbnails(filter,width:"280",height:"157")
|
2015-03-25 11:11:18 +00:00
|
|
|
<$list filter="""$filter$"""><$macrocall $name="thumbnail" link={{!!link}} icon={{!!icon}} color={{!!color}} background-color={{!!background-color}} image={{!!image}} caption={{!!caption}} width="""$width$""" height="""$height$"""/></$list>
|
2015-03-23 16:05:25 +00:00
|
|
|
\end
|