--- loncom/interface/lonhtmlcommon.pm 2008/08/21 10:48:37 1.178 +++ loncom/interface/lonhtmlcommon.pm 2008/08/24 12:56:28 1.179 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # a pile of common html routines # -# $Id: lonhtmlcommon.pm,v 1.178 2008/08/21 10:48:37 bisitz Exp $ +# $Id: lonhtmlcommon.pm,v 1.179 2008/08/24 12:56:28 raeburn Exp $ # # Copyright Michigan State University Board of Trustees # @@ -1727,6 +1727,25 @@ sub course_custom_roles { ############################################## ############################################## + +# topic_bar +# +# Generates a div containing a numbered (static image) followed by a title +# with a background color defined in the corresponding CSS: LC_topic_bar +# +sub topic_bar { + my ($imgnum,$title) = @_; + return ' +
+ '.&mt('Step [_1]',$imgnum).
+              '  + '.$title.' +
+'; +} + +############################################## +############################################## # echo_form_input #