summaryrefslogtreecommitdiff
path: root/templates/image.hbs
blob: 8c3ceb652cc44f889e4b22c3061dfc62a9b362a7 (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
30
31
32
33
34
35
<!DOCTYPE html>
<html>
<head>
  <title>бирка-тян - {{ orig_filename }}</title>
  <link rel="stylesheet" type="text/css" href="/public/css/style.css">
  <meta charset="UTF-8">
</head>
<body>
  <header>
    <h1><a href="/">бирка-тян</a></h1>
  </header>
  <main>
    <h2>{{ orig_filename }}</h2>
    <img src="/image/{{filename}}">
  </main>
  <aside id="tag-view">
    <section id="search">
      <h2>Search</h2>
      <form id="search-box" method="GET" action="/posts">
        <input id="tags" name="tags" type="text" autocomplete="off">
        <button id="search-box-submit" type="submit">Search</button>
      </form>
    </section>
    
    <section id="tags">
      <h2>Tags</h2>
      <ul>
        {{#each tags}}
        <li><a href="/posts?tags={{ . }}">{{ . }}</a></li>
        {{/each}}
      </ul>
    </section>
  </aside>
</body>
</html>