diff options
Diffstat (limited to 'cgi/templates/board.jp.html')
-rw-r--r-- | cgi/templates/board.jp.html | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/cgi/templates/board.jp.html b/cgi/templates/board.jp.html index 8045ab1..12772e8 100644 --- a/cgi/templates/board.jp.html +++ b/cgi/templates/board.jp.html @@ -186,7 +186,7 @@ <?py #endif ?> <span class="date" data-unix="#{post['timestamp']}">#{post['timestamp_formatted']}</span> <?py if replythread: ?> - <span class="reflink"><a href="##{post['id']}">No.</a><a href="#" class="postid">#{post['id']}</a></span> + <span class="reflink"><a href="##{post['id']}">No.</a><a href="#" class="num">#{post['id']}</a></span> <?py else: ?> <span class="reflink"><a href="#{boards_url}#{board}/res/#{post['parentid'] if post['parentid'] != "0" else post['id']}.html##{post['id']}">No.</a><a href="#{boards_url}#{board}/res/#{post['parentid'] if post['parentid'] != "0" else post['id']}.html#i#{post['id']}">#{post['id']}</a></span> <?py #endif ?> @@ -268,4 +268,10 @@ <?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 |