A copyright violation detector running on Wikimedia Cloud Services https://tools.wmflabs.org/copyvios/
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 
 
 

16 líneas
444 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="get_bash()">${choice(bashes)}</%def>\
  9. <%include file="/support/header.mako" args="environ=environ, title='Bash'"/>
  10. <ol>
  11. % for bash in bashes:
  12. <li>${bash}</li>
  13. % endfor
  14. </ol>
  15. <%include file="/support/footer.mako" args="environ=environ"/>