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

(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-main.tt (-9 / +8 lines)
Lines 38-51 Link Here
38
    [% END %]
38
    [% END %]
39
39
40
        [% IF ( koha_news_count ) %]
40
        [% IF ( koha_news_count ) %]
41
            <div id="news">
41
            <div id="news" class="newscontainer">
42
                <table class="table table-bordered">
42
                [% FOREACH koha_new IN koha_news %]
43
                    [% FOREACH koha_new IN koha_news %]
43
                    <div class="newsitem">
44
                        <thead><tr><th>[% koha_new.title %]</th></tr></thead>
44
                        <h4 class="newsheader">[% koha_new.title %]</h4>
45
                        <tbody><tr><td><p>[% koha_new.new %]</p>
45
                        <div class="newsbody">[% koha_new.new %]</div>
46
                        <p class="newsfooter"><i>(published on [% koha_new.newdate %])</i></p></td></tr></tbody>
46
                        <div class="newsfooter">(published on [% koha_new.newdate %])</div>
47
                    [% END %]
47
                    </div>
48
                </table>
48
                [% END %]
49
            </div>
49
            </div>
50
        [% END %]
50
        [% END %]
51
51
52
- 

Return to bug 12863