-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
FI-2538: Create new docs 404 page (#486)
* delete docs * copy over docs files * remove search logic * revert markdown settings * update favicon path * update wording * Update docs/404.html Co-authored-by: Rob Scanlon <robscanlon@gmail.com> * update link --------- Co-authored-by: Alyssa Wang <awang@mitre.org> Co-authored-by: Rob Scanlon <robscanlon@gmail.com>
- Loading branch information
1 parent
030468a
commit 038d0e2
Showing
43 changed files
with
4,241 additions
and
3,053 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,28 @@ | ||
--- | ||
layout: default | ||
layout: base | ||
--- | ||
|
||
<style type="text/css" media="screen"> | ||
.container { | ||
margin: 10px auto; | ||
max-width: 600px; | ||
text-align: center; | ||
height: 100%; | ||
} | ||
|
||
h1 { | ||
margin: 30px 0; | ||
margin-top: 20%; | ||
font-size: 4em; | ||
line-height: 1; | ||
letter-spacing: -1px; | ||
} | ||
</style> | ||
|
||
<div class="container"> | ||
<h1>404</h1> | ||
<h1>We moved!</h1> | ||
|
||
<p><strong>Page not found :(</strong></p> | ||
<p>The requested page could not be found.</p> | ||
</div> | ||
<p><strong> This page no longer exists.</strong></p> | ||
<p>You've reached an outdated version of the Inferno Documentation site. Head to the <a | ||
href="https://inferno-framework.github.io/docs/">new site</a> for updated documentation.</p> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<footer class="py-4 mt-4 bg-light"> | ||
<div class="container-fluid"> | ||
<div class="row"> | ||
<div class="col-sm-6"> | ||
<h4 data-toc-skip>Contact Us</h4> | ||
<p>The fastest way to reach the Inferno team is via the <a | ||
href="https://chat.fhir.org/#narrow/stream/179309-inferno">Inferno Zulip stream</a>.</p> | ||
<p>You can also e-mail the <a href="mailto:inferno@groups.mitre.org">Inferno Development Team</a>.</p> | ||
</div> | ||
<div class="col-sm-6"> | ||
</div> | ||
</div> | ||
</div> | ||
</footer> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
<nav class="header-nav navbar navbar-expand-lg navbar-light navbar-custom"> | ||
<div class="container-fluid"> | ||
<a class="navbar-brand" href="https://inferno-framework.github.io" aria-label="Home"> | ||
<img src="{{ site.baseurl }}/assets/icon_logo.png" alt="Logo" width="46px" height="50px"> | ||
<span class="visually-hidden">Inferno Framework Homepage</span> | ||
</a> | ||
<p class="h3 d-lg-none">Inferno Framework</p> | ||
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" | ||
aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation"> | ||
<span class="navbar-toggler-icon"></span> | ||
</button> | ||
<div class="collapse navbar-collapse" id="navbarNav"> | ||
<div class="search-container"> | ||
<div class="input-group"> | ||
<span class="input-group-text border-right-0 text-muted" id="search-addon"> | ||
<i class="fas fa-search"></i> | ||
</span> | ||
<input type="search" disabled class="form-control border-left-0 pl-0 shadow-none" | ||
placeholder="Search Inferno Documentation" aria-label="Search" aria-describedby="search-addon" | ||
id="search-input"> | ||
</div> | ||
<div id="search-results" class="search-results"></div> | ||
</div> | ||
<ul class="navbar-nav"> | ||
<li class="nav-item"> | ||
<a class="nav-link{% if page.section == 'about' %} active{% endif %} align-middle" style="display: inline" | ||
href="https://inferno-framework.github.io/about">About</a> | ||
</li> | ||
<li class="nav-item"> | ||
<a class="nav-link{% if page.section == 'docs' %} active{% endif %}" | ||
href="https://inferno-framework.github.io/docs">Documentation</a> | ||
</li> | ||
<li class="nav-item"> | ||
<a class="nav-link{% if page.section == 'community' %} active{% endif %}" | ||
href="https://inferno-framework.github.io/community">Community</a> | ||
</li> | ||
<li class="nav-item"> | ||
<a class="nav-link {% if page.section == 'news' %} active{% endif %}" | ||
href="https://inferno-framework.github.io/news">News</a> | ||
</li> | ||
</ul> | ||
<a href="https://github.com/inferno-framework" target="_blank" rel="noopener noreferrer" | ||
class="ms-2 d-flex align-items-center github-menu" style="text-decoration:none"> | ||
<i class="fab fa-github fa-lg"></i><span class="visually-hidden">Inferno Framework on GitHub</span> | ||
</a> | ||
</div> | ||
</div> | ||
</nav> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
<!doctype html> | ||
<html lang="en" class="h-100"> | ||
|
||
<head> | ||
<!-- Required meta tags --> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | ||
<link rel="icon" href="{{ site.baseurl }}/assets/favicon.ico" type="image/x-icon"> | ||
|
||
<!-- Bootstrap CSS --> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.6.0/css/bootstrap.min.css"> | ||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet"> | ||
<link href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.7.2/font/bootstrap-icons.css" rel="stylesheet"> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.0/css/all.min.css"> | ||
<link href="{{ site.baseurl }}/assets/prism.css" rel="stylesheet" /> | ||
|
||
<link rel="stylesheet" href="{{ site.baseurl }}/assets/common.css"> | ||
|
||
<title>Inferno Framework - {{ page.title }}</title> | ||
</head> | ||
|
||
<body data-spy="scroll" data-target="#toc" class="d-flex flex-column h-100"> | ||
<a href="#content" class="visually-hidden-focusable">Skip to main content</a> | ||
|
||
{% include menubar.html %} | ||
|
||
{{ content }} | ||
|
||
{% include footer.html %} | ||
|
||
<div class="search-overlay"></div> | ||
|
||
<!-- jQuery first, then Popper.js, then Bootstrap JS --> | ||
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script> | ||
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/2.9.3/umd/popper.min.js"></script> | ||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.min.js"></script> | ||
<script src="{{ site.baseurl }}/assets/lunr-2.3.9.js"></script> | ||
<script src="{{ site.baseurl }}/assets/bootstrap-toc-101.min.js"></script> | ||
<script src="{{ site.baseurl }}/assets/common.js"></script> | ||
<script src="{{ site.baseurl }}/assets/prism.js"></script> | ||
|
||
</body> | ||
|
||
</html> |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.