Sha256: d5f47256405c2905cda2bdbde6ba943205e5436b121791cc4e88a1dd7c23f990
Contents?: true
Size: 1.11 KB
Versions: 17
Compression:
Stored size: 1.11 KB
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 | limit: 3 %} {% assign author_firstlast = author_raw | split: ', ' %} <a href="{{BASE_PATH}}/authors/{{ author_firstlast[0] | slugify:'latin' }}-{{ author_firstlast[1] | slugify:'latin' }}" title="{{ author_firstlast | reverse | join: '' }}">{{ author_firstlast | reverse | join: " " }}</a> {% unless forloop.last == true %} + {% endunless %} {% endfor %} // Publicada en <a href="{{BASE_PATH}}/cities/{{ book.Place | slugify:'latin' }}" title="{{ book.Place }}">{{ book.Place }}</a> por <a href="{{BASE_PATH}}/publishers/{{ book.Publisher | slugify:'latin' }}" title="{{ book.Publihser }}">{{ book.Publisher }}</a> en {{ book.Date }}{% if book.Edition %} // Publicada por primera vez en {{ book.Edition }}{% endif %} {% if book.Archive %}// Recuperada por <a href="{{BASE_PATH}}/repositories/{{ book.Archive | slugify:'latin' }}" title="{{ book.Archive }}">{{ book.Archive }}</a>{% endif %} {% endif %} {% endfor %}
Version data entries
17 entries across 17 versions & 2 rubygems