diff options
Diffstat (limited to 'cgi/templates')
-rw-r--r-- | cgi/templates/base_top.html | 11 | ||||
-rw-r--r-- | cgi/templates/board.html | 6 | ||||
-rw-r--r-- | cgi/templates/board.jp.html | 6 |
3 files changed, 8 insertions, 15 deletions
diff --git a/cgi/templates/base_top.html b/cgi/templates/base_top.html index 6c51bef..424c309 100644 --- a/cgi/templates/base_top.html +++ b/cgi/templates/base_top.html @@ -35,12 +35,17 @@ <?py if board == "2d": ?> <link rel="stylesheet" href="#{static_url}css/txt/sjis.css" /> <?py #endif ?> - <script type="text/javascript" src="#{static_url}js/weabot.js?v=5"></script> + <script type="text/javascript" src="#{static_url}js/weabot.js"></script> <script type="text/javascript" src="#{static_url}js/aquiencitas.js"></script> - <script type="text/javascript" src="#{static_url}js/autorefresh.js?v=3"></script> + <script type="text/javascript" src="#{static_url}js/autorefresh.js"></script> </head> <body#{' class="res"' if replythread else ''} data-brd="#{board}"> - <div id="main_nav">[<a href="/" target="_top">Bienvenido a Internet</a>] [<?py include('templates/navbar.html') ?>]</div> + <div id="main_nav"><span>[<a href="/" target="_top">Bienvenido a Internet</a>] [<?py include('templates/navbar.html') ?>]</span> + <?py if not force_css: ?> + <span>[Estilo: <select id="styles"> + <?py for title in styles: ?><option value="#{title}">#{title}</option><?py #endfor ?> + </select>]</span> +<?py #endif ?></div> <div class="logo"> <?py if board: ?> #{board_long} diff --git a/cgi/templates/board.html b/cgi/templates/board.html index 0583230..4b94e87 100644 --- a/cgi/templates/board.html +++ b/cgi/templates/board.html @@ -261,10 +261,4 @@ <?py if pagenav: ?> <div class="pg">#{pagenav}</div> <?py #endif ?> -<?py if not force_css: ?> - <div class="selector"><b>Estilo:</b><select id="styles"> - <?py for title in styles: ?><option value="#{title}">#{title}</option><?py #endfor ?> - </select> - </div> -<?py #endif ?> <?py include('templates/base_bottom.html') ?>
\ No newline at end of file diff --git a/cgi/templates/board.jp.html b/cgi/templates/board.jp.html index 12772e8..a595780 100644 --- a/cgi/templates/board.jp.html +++ b/cgi/templates/board.jp.html @@ -268,10 +268,4 @@ <?py if pagenav: ?> <div class="pg">#{pagenav}</div> <?py #endif ?> -<?py if not force_css: ?> - <div class="selector"><b>外観:</b><select id="styles"> - <?py for title in styles: ?><option value="#{title}">#{title}</option><?py #endfor ?> - </select> - </div> -<?py #endif ?> <?py include('templates/base_bottom.html') ?>
\ No newline at end of file |