layout: root


<div class=“container-fluid” >

<div class="row" >
    <div class="col-md-10 offset-md-1 content" >
        <div class="container {{ page.class | default: '' }}" >
            <section role="main" >
                <article>
                    {% if page.title %}
                    <header>
                        <h1> {{ page.title }}</h1>
                        {% if page.summary %}
                            <p>{{ page.summary }}</p>
                        {% endif %}
                    </header>
                    {% endif %}
                    <main role="main" itemprop="mainContentOfPage">
                        {{ content }}
                    </main>

                    <footer>
                        <p class="text-xs-center">
                            <a href="//{{ site.url }}" title="Volver" >
                                <i class="fa fa-arrow-left" aria-hidden="true" ></i>Volver
                            </a>
                        </p>
                    </footer>
                </article>
            </section>
        </div>
    </div>
</div>

</div>

<footer>

<div class="container-fluid" >
    {% include footer.html %}
</div>

</footer>

{% include javascripts.html %}