Blame view
templates/html/Wize_S5.html
3.67 KB
4f3a614a5 Premier essai de ... |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>[% title %]</title> <!-- metadata --> <meta name="generator" content="[% generator.name %]" /> <meta charset="utf-8"/> <meta name="version" content="S5 1.1" /> <meta name="presdate" content="" /> <meta name="author" content="" /> <meta name="company" content="" /> <!-- configuration parameters --> <meta name="defaultView" content="slideshow" /> <meta name="controlVis" content="hidden" /> <!-- style sheet links --> |
26977ceca Ajout du favicon ... |
19 20 |
<link rel="shortcut icon" href="[% resource('common-spec/favicon.ico') %]" > |
4f3a614a5 Premier essai de ... |
21 22 |
<link rel="stylesheet" href="[% resource('common-spec/zim-variables.css') %]" > |
5703e30a2 On sépare les var... |
23 24 25 |
<link rel="stylesheet" href="[% resource('common-spec/zim-pres-variables.css') %]" > |
4f3a614a5 Premier essai de ... |
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 |
<link rel="stylesheet" href="[% resource('ui/default/slides.css') %]" type="text/css" media="projection" id="slideProj" /> <link rel="stylesheet" href="[% resource('ui/default/outline.css') %]" type="text/css" media="screen" id="outlineStyle" /> <link rel="stylesheet" href="[% resource('ui/default/print.css') %]" type="text/css" media="print" id="slidePrint" /> <link rel="stylesheet" href="[% resource('ui/default/opera.css') %]" type="text/css" media="projection" id="operaFix" /> <link rel="stylesheet" href="[% resource('common/zim-style.css') %]" > <link rel="stylesheet" href="[% resource('common/zim-table-style.css') %]" > <link rel="stylesheet" href="[% resource('common/zim-special.css') %]" > <link rel="stylesheet" href="[% resource('common/zim-hljs.css') %]" > <link rel="stylesheet" href="[% resource('common-spec/zim-pres-override.css') %]" > <link rel="stylesheet" href="[% resource('common/hljs/styles/sunburst.css') %]" > <!-- hljs --> <script src="[% resource('common/hljs/highlight.pack.js') %]"></script> <script src="[% resource('common/wizefunc.js') %]"></script> <!-- S5 JS --> <script src="[% resource('ui/default/slides.js') %]" type="text/javascript"></script> <style type='text/css'> * { font-family: sans-serif } img { display: block; margin-left: auto; margin-right: auto; |
455eea707 Nouvelle version ... |
59 |
height: var(--main-pres-img-height); |
4f3a614a5 Premier essai de ... |
60 61 62 63 64 65 |
} tt { font-size: inherit; } td, th { |
455eea707 Nouvelle version ... |
66 |
font-size: var(--main-pres-table-font-size); |
4f3a614a5 Premier essai de ... |
67 68 69 |
} code { |
455eea707 Nouvelle version ... |
70 |
font-size: var(--main-pres-code-font-size); |
4f3a614a5 Premier essai de ... |
71 |
} |
8f9345a87 Rajout de style s... |
72 73 74 75 76 77 78 |
body { background: var(--main-pres-background-color); background-image: url('[% resource("common-spec/fond-pres.jpg") %]'); background-repeat: var(--main-pres-background-repeat); background-size: var(--main-pres-background-size); } |
4f3a614a5 Premier essai de ... |
79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 |
</style> </head> <body> <div class="layout"> <div id="controls"><!-- DO NOT EDIT --></div> <div id="currentSlide"><!-- DO NOT EDIT --></div> <div id="header"> <div id="logoDivId" style="position: absolute; right: 1em;"> <img id="logoImgId" src='[% resource("common-spec/logo-pres.png") %]' alt=' '> </div> </div> <div id="footer"> <h2 id="footinfo1"></h2> <h2 id="footinfo2"></h2> </div> </div> <div class="presentation"> [% options.empty_lines = "remove" %] [% FOR page IN pages %] [% FOR section IN page.headings(1) %] <div class="slide"> [% section.content %] </div> [% END %] [% END %] </div> <script src="[% resource('common/go-hljs.js') %]"></script> <script>tagToInfo();</script> </body> </html> |