MrDoc/template/app_doc/search.html

58 lines
2.5 KiB
HTML
Raw Normal View History

2020-11-30 21:50:40 +08:00
{% load static %}
2020-12-02 21:25:59 +08:00
{% load i18n %}
2020-07-31 20:23:23 +08:00
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name=renderer content=webkit>
2020-07-31 20:23:23 +08:00
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="Cache-Control" content="no-siteapp">
2020-11-26 20:55:44 +08:00
<link href="{% static 'mrdoc/mrdoc-search.css' %}?version={{mrdoc_version}}" rel="stylesheet">
2020-07-31 20:23:23 +08:00
<link rel="icon" href="{% static 'search/mrdoc_logo_300.png' %}" sizes="192x192" />
<link rel="apple-touch-icon-precomposed" href="{% static 'search/mrdoc_logo_300.png' %}" />
<meta name="msapplication-TileImage" content="{% static 'search/mrdoc_logo_300.png' %}" />
<link rel="shortcut icon" href="{% static 'search/mrdoc_logo_300.png' %}" />
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-touch-fullscreen" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="full-screen" content="yes">
<!--UC强制全屏-->
<meta name="browsermode" content="application">
<!--UC应用模式-->
<meta name="x5-fullscreen" content="true">
<!--QQ强制全屏-->
<meta name="x5-page-mode" content="app">
<!--QQ应用模式-->
<title>{% trans "觅思搜索" %}{% if site_name != None and site_name != '' %} - {{site_name}}{% endif %}</title>
2020-07-31 20:23:23 +08:00
<style>
</style>
</head>
<body>
<div id="content">
<div class="con">
<div class="shlogo"></div>
<div class="sou">
2020-11-26 20:55:44 +08:00
<form action="{% url 'doc_search' %}" method="get" target="_self">
<input class="wd" type="text" placeholder="请输入搜索内容" name="q" x-webkit-speech lang="zh-CN">
<!-- <input name="type" value="doc" hidden> -->
2020-07-31 20:23:23 +08:00
<input name="d_range" value="all" hidden>
<button type="submit" style="background-image: url(/static/search/search_btn.svg);"></button>
</form>
<ul>
2020-12-02 21:25:59 +08:00
<li><a href="/"><i style="background-image: url(/static/search/home_btn.svg);"></i>{% trans "返回首页" %}</a></li>
2020-07-31 20:23:23 +08:00
</ul>
</div>
</div>
2021-02-10 23:05:53 +08:00
<div class="foot">© 2019-2021 by <a href="https://zmister.com/">州的先生</a> . All rights reserved.</div>
2020-07-31 20:23:23 +08:00
</div>
<!--
作者:D.Young
主页https://yyv.me/
githubhttps://github.com/5iux/sou
日期20200324
版权所有,请勿删除
-->
</body>
</html>