2014-06-18 20:51:41 +00:00
|
|
|
extends layout
|
2014-06-20 18:58:12 +00:00
|
|
|
|
2014-06-18 20:51:41 +00:00
|
|
|
block content
|
2014-06-20 18:58:12 +00:00
|
|
|
ol.breadcrumb
|
|
|
|
li
|
|
|
|
a(href="/") Home
|
|
|
|
li
|
2014-06-28 06:44:52 +00:00
|
|
|
a(href="/#books") Livres
|
2014-06-20 18:58:12 +00:00
|
|
|
li.active= title
|
|
|
|
div.container
|
|
|
|
div.page-header
|
|
|
|
h1
|
|
|
|
span.glyphicon.glyphicon-book
|
|
|
|
= ' '+title+' '
|
|
|
|
a.btn.btn-success(href='/calibre/'+path+'/'+data_name+'.'+format.toLowerCase())
|
|
|
|
span.glyphicon.glyphicon-download-alt
|
|
|
|
= ' Telecharger ' + format
|
|
|
|
div.row
|
|
|
|
div.col-md-5
|
|
|
|
h2
|
|
|
|
span.glyphicon.glyphicon-user
|
|
|
|
| Auteur(s)
|
|
|
|
ul.list-unstyled
|
|
|
|
each author in authors
|
|
|
|
li: a(href='/author/'+author.id)= author.name
|
|
|
|
if series_name
|
|
|
|
h2
|
|
|
|
span.glyphicon.glyphicon-list
|
|
|
|
| Serie
|
|
|
|
div
|
2014-06-21 22:35:59 +00:00
|
|
|
a(href='/serie/'+series_id)= series_name + ' '
|
2014-06-20 18:58:12 +00:00
|
|
|
span.badge= series_index
|
|
|
|
h2
|
|
|
|
span.glyphicon.glyphicon-globe
|
|
|
|
| Langue
|
|
|
|
div= lang_code
|
|
|
|
h2
|
|
|
|
span.glyphicon.glyphicon-tags
|
|
|
|
| Etiquette(s)
|
|
|
|
div
|
|
|
|
each tag in tags
|
|
|
|
span.label.label-info= tag.name
|
|
|
|
|
|
|
|
|
div.col-md-7
|
|
|
|
if has_cover == 1
|
|
|
|
img.img-rounded.img-responsive(src='/calibre/'+path+'/cover.jpg',alt="Pas de couverture")
|