A copyright violation detector running on Wikimedia Cloud Services https://tools.wmflabs.org/copyvios/
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 

38 行
1.0 KiB

  1. <html lang="en">
  2. <head>
  3. <meta charset="utf-8">
  4. <title>
  5. {% if title %}
  6. {{ title }} -
  7. {% endif %}
  8. Earwig's Copyvio Detector
  9. </title>
  10. <link rel="stylesheet" href="/static/style.css"><!-- TODO: add hash -->
  11. <style>
  12. /* TODO: add dynamic background style */
  13. </style>
  14. </head>
  15. <body style="background-image: url('{{ background.image_url }}');">
  16. <div id="container">
  17. <div id="container-inner">
  18. <header>
  19. <a id="a-home" href="/">
  20. Earwig's <strong>Copyvio Detector</strong></a>
  21. <a id="a-language" href="/language">Language</a>
  22. <a id="a-settings" href="/settings">Settings</a>
  23. </header>
  24. {% block content %}
  25. {% endblock %}
  26. </div>
  27. </div>
  28. <footer>
  29. <ul>
  30. <li>Maintained by <a href="https://en.wikipedia.org/wiki/User:The_Earwig">Ben Kurtovic</a></li>
  31. <li><a href="/api">API</a></li>
  32. <li><a href="https://github.com/earwig/copyvios">Source code</a></li>
  33. <li><a href="{{ background.source_url }}">Background image</a></li>
  34. </ul>
  35. </footer>
  36. </body>
  37. </html>