diff options
author | Sébastien SAUVAGE <sebsauvage@sebsauvage.net> | 2013-02-26 10:09:41 +0100 |
---|---|---|
committer | Sébastien SAUVAGE <sebsauvage@sebsauvage.net> | 2013-02-26 10:09:41 +0100 |
commit | 450342737ced8ef2864b4f83a4107a7fafcc4add (patch) | |
tree | a6d2fe843c27b5c3d88dab5581b6a06828d544b9 /tpl/picwall2.html | |
download | Shaarli-450342737ced8ef2864b4f83a4107a7fafcc4add.tar.gz Shaarli-450342737ced8ef2864b4f83a4107a7fafcc4add.tar.zst Shaarli-450342737ced8ef2864b4f83a4107a7fafcc4add.zip |
Initial commit (version 0.0.40 beta)v0.0.40beta
Diffstat (limited to 'tpl/picwall2.html')
-rw-r--r-- | tpl/picwall2.html | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/tpl/picwall2.html b/tpl/picwall2.html new file mode 100644 index 00000000..44d08b0c --- /dev/null +++ b/tpl/picwall2.html | |||
@@ -0,0 +1,19 @@ | |||
1 | <!DOCTYPE html> | ||
2 | <html> | ||
3 | <head>{include="includes"}</head> | ||
4 | <body> | ||
5 | <div id="pageheader">{include="page.header"}</div> | ||
6 | <div style="background-color:#003;"> | ||
7 | {loop="linksToDisplay"} | ||
8 | <div style="float:left;width:48%;border-right:2px solid white;height:120px;overflow:hide;"> | ||
9 | <div style="float:left;width:120px;text-align:center">{$value.thumbnail}</div> | ||
10 | <a href="{$value.permalink}" style="color:yellow;font-weight:bold;text-decoration:none;">{$value.title|htmlspecialchars}</a><br> | ||
11 | <span style="font-size:8pt;color:#eee;">{$value.description|htmlspecialchars}</span> | ||
12 | <div style="clear:both;"></div> | ||
13 | </div><br> | ||
14 | {/loop} | ||
15 | </div> | ||
16 | |||
17 | {include="page.footer"} | ||
18 | </body> | ||
19 | </html> \ No newline at end of file | ||