Files
xrpl-dev-portal/tool/template-404.html
mDuo13 2c3a6e0c82 Style fixes for tools & 404 page:
- Set Bootstrap colors for background colors
- Adjust button padding to work in more contexts
- Removed unused tool CSS. Migrated some styles to SCSS.
- Fix sticky overlap in faucets sidebar
- Make 404 page inherit from base template
2020-09-11 18:07:47 -07:00

25 lines
1.2 KiB
HTML

{% extends "template-base.html" %}
{% block main %}
<article class="pt-3 p-md-3">
<h1>Not Found</h1>
<div class="content">
<p>Sorry, this page does not exist. Try looking in the <a href="/docs.html#full-doc-index">Full Documentation Index</a>, or you can search the site with Google:</p>
<form role="search" method="get" action="https://www.google.com/search">
<div class="form-inline">
<label class="sr-only" for="centersearch">Search site with Google...</label>
<input name="q" value="site:xrpl.org" type="hidden">
<input id="centersearch" name="q" type="text" class="form-control" placeholder="Search site with Google...">
<button type="submit" class="btn btn-default fa fa-search">&nbsp;</button>
</div>
</form>
</div>
</article>
{% endblock %}
{% block left_sidebar %}
{% set use_page = pages|selectattr("html", 'defined_and_equalto', "docs.html")|first %}
{% set link_prefix = "/" %}{# Links need to be absolute so they work no matter what URL the 404 page is served from #}
{% include "template-sidebar_nav.html" %}
{% endblock %}