Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
opengisch committed Mar 28, 2024
1 parent 22124e8 commit 94009a9
Show file tree
Hide file tree
Showing 2 changed files with 109 additions and 0 deletions.
106 changes: 106 additions & 0 deletions build/talk-qfield/fieldwork.html
@@ -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 - fieldwork redefined
https://docs.google.com/presentation/d/1A7GZP_wv1L4OFcHTXDlO2fBOGOlsjCfm-U2-rs382jk/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>
3 changes: 3 additions & 0 deletions build/talk-qfield/index.html
Expand Up @@ -45,6 +45,9 @@
<a class="list-group-item list-group-item-action" href="features.html" title="QField 3 - features frenzy">
QField 3 - features frenzy
</a>
<a class="list-group-item list-group-item-action" href="fieldwork.html" title="QField - fieldwork redefined">
QField - fieldwork redefined
</a>
<a class="list-group-item list-group-item-action" href="qfield.html" title="QField Presentation">
QField Presentation
</a>
Expand Down

0 comments on commit 94009a9

Please sign in to comment.