Changeset 7
- Timestamp:
- Aug 5, 2018, 8:53:08 PM (6 years ago)
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Config.sample.php
r5 r7 9 9 $Config['Encoding'] = 'utf-8'; 10 10 $Config['BaseURL'] = ''; 11 $Config['Contact'] = 'email@localhost'; 11 12 $Config['ItemsPerPage'] = 30; 12 13 $Config['VisiblePagingItems'] = 5; -
trunk/index.php
r6 r7 315 315 function ShowPage($Content) 316 316 { 317 global $Config; 318 317 319 $Output = '<?xml version="1.0" encoding="'.$this->Config['Encoding'].'"?>'."\n". 318 320 '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">'. … … 327 329 '</head><body>'; 328 330 $Output .= $Content; 331 $Output .= '<div class="footer">Kontakt: <a href="mailto:'.$Config['Contact'].'">'.$Config['Contact'].'</a> '. 332 '<a href="https://svn.zdechov.net/trac/tanec/">Zdrojový kód</a></div>'; 329 333 $Output .= '</body></html>'; 330 334 return($Output); -
trunk/style.css
r4 r7 9 9 text-align: center; 10 10 margin-left: auto; 11 margin-right: auto; 11 margin-right: auto; 12 12 } 13 13 … … 63 63 color: black; 64 64 } 65 .footer 66 { 67 text-align: center; 68 }
Note:
See TracChangeset
for help on using the changeset viewer.