forked from pflooky/data-caterer-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
For edit plan button, resolve to correct URL
- Loading branch information
Showing
32 changed files
with
1,833 additions
and
811 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -10,19 +10,19 @@ | |
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css"> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css"/> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap-select.min.css"> | ||
<link rel="stylesheet" href="../main.css" type="text/css"/> | ||
<link rel="icon" href="https://data.catering/diagrams/logo/data_catering_transparent.svg"/> | ||
<link rel="stylesheet" href="/ui/main.css" type="text/css"/> | ||
<link rel="icon" href="./data_catering_transparent.svg"/> | ||
</head> | ||
<body> | ||
<div class="top-banner"> | ||
<a class="logo" href="/"><img src="https://data.catering/diagrams/logo/data_catering_transparent.svg" alt="logo"/></a> | ||
<a class="logo" href="/"><img src="./data_catering_transparent.svg" alt="logo"/></a> | ||
<span><b>Data Caterer</b></span> | ||
</div> | ||
<nav class="topnav"> | ||
<a href="../index.html">Home</a> | ||
<a href="connection.html">Connection</a> | ||
<a href="../plan/plan.html">Plan</a> | ||
<a href="../history/history.html">History</a> | ||
<a href="/">Home</a> | ||
<a href="/connection">Connection</a> | ||
<a href="/plan">Plan</a> | ||
<a href="/history">History</a> | ||
<a href="/shutdown" class="btn btn-danger" style="float: right; margin-right: 5px">Shutdown</a> | ||
</nav> | ||
<div> | ||
|
@@ -47,6 +47,6 @@ <h3>Existing connections</h3> | |
<script src="https://cdn.jsdelivr.net/npm/jquery/dist/jquery.min.js"></script> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap-select.min.js"></script> | ||
<script type="module" src="connection.js"></script> | ||
<script type="module" src="/ui/connection/connection.js"></script> | ||
</body> | ||
</html> |
Oops, something went wrong.