-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Deploying to gh-pages from @ 5af40f0 🚀
- Loading branch information
Alex-Octocorn
committed
Nov 10, 2023
1 parent
d15336a
commit 31d664e
Showing
69 changed files
with
9,084 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,85 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" /> | ||
|
||
<title>Template</title> | ||
<link rel="shortcut icon" href="./favicon.ico" /> | ||
<link rel="stylesheet" href="./dist/reset.css" /> | ||
<link rel="stylesheet" href="./dist/reveal.css" /> | ||
<link rel="stylesheet" href="./dist/theme/solarized.css" id="theme" /> | ||
<link rel="stylesheet" href="./css/highlight/base16/zenburn.css" /> | ||
|
||
|
||
<script type="text/javascript"> | ||
setTimeout(() => { | ||
fetch("https://raw.githubusercontent.com/Alex-Octocorn/logo/main/style.js") | ||
.then(script => script.text()) | ||
.then((script) => { | ||
const head = document.querySelector("head"); | ||
const customCss = document.createElement("script"); | ||
customCss.type = "text/javascript"; | ||
customCss.appendChild(document.createTextNode(script)); | ||
head.appendChild(customCss); | ||
}); | ||
}); | ||
</script></head> | ||
<body> | ||
<div class="reveal"> | ||
<div class="slides"><section data-markdown><script type="text/template"> | ||
|
||
# Titre</script></section></div> | ||
</div> | ||
|
||
<script src="./dist/reveal.js"></script> | ||
|
||
<script src="./plugin/markdown/markdown.js"></script> | ||
<script src="./plugin/highlight/highlight.js"></script> | ||
<script src="./plugin/zoom/zoom.js"></script> | ||
<script src="./plugin/notes/notes.js"></script> | ||
<script src="./plugin/math/math.js"></script> | ||
<script> | ||
function extend() { | ||
var target = {}; | ||
for (var i = 0; i < arguments.length; i++) { | ||
var source = arguments[i]; | ||
for (var key in source) { | ||
if (source.hasOwnProperty(key)) { | ||
target[key] = source[key]; | ||
} | ||
} | ||
} | ||
return target; | ||
} | ||
|
||
// default options to init reveal.js | ||
var defaultOptions = { | ||
controls: true, | ||
progress: true, | ||
history: true, | ||
center: true, | ||
transition: 'default', // none/fade/slide/convex/concave/zoom | ||
slideNumber: true, | ||
plugins: [ | ||
RevealMarkdown, | ||
RevealHighlight, | ||
RevealZoom, | ||
RevealNotes, | ||
RevealMath | ||
] | ||
}; | ||
|
||
// options from URL query string | ||
var queryOptions = Reveal().getQueryHash() || {}; | ||
|
||
var options = extend(defaultOptions, {}, queryOptions); | ||
</script> | ||
|
||
<script src="./_assets/theme.js"></script> | ||
|
||
<script> | ||
Reveal.initialize(options); | ||
</script> | ||
</body> | ||
</html> |
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,12 @@ | ||
setTimeout(() => { | ||
fetch("https://raw.githubusercontent.com/Alex-Octocorn/logo/main/style.js") | ||
.then(script => script.text()) | ||
.then((script) => { | ||
const head = document.querySelector('head'); | ||
const customCss = document.createElement('script'); | ||
customCss.type = 'text/javascript'; | ||
customCss.appendChild(document.createTextNode(script)); | ||
head.appendChild(customCss); | ||
} | ||
) | ||
}) |
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,163 @@ | ||
pre code.hljs { | ||
display: block; | ||
overflow-x: auto; | ||
padding: 1em | ||
} | ||
code.hljs { | ||
padding: 3px 5px | ||
} | ||
/*! | ||
Theme: Zenburn | ||
Author: elnawe | ||
License: ~ MIT (or more permissive) [via base16-schemes-source] | ||
Maintainer: @highlightjs/core-team | ||
Version: 2021.09.0 | ||
*/ | ||
/* | ||
WARNING: DO NOT EDIT THIS FILE DIRECTLY. | ||
This theme file was auto-generated from the Base16 scheme zenburn | ||
by the Highlight.js Base16 template builder. | ||
- https://github.com/highlightjs/base16-highlightjs | ||
*/ | ||
/* | ||
base00 #383838 Default Background | ||
base01 #404040 Lighter Background (Used for status bars, line number and folding marks) | ||
base02 #606060 Selection Background | ||
base03 #6f6f6f Comments, Invisibles, Line Highlighting | ||
base04 #808080 Dark Foreground (Used for status bars) | ||
base05 #dcdccc Default Foreground, Caret, Delimiters, Operators | ||
base06 #c0c0c0 Light Foreground (Not often used) | ||
base07 #ffffff Light Background (Not often used) | ||
base08 #dca3a3 Variables, XML Tags, Markup Link Text, Markup Lists, Diff Deleted | ||
base09 #dfaf8f Integers, Boolean, Constants, XML Attributes, Markup Link Url | ||
base0A #e0cf9f Classes, Markup Bold, Search Text Background | ||
base0B #5f7f5f Strings, Inherited Class, Markup Code, Diff Inserted | ||
base0C #93e0e3 Support, Regular Expressions, Escape Characters, Markup Quotes | ||
base0D #7cb8bb Functions, Methods, Attribute IDs, Headings | ||
base0E #dc8cc3 Keywords, Storage, Selector, Markup Italic, Diff Changed | ||
base0F #000000 Deprecated, Opening/Closing Embedded Language Tags, e.g. <?php ?> | ||
*/ | ||
pre code.hljs { | ||
display: block; | ||
overflow-x: auto; | ||
padding: 1em | ||
} | ||
code.hljs { | ||
padding: 3px 5px | ||
} | ||
.hljs { | ||
color: #dcdccc; | ||
background: #383838 | ||
} | ||
.hljs::selection, | ||
.hljs ::selection { | ||
background-color: #606060; | ||
color: #dcdccc | ||
} | ||
/* purposely do not highlight these things */ | ||
.hljs-formula, | ||
.hljs-params, | ||
.hljs-property { | ||
|
||
} | ||
/* base03 - #6f6f6f - Comments, Invisibles, Line Highlighting */ | ||
.hljs-comment { | ||
color: #6f6f6f | ||
} | ||
/* base04 - #808080 - Dark Foreground (Used for status bars) */ | ||
.hljs-tag { | ||
color: #808080 | ||
} | ||
/* base05 - #dcdccc - Default Foreground, Caret, Delimiters, Operators */ | ||
.hljs-subst, | ||
.hljs-punctuation, | ||
.hljs-operator { | ||
color: #dcdccc | ||
} | ||
.hljs-operator { | ||
opacity: 0.7 | ||
} | ||
/* base08 - Variables, XML Tags, Markup Link Text, Markup Lists, Diff Deleted */ | ||
.hljs-bullet, | ||
.hljs-variable, | ||
.hljs-template-variable, | ||
.hljs-selector-tag, | ||
.hljs-name, | ||
.hljs-deletion { | ||
color: #dca3a3 | ||
} | ||
/* base09 - Integers, Boolean, Constants, XML Attributes, Markup Link Url */ | ||
.hljs-symbol, | ||
.hljs-number, | ||
.hljs-link, | ||
.hljs-attr, | ||
.hljs-variable.constant_, | ||
.hljs-literal { | ||
color: #dfaf8f | ||
} | ||
/* base0A - Classes, Markup Bold, Search Text Background */ | ||
.hljs-title, | ||
.hljs-class .hljs-title, | ||
.hljs-title.class_ { | ||
color: #e0cf9f | ||
} | ||
.hljs-strong { | ||
font-weight: bold; | ||
color: #e0cf9f | ||
} | ||
/* base0B - Strings, Inherited Class, Markup Code, Diff Inserted */ | ||
.hljs-code, | ||
.hljs-addition, | ||
.hljs-title.class_.inherited__, | ||
.hljs-string { | ||
color: #5f7f5f | ||
} | ||
/* base0C - Support, Regular Expressions, Escape Characters, Markup Quotes */ | ||
/* guessing */ | ||
.hljs-built_in, | ||
.hljs-doctag, | ||
.hljs-quote, | ||
.hljs-keyword.hljs-atrule, | ||
.hljs-regexp { | ||
color: #93e0e3 | ||
} | ||
/* base0D - Functions, Methods, Attribute IDs, Headings */ | ||
.hljs-function .hljs-title, | ||
.hljs-attribute, | ||
.ruby .hljs-property, | ||
.hljs-title.function_, | ||
.hljs-section { | ||
color: #7cb8bb | ||
} | ||
/* base0E - Keywords, Storage, Selector, Markup Italic, Diff Changed */ | ||
/* .hljs-selector-id, */ | ||
/* .hljs-selector-class, */ | ||
/* .hljs-selector-attr, */ | ||
/* .hljs-selector-pseudo, */ | ||
.hljs-type, | ||
.hljs-template-tag, | ||
.diff .hljs-meta, | ||
.hljs-keyword { | ||
color: #dc8cc3 | ||
} | ||
.hljs-emphasis { | ||
color: #dc8cc3; | ||
font-style: italic | ||
} | ||
/* base0F - Deprecated, Opening/Closing Embedded Language Tags, e.g. <?php ?> */ | ||
/* | ||
prevent top level .keyword and .string scopes | ||
from leaking into meta by accident | ||
*/ | ||
.hljs-meta, | ||
.hljs-meta .hljs-keyword, | ||
.hljs-meta .hljs-string { | ||
color: #000000 | ||
} | ||
/* for v10 compatible themes */ | ||
.hljs-meta .hljs-keyword, | ||
.hljs-meta-keyword { | ||
font-weight: bold | ||
} |
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,30 @@ | ||
/* http://meyerweb.com/eric/tools/css/reset/ | ||
v4.0 | 20180602 | ||
License: none (public domain) | ||
*/ | ||
|
||
html, body, div, span, applet, object, iframe, | ||
h1, h2, h3, h4, h5, h6, p, blockquote, pre, | ||
a, abbr, acronym, address, big, cite, code, | ||
del, dfn, em, img, ins, kbd, q, s, samp, | ||
small, strike, strong, sub, sup, tt, var, | ||
b, u, i, center, | ||
dl, dt, dd, ol, ul, li, | ||
fieldset, form, label, legend, | ||
table, caption, tbody, tfoot, thead, tr, th, td, | ||
article, aside, canvas, details, embed, | ||
figure, figcaption, footer, header, hgroup, | ||
main, menu, nav, output, ruby, section, summary, | ||
time, mark, audio, video { | ||
margin: 0; | ||
padding: 0; | ||
border: 0; | ||
font-size: 100%; | ||
font: inherit; | ||
vertical-align: baseline; | ||
} | ||
/* HTML5 display-role reset for older browsers */ | ||
article, aside, details, figcaption, figure, | ||
footer, header, hgroup, main, menu, nav, section { | ||
display: block; | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.