Sha256: 924924dea5765545bb6f9a53f8a97b755b470e3453ea836486cdacb7ba34a206

Contents?: true

Size: 1.23 KB

Versions: 8

Compression:

Stored size: 1.23 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="{{site.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="{{site.BASE_PATH}}/cities/{{ book.Place | 'latin' }}" title="{{ book.Place }}">{{ book.Place }}</a> por <a href="{{site.BASE_PATH}}/publishers/{{ book.Publisher | slugify:'latin' }}" title="{{ book.Publihser }}">{{ book.Publisher }}</a>
      en {{ book.Date }}{% if book.Edition == book.Date %}. Primera ediciĆ³n{% else if book.Edition != "" and book.Edition != nil %} // Publicada por primera vez en {{ book.Edition }}{% endif %}{% if book.Archive != "" and book.Archive != nil  %}//
      Recuperada por <a href="{{site.BASE_PATH}}/repositories/{{ book.Archive | slugify:'latin' }}" title="{{ book.Archive }}">{{ book.Archive }}</a>{% endif %}
{% endif %}
{% endfor %}


Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
morel-theme-0.2.28 _includes/es/book-metadata.html
morel-theme-0.2.27 _includes/es/book-metadata.html
morel-theme-0.2.26 _includes/es/book-metadata.html
morel-theme-0.2.25 _includes/es/book-metadata.html
morel-theme-0.2.24 _includes/es/book-metadata.html
morel-theme-0.2.23 _includes/es/book-metadata.html
morel-theme-0.2.22 _includes/es/book-metadata.html
morel-theme-0.2.21 _includes/es/book-metadata.html