aboutsummaryrefslogtreecommitdiff
path: root/juick-www/src/main/webapp/WEB-INF/views/partial/homecolumn.html
blob: 50f7e72507e69f42e297cb3746dbb6550ab64278 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<div id="ctitle">
    <h2>{{ title }}</h2>
    <div id="column-expander" tabindex="0"><i data-icon="ei-chevron-down" data-size="s"></i></div>
</div>
<hr/>
<ul>
    {% if paramShow != "top" %}
    <li>
        <a href="/">
            <i data-icon="ei-star" data-size="s"></i>{{ i18n("messages","link.popular") }}
        </a>
    </li>
    {% endif %}
    {% if paramShow != "all" %}
    <li>
        <a href="/?show=all">
            <i data-icon="ei-search" data-size="s"></i>{{ i18n("messages","link.allMessages") }}
        </a>
    </li>
    {% endif %}
    {% if paramShow != "photos" %}
    <li>
        <a href="/?show=photos">
            <i data-icon="ei-camera" data-size="s"></i>{{ i18n("messages","link.withPhotos") }}
        </a>
    </li>
    {% endif %}
</ul>
<hr/>
<form action="/">
    <p>
        <input name="search" class="inp" placeholder="{{ i18n('messages','label.search') }}" value="{{ search | default('') }}"/>
    </p>
</form>
<div id="ctags">
    {% include "views/partial/tags" %}
    {% if showAdv | default(false) %}
    <a href="http://ru.wix.com/">конструктор сайтов</a>
    {% endif %}
</div>