layout: page


<div style=“padding-bottom: 3rem;”>

<form class="form-inline" action="/search.html" method="get">
                  <div class="top_search_con">
                    <input class="form-control mr-sm-2" placeholder="busca aquí ..." type="text" style="color:var(--color-1);" id="search-box" name="query">
                  </div>
                </form>
<form action="/search.html" method="get">
  <label for="search-box">Search</label>
  <input type="text" id="search-box" name="query">
  <input type="submit" value="search">
</form>

</div>

<ul id=“search-results”></ul>

<script>

window.store = {
  {% for book in site.books %}
    "{{ book.url | slugify }}": {
      "title": "{{ book.title | xml_escape }}",
      "descarga": "{{ book.descarga | xml_escape }}",
      "author": "{{ book.author | xml_escape }}",
      "content": {{ book.content | strip_html | strip_newlines | jsonify }},
      "url": "{{ book.url | xml_escape }}"
    }
    {% unless forloop.last %},{% endunless %}
  {% endfor %}
};

</script> <script src=“{{ BASE_PATH }}/js/lunr.min.js”></script> <script src=“{{ BASE_PATH }}/js/search.js”></script>