Advertisement
szymcio93

smarty nie do końca

Jun 16th, 2015
215
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title></title>
  6. <style>
  7.  
  8.  
  9. .even {
  10. background-color: #939390;
  11. }
  12.  
  13. .odd {
  14. background-color: #F5F5F0;
  15. }
  16.  
  17. .moje:nth-of-type(4n+1) {
  18. background-color: red;
  19. }
  20.  
  21. </style>
  22.  
  23.  
  24. </head>
  25. <body>
  26. <div>
  27.  
  28.  
  29. <table>
  30.  
  31. {foreach $osoby as $x}
  32. <tr>
  33. <td>{$x.imie|truncate:2:".":true}}</td>
  34. <td>{$x.nazwisko}</td>
  35. <td>{$x.imie|count_characters} + {$x.nazwisko|count_characters}</td>
  36.  
  37. </tr>
  38. {/foreach}
  39. </table>
  40.  
  41. </div>
  42. </body>
  43. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement