-
-
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.
Browse files
Browse the repository at this point in the history
- Loading branch information
opengisch
committed
Mar 28, 2024
1 parent
94009a9
commit be22fdb
Showing
2 changed files
with
109 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
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,106 @@ | ||
<!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>Qfield</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="./_assets/stylesheets/pitch-theme.css" id="theme" /> | ||
<link rel="stylesheet" href="./css/highlight/base16/zenburn.css" /> | ||
|
||
<link rel="stylesheet" href="./_assets/slides/stylesheets/logo_white.png" /> | ||
<link rel="stylesheet" href="./_assets/slides/stylesheets/qfield-base-theme.css" /> | ||
<link rel="stylesheet" href="./_assets/slides/stylesheets/qfield-base-white-theme.css" /> | ||
<link rel="stylesheet" href="./_assets/slides/stylesheets/qfield-theme.css" /> | ||
</head> | ||
<body> | ||
<div class="reveal"> | ||
<div class="slides"> | ||
<section data-markdown data-separator="\r?\n---\r?\n" data-separator-vertical="--v--"> | ||
<textarea data-template> | ||
|
||
|
||
<!-- .slide: data-background="https://talks.opengis.ch/assets/images/about_us.jpg" --> | ||
|
||
--- | ||
|
||
|
||
# QField - Tonga story | ||
https://docs.google.com/presentation/d/1jEG8vo4iEaEMupBVx1hZhc3I0l5llN438Y_2H8dEkCc/present#slide=id.g2999503aba0_9_22 | ||
</textarea> | ||
</section> | ||
</div> | ||
</div> | ||
|
||
<script src="./dist/reveal.js"></script> | ||
|
||
<script src="./mermaid/dist/mermaid.min.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, | ||
highlight: { | ||
highlightOnLoad: false | ||
}, | ||
plugins: [ | ||
RevealMarkdown, | ||
RevealHighlight, | ||
RevealZoom, | ||
RevealNotes, | ||
RevealMath | ||
] | ||
}; | ||
|
||
// options from URL query string | ||
var queryOptions = Reveal().getQueryHash() || {}; | ||
|
||
var options = extend(defaultOptions, {"transition":"none","slideNumber":false,"overview":true,"autoPlayMedia":true,"_":["slides/"],"static":"web","listing-template":"../globals/index/index.html","listingTemplate":"../globals/index/index.html","title":"Qfield","css":"slides/stylesheets/logo_white.png,slides/stylesheets/qfield-base-theme.css,slides/stylesheets/qfield-base-white-theme.css,slides/stylesheets/qfield-theme.css"}, queryOptions); | ||
</script> | ||
|
||
|
||
<script> | ||
Reveal.initialize(options); | ||
Reveal.addEventListener('ready', function (event) { | ||
const blocks = Reveal.getRevealElement().querySelectorAll('pre code:not(.mermaid)'); | ||
const hlp = Reveal.getPlugin('highlight'); | ||
blocks.forEach(hlp.highlightBlock); | ||
}); | ||
</script> | ||
|
||
<script> | ||
const mermaidOptions = extend({ startOnLoad: false }, {}); | ||
mermaid.startOnLoad = false; | ||
mermaid.initialize(mermaidOptions); | ||
const cb = function (event) { mermaid.init(mermaidOptions, '.stack.present>.present pre code.mermaid'); }; | ||
Reveal.addEventListener('ready', cb); | ||
Reveal.addEventListener('slidetransitionend', cb); | ||
</script> | ||
</body> | ||
</html> |