Files
eiffel-org/tutorial/EWF/index.html
2019-10-29 10:25:38 +00:00

92 lines
3.2 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Eiffel Web Framework: basic service</title>
<meta name="description" content="List of slides related to EWF ">
<meta name="author" content="Jocelyn Fiat">
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, minimal-ui">
<link rel="stylesheet" href="../res/reveal.js/css/reveal.css">
<link rel="stylesheet" href="../res/theme/ewf/ewf.css" id="theme">
<!--
<link rel="stylesheet" href="../res/theme/eiffel/eiffel.css" id="theme">
<link rel="stylesheet" href="../res/reveal.js/css/theme/black.css" id="theme">
-->
<!-- Code syntax highlighting -->
<link rel="stylesheet" href="../res/reveal.js/lib/css/zenburn.css">
</head>
<body>
<div class="reveal">
<div class="slides">
<section class="full">
<h2><span class="logo"></span>Eiffel Web Framework</h2>
<br/>
<h4>Tutorials</h4>
<ul>
<li><a href="0-basic-service.html">Create basic web application with EWF</a></li>
<li><a href="1-url-dispatching.html">Using EWF router to dispatch URL</a></li>
</ul>
<div class="footer">&copy;2015 <a href="https://eiffel.org">eiffel.org</a></div>
</section>
<section>
<h2>Visit EWF project</h2>
<br/>
<ul>
<li>https://github.com/EiffelWebFramework/EWF/</li>
</ul>
</section>
<section>
<section>
<h2>Settings ..</h2>
one more step
</section>
<section>
<h2>Themes ..</h2>
<li><a href="#" onclick="document.getElementById('theme').setAttribute('href','../res/theme/eiffel/eiffel.css'); return false;">eiffel.org</a></li>
<li><a href="#" onclick="document.getElementById('theme').setAttribute('href','../res/theme/ewf/ewf.css'); return false;">EWF</a></li>
</section>
</section>
<section>
<h2>Have a nice day ..</h2>
</section>
</div>
</div>
<script type="text/javascript" src="../res/reveal.js/lib/js/head.js"></script>
<script type="text/javascript" src="../res/reveal.js/js/reveal.js"></script>
<script type="text/javascript" src="../res/reveal.js/plugin/highlight/highlight.js"></script>
<script type="text/javascript" src="../res/reveal.js/plugin/zoom-js/zoom.js"></script>
<script>
// Full list of configuration options available here:
// https://github.com/hakimel/reveal.js#configuration
Reveal.initialize({
controls: true,
progress: true,
minScale: 0.2,
maxScale: 1.1,
center: false,
transition: 'linear', // none/linear/fade/slide/convex/concave/zoom
//slideNumber: false,
//overview: true,
history: true,
// transitionSpeed: 'slow',
// backgroundTransition: 'slide',
// Optional reveal.js plugins
dependencies: [
{ src: '../res/reveal.js/plugin/highlight/highlight.js', async: true, condition: function() { return !!document.querySelector( 'pre code' ); }, callback: function() { hljs.initHighlightingOnLoad(); } },
{ src: '../res/reveal.js/plugin/notes/notes.js', async: true }
]
});
</script>
</body>
</html>