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 pageHeader( 

5 headline="", 

6 tagline=""): 

7 """ 

8 *Generate a pageHeader - TBS style* 

9 

10 **Key Arguments** 

11 

12 - ``headline`` -- the headline text 

13 - ``tagline`` -- the tagline text for below the headline 

14  

15 

16 **Return** 

17 

18 - ``pageHeader`` -- the pageHeader 

19  

20 """ 

21 pageHeader = """ 

22 <div class="page-header" id=" "> 

23 <h1>%(headline)s<br><small>%(tagline)s</small></h1> 

24 </div>""" % locals() 

25 

26 return pageHeader