Ignore:
Timestamp:
Oct 2, 2009, 7:53:41 AM (15 years ago)
Author:
george
Message:
  • Upraveno: Upraven styl aktualit.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/aktuality/index.php

    r236 r252  
    3838            if($Row['Name'] == '') $Author = $Row['Author'];
    3939              else $Author = $Row['Name'];
    40             $Output .= '<div style="border: thin dotted #97ADFF;  background: #F6F7FF; margin-top: 5px; padding: 0px 5px 5px 5px;"><div style="padding-bottom: 1px; border-bottom-width: 1; border-bottom-style: solid; border-bottom-color: silver;"><strong>'.$Row['Title'].' ('.HumanDate($Row['Date']).', '.$Author.')</strong>';
     40            $Output .= '<div class="Panel"><div class="Title">'.$Row['Title'].' ('.HumanDate($Row['Date']).', '.$Author.')';
    4141            if($this->System->Modules['User']->User['Id'] == $Row['User'])
    4242            {
     43              $Output .= '<div class="Action">';
    4344              $Output .= '&nbsp;<a href="index.php?action=del&amp;category='.$Category.'&amp;id='.$Row['Id'].'">Smazat</a>';
    4445              $Output .= '&nbsp;<a href="index.php?action=edit&amp;category='.$Category.'&amp;id='.$Row['Id'].'">Editovat</a>';
    45             }
    46             $Output .= '</div>'.$News->ModifyContent($Row['Content']).'<br />';
     46              $Output .= '</div>';
     47            }
     48            $Output .= '</div><div class="Content">'.$News->ModifyContent($Row['Content']).'<br />';
    4749            if($Row['Enclosure'] != '')
    4850            {
     
    5456              }
    5557            }
    56             $Output .= '</div>';
     58            $Output .= '</div></div>';
    5759          } else $Output .= 'Položka nenalezena.';
    5860        }
     
    181183            if($Row['Name'] == '') $Author = $Row['Author'];
    182184              else $Author = $Row['Name'];
    183             $Output .= '<div style="border: thin dotted #97ADFF; background: #F6F7FF; margin-top: 5px; padding: 0px 5px 5px 5px;"><div style="padding-bottom: 1px; border-bottom-width: 1; border-bottom-style: solid; border-bottom-color: silver;"><strong><a href="?action=view&amp;id='.$Row['Id'].'">'.$Row['Title'].'</a> ('.HumanDate($Row['Date']).', '.$Author.')</strong>';
     185            $Output .= '<div class="Panel"><div class="Title"><a href="?action=view&amp;id='.$Row['Id'].'">'.$Row['Title'].'</a> ('.HumanDate($Row['Date']).', '.$Author.')';
    184186            if($this->System->Modules['User']->User['Id'] == $Row['User'])
    185187            {
     188              $Output .= '<div class="Action">';
    186189              $Output .= '&nbsp;<a href="index.php?action=del&amp;category='.$Category.'&amp;id='.$Row['Id'].'">Smazat</a>';
    187190              $Output .= '&nbsp;<a href="index.php?action=edit&amp;category='.$Category.'&amp;id='.$Row['Id'].'">Editovat</a>';
    188             }
    189             $Output .= '</div>'.$News->ModifyContent($Row['Content']).'<br />';
     191              $Output .= '</div>';
     192            }
     193            $Output .= '</div><div class="Content">'.$News->ModifyContent($Row['Content']).'<br />';
    190194            if($Row['Enclosure'] != '')
    191195            {
     
    197201              }
    198202            }
    199             $Output .= '</div>';
     203            $Output .= '</div></div>';
    200204          }
    201205          $Output .= PagesList('?category='.$Category.'&amp;page=', $Page, $PageMax, $PerPage);
Note: See TracChangeset for help on using the changeset viewer.