A copyright violation detector running on Wikimedia Cloud Services https://tools.wmflabs.org/copyvios/
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 
 
 

18 řádky
522 B

  1. <%!
  2. from random import choice
  3. bashes = [
  4. "Now 20% cooler!",
  5. "I make tools and tool accessories."
  6. ]
  7. %>\
  8. <%def name="bash()">${choice(bashes)}</%def>\
  9. <%include file="/support/header.mako" args="environ=environ, title='Home'"/>
  10. <div id="content">
  11. <ul>
  12. % for bash in bashes:
  13. <li>${bash}</li>
  14. % endfor
  15. </ul>
  16. </div>
  17. <%include file="/support/footer.mako" args="environ=environ"/>