nav_search.html 1.3 KB
Newer Older
G
gongfuxiang 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
<!-- 搜索框 start -->
<div class="nav-search white">
    <div class="logo">
        <a href="{{$Think.__MY_URL__}}">
            <img src="{{$image_host}}{{:MyC('home_site_logo_wap')}}" alt="{{:MyC('home_seo_site_title')}}" />
        </a>
    </div>
    <div class="logo-big">
        <a href="{{$Think.__MY_URL__}}">
            <img src="{{$image_host}}{{:MyC('home_site_logo')}}" alt="{{:MyC('home_seo_site_title')}}" />
        </a>
    </div>

    <div class="search-bar">
        <form action="{{:url('index/search/index')}}" method="POST">
D
devil_gong 已提交
16 17
            <input id="search-input" name="keywords" type="text" placeholder="其实搜索很简单^_^ !" value="{{if !empty($params['keywords'])}}{{$params.keywords}}{{/if}}" autocomplete="off" />
            <input id="ai-topsearch" class="submit am-btn" placeholder="其实搜索很简单^_^ !" index="1" type="submit" value="搜索" />
G
gongfuxiang 已提交
18 19 20 21 22 23 24 25 26 27 28
            <notempty name="home_search_keywords">
                <ul class="search-hot-keywords">
                    {{foreach $home_search_keywords as $v}}
                        <li><a href="{{:url('index/search/index', ['keywords'=>$v])}}" target="_blank">{{$v}}</a></li>
                    {{/foreach}}
                </ul>
            </notempty>
        </form>
    </div>
</div>
<!-- 搜索框 end -->