The version of vichan running on lainchan.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

51 lines
2.5KB

  1. <link rel="stylesheet" media="screen" href="{{ config.url_stylesheet }}">
  2. {% if config.url_favicon %}<link rel="shortcut icon" href="{{ config.url_favicon }}">{% endif %}
  3. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  4. <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=yes">
  5. {% if config.meta_keywords %}<meta name="keywords" content="{{ config.meta_keywords }}">{% endif %}
  6. {% if config.default_stylesheet.1 != '' %}<link rel="stylesheet" type="text/css" id="stylesheet" href="{{ config.uri_stylesheets }}{{ config.default_stylesheet.1 }}">{% endif %}
  7. {% if config.default_code_stylesheet.1 != '' %}<link rel="stylesheet" type="text/css" id="code_stylesheet" href="{{ config.uri_stylesheets }}{{ config.default_code_stylesheet.1 }}">{% endif %}
  8. {% if config.font_awesome %}<link rel="stylesheet" href="{{ config.root }}{{ config.font_awesome_css }}">{% endif %}
  9. {% if config.country_flags_condensed %}<link rel="stylesheet" href="{{ config.root }}{{ config.country_flags_condensed_css }}">{% endif %}
  10. {% if config.sc_editor %} <link rel="stylesheet" href="{{ config.uri_stylesheets }}sceditor/themes/{{ config.sc_editor_theme }}.css" media="all" /> {% endif %}
  11. <script type="text/javascript">
  12. var configRoot="{{ config.root }}";
  13. var inMod = {% if mod %}true{% else %}false{% endif %};
  14. var modRoot="{{ config.root }}"+(inMod ? "mod.php?/" : "");
  15. </script>
  16. {% if not nojavascript %}
  17. <script type="text/javascript" src="{{ config.url_javascript }}"></script>
  18. {% if not config.additional_javascript_compile %}
  19. {% for javascript in config.additional_javascript %}<script type="text/javascript" src="{{ config.additional_javascript_url }}{{ javascript }}"></script>{% endfor %}
  20. {% endif %}
  21. {% endif %}
  22. {% if config.recaptcha %}<style type="text/css">{% raw %}
  23. #recaptcha_area {
  24. float: none !important;
  25. padding: 0 !important;
  26. }
  27. #recaptcha_logo, #recaptcha_privacy {
  28. display: none;
  29. }
  30. #recaptcha_table {
  31. border: none !important;
  32. }
  33. #recaptcha_table tr:first-child {
  34. height: auto;
  35. }
  36. .recaptchatable img {
  37. float: none !important;
  38. }
  39. #recaptcha_response_field {
  40. font-size: 10pt !important;
  41. border: 1px solid #a9a9a9 !important;
  42. padding: 1px !important;
  43. }
  44. td.recaptcha_image_cell {
  45. background: transparent !important;
  46. }
  47. .recaptchatable, #recaptcha_area tr, #recaptcha_area td, #recaptcha_area th {
  48. padding: 0 !important;
  49. }
  50. {% endraw %}</style>{% endif %}