View | Details | Raw Unified | Return to bug 27741
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt (-4 / +3 lines)
Lines 26-35 Link Here
26
            <div class="col-sm-3">
26
            <div class="col-sm-3">
27
                [% IF ( koha_news_count ) %]
27
                [% IF ( koha_news_count ) %]
28
                    <div id="area-news">
28
                    <div id="area-news">
29
                        <h3><span class="news_title">News</span></h3>
29
                        <h2><span class="news_title">News</span></h2>
30
                        [% SET newsdisp = Koha.Preference('NewsAuthorDisplay') %]
30
                        [% SET newsdisp = Koha.Preference('NewsAuthorDisplay') %]
31
                        [% FOREACH koha_new IN koha_news %]
31
                        [% FOREACH koha_new IN koha_news %]
32
                            <div class="newsitem" id="news[% koha_new.idnew | html %]"><h4>[% koha_new.title | html %]</h4>
32
                            <div class="newsitem" id="news[% koha_new.idnew | html %]"><h3>[% koha_new.title | html %]</h3>
33
                                <div class="newsbody">[% koha_new.content | $raw %]</div>
33
                                <div class="newsbody">[% koha_new.content | $raw %]</div>
34
                                <p class="newsfooter"> Posted on [% koha_new.newdate | html %][% IF( ( newsdisp == 'staff' || newsdisp == 'both' ) && koha_new.borrowernumber ) %] by <span class="newsauthor_title">[% koha_new.author_title | html %] </span>[% koha_new.author_firstname | html %] [% koha_new.author_surname | html %]<br />[% END %]
34
                                <p class="newsfooter"> Posted on [% koha_new.newdate | html %][% IF( ( newsdisp == 'staff' || newsdisp == 'both' ) && koha_new.borrowernumber ) %] by <span class="newsauthor_title">[% koha_new.author_title | html %] </span>[% koha_new.author_firstname | html %] [% koha_new.author_surname | html %]<br />[% END %]
35
                                    [% IF ( CAN_user_tools ) %]
35
                                    [% IF ( CAN_user_tools ) %]
Lines 44-50 Link Here
44
                [% END %]
44
                [% END %]
45
                [% IF ( daily_quote ) %]
45
                [% IF ( daily_quote ) %]
46
                    <div id="area-news">
46
                    <div id="area-news">
47
                        <h3>Quote of the day</h3>
47
                        <h2>Quote of the day</h2>
48
                        <div class="newsitem">
48
                        <div class="newsitem">
49
                            <span id="daily-quote-text">[% daily_quote.text | html %]</span><span id="daily-quote-sep"> ~ </span><span id="daily-quote-source">[% daily_quote.source | html %]</span>
49
                            <span id="daily-quote-text">[% daily_quote.text | html %]</span><span id="daily-quote-sep"> ~ </span><span id="daily-quote-source">[% daily_quote.source | html %]</span>
50
                        </div>
50
                        </div>
51
- 

Return to bug 27741