mirror of
https://github.com/XRPLF/xrpl-dev-portal.git
synced 2025-11-20 03:35:51 +00:00
- 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
25 lines
1.2 KiB
HTML
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"> </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 %}
|