|
| 1 | +<!DOCTYPE html> |
| 2 | +<html lang="en"> |
| 3 | +<head> |
| 4 | + <meta charset="utf-8"> |
| 5 | + <meta http-equiv="X-UA-Compatible" content="IE=edge"> |
| 6 | + <meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1.0, shrink-to-fit=no, viewport-fit=cover"> |
| 7 | + <meta name="description" content=""> |
| 8 | + <title></title> |
| 9 | + |
| 10 | + <!-- Themes (light + dark) --> |
| 11 | + <link rel="stylesheet" media="(prefers-color-scheme: dark)" href="https://cdn.jsdelivr.net/npm/docsify-themeable@0/dist/css/theme-simple-dark.css"> |
| 12 | + |
| 13 | + <!-- PrismJS theme --> |
| 14 | + <link rel=" stylesheet" href=" https://unpkg.com/[email protected]/themes/prism-night-owl.min.css" > |
| 15 | + |
| 16 | + <!-- Custom Styles --> |
| 17 | + <style> |
| 18 | + :root { |
| 19 | + --theme-hue: 120; |
| 20 | + --theme-color: rgb(0, 85, 97); |
| 21 | + /* <a href="https://ibb.co/mhM4z6P"><img src="https://i.ibb.co/DwSQK5j/vibrant-obelisk.png" alt="vibrant-obelisk" border="0"></a> */ |
| 22 | + --cover-background-color: #00000000; |
| 23 | + --cover-background-image: url(https://i.postimg.cc/ZKsP4RfC/callysto-bg.png?dl=1); |
| 24 | + --cover-button-background: rgb(0, 153, 174); |
| 25 | + --cover-button-border: rgb(0, 153, 174); |
| 26 | + --cover-button-border: 1px solid var(--theme-color); |
| 27 | + --cover-heading-color: rgb(0, 85, 97); |
| 28 | + --cover-heading-font-size: 100px; |
| 29 | + --cover-heading-font-size-min: ; |
| 30 | + --cover-heading-font-size-max: 500px; |
| 31 | + } |
| 32 | + </style> |
| 33 | +</head> |
| 34 | +<body> |
| 35 | +<div id="app"></div> |
| 36 | + |
| 37 | +<script> |
| 38 | + // Docsify Configuration |
| 39 | + window.$docsify = { |
| 40 | + // GENERAL |
| 41 | + // ----------------------------------------------------------------- |
| 42 | + name : 'Callysto - Rust Stream Processing Framework', |
| 43 | + repo: 'vertexclique/callysto', |
| 44 | + coverpage : 'coverpage.md', |
| 45 | + homepage : 'introduction.md', |
| 46 | + loadSidebar: 'sidebar.md', |
| 47 | + |
| 48 | + coverpage: true, |
| 49 | + themeable: { |
| 50 | + readyTransition : true, // default |
| 51 | + responsiveTables: true // default |
| 52 | + } |
| 53 | + }; |
| 54 | +</script> |
| 55 | + |
| 56 | +<!-- Required --> |
| 57 | +<script src="https://cdn.jsdelivr.net/npm/docsify@4/lib/docsify.min.js"></script> |
| 58 | +<script src="https://cdn.jsdelivr.net/npm/docsify-themeable@0/dist/js/docsify-themeable.min.js"></script> |
| 59 | +<script src=" https://cdn.jsdelivr.net/npm/[email protected]/dist/docsify-pagination.min.js" ></script> |
| 60 | +<script src=" https://cdn.jsdelivr.net/npm/[email protected]/dist/docsify-tabs.min.js" ></script> |
| 61 | +<script src="https://cdn.jsdelivr.net/npm/docsify-prism@latest/dist/docsify-prism.min.js"></script> |
| 62 | + |
| 63 | +<!-- CDN files for prism --> |
| 64 | +<script src=" //unpkg.com/[email protected]/prism.js" ></script> |
| 65 | +<script src=" //unpkg.com/[email protected]/components/prism-rust.min.js" ></script> |
| 66 | +<script src=" //unpkg.com/[email protected]/components/prism-toml.min.js" ></script> |
| 67 | +<script src=" //unpkg.com/[email protected]/components/prism-python.min.js" ></script> |
| 68 | +<script src=" //unpkg.com/[email protected]/components/prism-json.min.js" ></script> |
| 69 | + |
| 70 | +<!-- Recommended --> |
| 71 | +<script src="https://cdn.jsdelivr.net/npm/docsify@4/lib/plugins/search.js"></script> |
| 72 | +<script src="https://cdn.jsdelivr.net/npm/docsify@4/lib/plugins/zoom-image.min.js"></script> |
| 73 | +</body> |
| 74 | +</html> |
0 commit comments