{{ header }}
<div id="information-information" class="container">  
    <div id="content" class="">
      <div class="inner-wrap pt-4">
        <div class="container">
            <div class="row">
                <div class="col-md-12 mb-3">
                    <h2>{{ book.title }}</h2>
                    <div class="row">
                        <div class="col-md-3 offset-md-4">
                          <div class="text-center">
                              <img class="img-fluid" src="{{ book.image }}" alt="Book 1" />
                          </div>
                        </div>
                    </div>
                </div>
               
                <div class="col-md-12">
                    <h4 class="mb-3 mt-4">{{ book.subtitle }}</h4>
                      <div class="card">
                          <div class="card-body">
                              <div class="table-responsive theme-table">
                                  <table class="table">
                                      <tbody>
                                      {% if book.editors %}
                                      <tr>
                                          <td><em>Editors: {{ book.editors }}</em></td>
                                      </tr>
                                      {% endif %}
                                      {% if book.year %}
                                      <tr>
                                          <td><em>Year: {{ book.year }}</em></td>
                                      </tr>
                                      {% endif %}
                                      {% if book.price %}
                                      <tr>
                                          <td><em>Price : {{ book.price }}</em></td>
                                      </tr>
                                      {% endif %}
                                      {% if book.isbn %}
                                      <tr>
                                          <td><em>ISBN: {{ book.isbn }}</em></td>
                                      </tr>
                                      {% endif %}
                                      </tbody>
                                  </table>
                              </div>
                              <p><strong>About the Book</strong></p>
                              <p>{{ book.about }}</p>
                              <p><strong>Contents</strong></p>
                              {{ book.contents }}

                          </div>
                      </div>
                </div>
            </div>
        </div>
      </div>
    </div>
</div>
{{ footer }}