updated: html/css (added div.winix to templates)

now we have winix.css in common/winix directory
         it is automatically loaded by index_head_functions_add.html


git-svn-id: svn://ttmath.org/publicrep/winix/trunk@898 e52654a7-88a9-db11-a3e9-0013d4bc506e
This commit is contained in:
2012-10-17 06:00:00 +00:00
parent dfcf6b29c0
commit c5024598cb
71 changed files with 422 additions and 2061 deletions

View File

@@ -1,50 +1,25 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<!DOCTYPE html>
[# minimalistic template]
<html lang="{language}">
[include "index_head.html"]
<head>
<meta charset="{charset}">
<title>[doc_title]</title>
<link rel="stylesheet" href="[doc_base_url_common]/winix/winix.css">
[include "index_head_functions_add.html"]
</head>
[# now we don't need the check of fullscreen here]
[# we've got a second template for fullscreen -- index_fullscreen.html]
[if-no winix_function_param_is "fullscreen"]
<body>
<body>
<div id="winix_container">
[include "index_header.html"]
[if-no winix_show_content_in_full_window]
<div id="winix_middle">
[include "index_contentmenu.html"]
<div id="winix_contentright">
[include "slog.html"]
[content]
</div> <!-- winix_contentright -->
</div> <!-- winix_middle -->
[else]
<div id="winix_contentfull">
[include "slog.html"]
[content]
</div> <!-- winix_contentfull -->
[end]
[include "index_footer.html"]
</div> <!-- winix_container -->
</body>
<div>
[include "slog.html"]
[# each winix function has div.winix in its template defined -- only functions: cat and run don't have div.winix]
[# so you can easly use 'content' with your own template]
[# and when using other winix functions you automatically get proper styling]
[content]
</div>
[else]
<body>
<div id="winix_containerfull">
[include "slog.html"]
[content]
</div> <!-- winix_containerfull -->
</body>
[end] [# if-no winix_function_param_is "fullscreen"]
</html>