summaryrefslogtreecommitdiff
path: root/views/hootstream/filters.ejs
blob: 27177aac57f7a94f438a6a4306040d4d8b83a09e (plain)
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
<div id="hootfilters">
   <label>
    <input type="checkbox" name="images" />
    <span>images</span>
  </label>
  <label>
    <input type="checkbox" name="music" />
    <span>music</span>
  </label>
  <label>
    <input type="checkbox" name="hoots" />
    <span>hoots</span>
  </label>
 <label>
    <input type="checkbox" name="comments" />
    <span>comments</span>
  </label>
  <div>
    &middot;
  </div>
  <div>
    sort by
  </div>
  <div className="sort{{sort_direction}}">
    <label><input type="radio" name="sort"><span>name</span></label>
    <label><input type="radio" name="sort"><span>date</span></label>
    <label><input type="radio" name="sort"><span>size</span></label>
  </div>
</div>