135 lines
3.8 KiB
HTML
135 lines
3.8 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
<meta
|
|
name="viewport"
|
|
content="width=device-width, initial-scale=1.0, shrink-to-fit=no"
|
|
/>
|
|
<title>Clojure demos</title>
|
|
<meta
|
|
name="description"
|
|
content="Examples & Guides on using various libraries and technologies with in the clojure eco system's"
|
|
/>
|
|
<link rel="canonical" href="https://clojure-demos.digitaloctave.com/" />
|
|
<meta property="og:type" content="article" />
|
|
<meta property="og:title" content="TITLE OF YOUR POST OR PAGE" />
|
|
<meta property="og:description" content="DESCRIPTION OF PAGE CONTENT" />
|
|
<meta property="og:image" content="LINK TO THE IMAGE FILE" />
|
|
<meta property="og:url" content="PERMALINK" />
|
|
<meta property="og:site_name" content="SITE NAME" />
|
|
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
|
|
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
|
|
<link
|
|
rel="stylesheet"
|
|
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"
|
|
integrity="sha512-z3gLpd7yknf1YoNbCzqRKc4qyor8gaKU1qmn+CShxbuBusANI9QpRohGBreCFkKxLhei6S9CQXFEbbKuqLg0DA=="
|
|
crossorigin="anonymous"
|
|
referrerpolicy="no-referrer"
|
|
/>
|
|
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
<link
|
|
href="https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&family=Roboto&display=swap"
|
|
rel="stylesheet"
|
|
/>
|
|
<link
|
|
rel="stylesheet"
|
|
type="text/css"
|
|
href="https://raw.githubusercontent.com/FarhadG/code-mirror-themes/master/themes/rdark.css"
|
|
/>
|
|
<style>
|
|
html {
|
|
font-family: "Montserrat", Lato, Garamond;
|
|
}
|
|
|
|
.cm-s-rdark {
|
|
font-size: 1em;
|
|
line-height: 1.5em;
|
|
font-family: inconsolata, monospace;
|
|
letter-spacing: 0.3px;
|
|
word-spacing: 1px;
|
|
background: #1b2426;
|
|
color: #b9bdb6;
|
|
}
|
|
.cm-s-rdark .CodeMirror-lines {
|
|
padding: 8px 0;
|
|
}
|
|
.cm-s-rdark .CodeMirror-gutters {
|
|
box-shadow: 1px 0 2px 0 rgba(0, 0, 0, 0.5);
|
|
-webkit-box-shadow: 1px 0 2px 0 rgba(0, 0, 0, 0.5);
|
|
background-color: #1b2426;
|
|
padding-right: 10px;
|
|
z-index: 3;
|
|
border: none;
|
|
}
|
|
.cm-s-rdark div.CodeMirror-cursor {
|
|
border-left: 3px solid #b9bdb6;
|
|
}
|
|
.cm-s-rdark .CodeMirror-activeline-background {
|
|
background: #00000070;
|
|
}
|
|
.cm-s-rdark .CodeMirror-selected {
|
|
background: #e0e8ff66;
|
|
}
|
|
.cm-s-rdark .cm-comment {
|
|
color: #646763;
|
|
}
|
|
.cm-s-rdark .cm-string {
|
|
color: #5ce638;
|
|
}
|
|
.cm-s-rdark .cm-number {
|
|
color: null;
|
|
}
|
|
.cm-s-rdark .cm-atom {
|
|
color: null;
|
|
}
|
|
.cm-s-rdark .cm-keyword {
|
|
color: #5ba1cf;
|
|
}
|
|
.cm-s-rdark .cm-variable {
|
|
color: #ffaa3e;
|
|
}
|
|
.cm-s-rdark .cm-def {
|
|
color: #ffffff;
|
|
}
|
|
.cm-s-rdark .cm-variable-2 {
|
|
color: #ffffff;
|
|
}
|
|
.cm-s-rdark .cm-property {
|
|
color: null;
|
|
}
|
|
.cm-s-rdark .cm-operator {
|
|
color: #5ba1cf;
|
|
}
|
|
.cm-s-rdark .CodeMirror-linenumber {
|
|
color: #646763;
|
|
}
|
|
</style>
|
|
<meta name="robots" content="all" />
|
|
<!-- Google tag (gtag.js) -->
|
|
<script
|
|
async
|
|
src="https://www.googletagmanager.com/gtag/js?id=G-59HNPDZF2T"
|
|
></script>
|
|
<script>
|
|
window.dataLayer = window.dataLayer || [];
|
|
function gtag() {
|
|
dataLayer.push(arguments);
|
|
}
|
|
gtag("js", new Date());
|
|
|
|
gtag("config", "G-59HNPDZF2T");
|
|
</script>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="app">loading here</div>
|
|
<script
|
|
src="/cljs-out/main_bundle.js"
|
|
type="application/javascript"
|
|
></script>
|
|
</body>
|
|
</html>
|