Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1# encoding: utf-8 

2from . import * 

3 

4def thumbnail_div( 

5 div_content="" 

6): 

7 """ 

8 *Generate a thumbnail - TBS style* 

9 

10 **Key Arguments** 

11 

12 - ``div_content`` -- the html content of the thumbnail 

13  

14 

15 **Return** 

16 

17 - ``thumbnail`` -- the thumbnail with HTML content 

18  

19 """ 

20 thumbnail_div = """<div class="thumbnail" id=" ">%(div_content)s</div>""" % locals( 

21 ) 

22 

23 return thumbnail_div