Sha256: 3fe4f3493a369f7e19c95e980b342d88cc8604d4551ffb30a8899dc5291a1bff
Contents?: true
Size: 638 Bytes
Versions: 25
Compression:
Stored size: 638 Bytes
Contents
{% for book in site.data.books %} {% if book.Title == page.title %} {% assign authors_all = book.Author | split: '; ' %} Escrita por {% for author_raw in authors_all %} {% assign author_firstlast = author_raw | split: ', ' %} {{ author_firstlast | reverse | join: " " }} {% unless forloop.last == true %} + {% endunless %} {% endfor %} // Publicada en {{ book.Place }} por {{ book.Publisher }} en {{ book.Date }}{% if book.Edition %} // Publicada por primera vez en {{ book.Edition }}{% endif %} {% if book.Archive %}// Recuperada por {{ book.Archive }}{% endif %} {% endif %} {% endfor %}
Version data entries
25 entries across 25 versions & 2 rubygems