aboutsummaryrefslogtreecommitdiff
path: root/templates/index.html
blob: 7de21f73184f3b63e7a58617d7b730fb6b85a440 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{{ template "layout.html" . }}
{{ define "content" }}
<table id='header'>
</table>
{{ $categoryCount := len .Papers }}
{{ if gt $categoryCount 0 }}
<table class='tabs'>
  <td><a class='active' href='/admin/'>Manage</a></td>
</table>
<div class='content'>
{{ block "list" . }}{{ end }}
</div>
{{ else }}
<p>nothing here yet, <a style="text-decoration:underline;" href="/admin/">create a category</a> to start downloading papers</p>
{{ end }}
{{ end }}