search.html 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. {% extends "index.html" %}
  2. {% block title %}
  3. Search – {{ SITENAME }}
  4. {% endblock title %}
  5. {% block header %}
  6. <div class="container">
  7. <div class="row">
  8. <div class="col-8">
  9. <h3 id="Search in {{ SITENAME }}" style="color: orange;">Search in {{ SITENAME }}</h3>
  10. </div>
  11. <div class="col-4 small" style="margin-top: 0.5rem;">
  12. {% if ADD_THIS_ID and (page_name or page or article) %}
  13. <div class="text-right mb-2 small" style="height: 26px">
  14. <div class="addthis_inline_share_toolbox"></div>
  15. </div>
  16. {% endif %}
  17. </div>
  18. </div>
  19. </div>
  20. {% endblock header %}
  21. {% block add_this %}
  22. {# remove ADD_THIS in content, move to above header #}
  23. {% endblock add_this %}
  24. {% block content %}
  25. <!-- Tipue Search -->
  26. <form>
  27. <div class="tipue_search_group">
  28. <input type="text" name="q" id="tipue_search_input" pattern=".{3,}" title="At least 3 characters" required>
  29. <button type="submit" class="tipue_search_button">
  30. <div class="tipue_search_icon">&#9906;</div>
  31. </button>
  32. </div>
  33. </form>
  34. <div id="tipue_search_content"></div>
  35. <!-- Google Adsense -->
  36. {% if GOOGLE_ADSENSE and GOOGLE_ADSENSE.ads.page %}
  37. <script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
  38. <!-- ad-home -->
  39. <ins class="adsbygoogle"
  40. style="display:block"
  41. data-ad-client="{{ GOOGLE_ADSENSE.id }}"
  42. data-ad-slot="{{ GOOGLE_ADSENSE.ads.page }}"
  43. data-ad-format="auto"
  44. data-full-width-responsive="true"></ins>
  45. <script>
  46. (adsbygoogle = window.adsbygoogle || []).push({});
  47. </script>
  48. {% endif %}
  49. <!-- Google Search -->
  50. {% if GOOGLE_CSE_ID %}
  51. <script async src="https://cse.google.com/cse.js?cx=007986648373531383257:hnbvizg2lks"></script>
  52. <div class="gcse-search"></div>
  53. {% endif %}
  54. {% endblock content %}