diff options
Diffstat (limited to 'templates/admin-edit.html')
-rw-r--r-- | templates/admin-edit.html | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/templates/admin-edit.html b/templates/admin-edit.html index f28518b..5bd4fa1 100644 --- a/templates/admin-edit.html +++ b/templates/admin-edit.html @@ -51,7 +51,8 @@ <label for="{{ $category }}"><span class='papersection' id='{{ $category }}'>{{ $category }}</span></label> </div> {{ range $path, $paper := $papers }} - <div class="paper"> + <ul> + <li> {{ if $paper.Meta.Title }} <span class="title"><input type="checkbox" id="{{ $path }}" name="paper" value="{{ $path }}"> <a href='/download/{{ $path }}' title='{{ $paper.Meta.Title }}'>{{ $paper.Meta.Title }}</a></input></span><br> {{ else }} @@ -72,8 +73,10 @@ {{ if $paper.Meta.Journal }}{{ if $hasVal }}- {{ end }}<span class="journal">{{ $paper.Meta.Journal }}</span>{{ end }} - </div> + </li> + </ul> {{ end }} + <hr> {{ end }} {{ end }} </form></div> |