content/custos/error.html (90 lines of code) (raw):

<!DOCTYPE html> <html class="no-js"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <title>Custos Security Framework</title> <meta name="description" content=""> <meta name="viewport" content="width=device-width"> <link rel="icon" href="static/images/favicon.png" type="image/x-icon"> <!-- Absolute URLs --> <link rel="canonical" href="/error.html"/> <link href="https://fonts.googleapis.com/css2?family=Jost:wght@400;531&display=swap" rel="stylesheet"> <link rel="stylesheet" href="static/css/semantic.min.css"> <link rel="stylesheet" href="static/css/main.css"> </head> <body> <!-- Following Menu --> <div class="ui large top fixed hidden borderless menu" style="box-shadow: 0 20px 20px -15px rgba(0,0,0,.05);"> <div class="ui container"> <div class="ui grid computer only tablet only"> <div class="ui large top fixed borderless menu custos-nav transition visible" style="box-shadow: rgba(0, 0, 0, 0.05) 0px 20px 20px -15px;display: flex !important;"> <div class="ui container"> <a class="item" href="/"><img class="ui small image" src="static/images/logo.svg" alt="Custos Logo" class="ui centered small image"></a> <div class="right menu"> <a class="item" href="#why">Why Custos?</a> <a class="item" href="#partners">Partners</a> <a class="item" href="#contact">Contact</a> <div class="item"> <a class="ui large button black" href="https://github.com/apache/airavata-custos/tree/develop" target="_blank"><i class="github icon"></i> GitHub</a> </div> </div> </div> </div> </div> <div class="ui grid mobile only"> <div class="ui large top fixed borderless menu custos-mobile-nav transition visible" style="box-shadow: rgba(0, 0, 0, 0.05) 0px 20px 20px -15px;display: flex !important;"> <div class="ui container"> <div class="ui dropdown item"> <i class="bars icon"></i> <div class="menu"> <a class="item" href="#why">Why Custos?</a> <a class="item" href="#partners">Partners</a> <a class="item" href="#contact">Contact</a> </div> </div> <a class="item" href="/"><img class="ui small image" src="static/images/logo.svg" alt="Custos Logo" class="ui centered small image"></a> <div class="right menu"> <div class="item"> <a href="https://github.com/apache/airavata-custos/tree/develop" target="_blank" class="ui button black"><i class="github icon"></i> GitHub</a> </div> </div> </div> </div> </div> </div> </div> <div class="pusher"> <div class="jumbotron"> <div class="container"> <h1>We're sorry!</h1> <p>The page <b id="url"></b> could not be found on this server.</p> </div> </div> <div id="footer-gradient" class="ui vertical footer segment" style="margin-top:-1px; border-top:none !important;"> <div class="ui left aligned container"> <img src="static/images/logo-light.svg" class="ui left aligned tiny image"> </div> <div class="ui left aligned container"> <p class="footer-text">To follow custos project discussions and updates, subscribe to Custos mailing list by sending email <br/><i class="mail yellow icon"></i> <a href="mailto:custos-subscribe@airavata.apache.org">custos-subscribe@airavata.apache.org</a></p> </div> </div> </div> <!-- JS --> <script src="static/js/vendor/jquery-1.10.1.js"></script> <script src="static/js/vendor/semantic.js"></script> <script src="static/js/main.js"></script> </body> <script type="text/javascript" charset="utf-8"> $(document).ready(function() { // Add the missing url to the text $("#url").text(window.location.pathname); // Fix the css locations dynamically $("head link").each(function() { for (var i=0; i<window.location.pathname.split(/\//g).length-2; i++) $(this).attr("href", "../" + $(this).attr("href")); }); }) </script> </html>