rolandjesse.de/_layouts/error.html
2015-11-13 05:45:07 -03:00

42 lines
844 B
HTML

<!-- 404 Layout Start -->
<!DOCTYPE html>
<html lang="{{ site.lang }}">
{% include head.html %}
<body>
{% include navigation.html %}
<section class="container content-section text-center">
<div class="row">
<div class="col-lg-10 col-lg-offset-1">
<h1><strong>{{ page.title }}</strong></h1>
{{ page.content | markdownify }}
<img class="img-responsive center-block" src="{{site.baseurl}}{{ site.404-img }}" alt="">
</div>
</div>
</section>
<section class="container content-section text-center">
<div class="row">
<div class="col-lg-10 col-lg-offset-1">
{% include social-buttons.html %}
</div>
</div>
</section>
{% include footer.html %}
{% include js.html %}
</body>
</html>
<!-- 404 Layout End -->