diff options
Diffstat (limited to 'cgi/templates/mobile')
-rw-r--r-- | cgi/templates/mobile/base_top.html | 4 | ||||
-rw-r--r-- | cgi/templates/mobile/board.html | 6 | ||||
-rw-r--r-- | cgi/templates/mobile/latest.html | 2 | ||||
-rw-r--r-- | cgi/templates/mobile/threadlist.html | 2 | ||||
-rw-r--r-- | cgi/templates/mobile/txt_newthread.html | 2 | ||||
-rw-r--r-- | cgi/templates/mobile/txt_thread.html | 2 | ||||
-rw-r--r-- | cgi/templates/mobile/txt_threadlist.html | 2 |
7 files changed, 10 insertions, 10 deletions
diff --git a/cgi/templates/mobile/base_top.html b/cgi/templates/mobile/base_top.html index 6a6c5bd..aa016a4 100644 --- a/cgi/templates/mobile/base_top.html +++ b/cgi/templates/mobile/base_top.html @@ -9,6 +9,6 @@ <?py #endif ?> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <link rel="shortcut icon" href="#{static_url}img/favicon.ico" /> - <link rel="stylesheet" type="text/css" href="#{static_url}css/mobile.css?v=8" /> - <script type="text/javascript" src="#{static_url}js/mobile.js?v=9"></script> + <link rel="stylesheet" type="text/css" href="#{static_url}css/mobile.css" /> + <script type="text/javascript" src="#{static_url}js/mobile.js"></script> </head> diff --git a/cgi/templates/mobile/board.html b/cgi/templates/mobile/board.html index 70b8461..8466c8f 100644 --- a/cgi/templates/mobile/board.html +++ b/cgi/templates/mobile/board.html @@ -1,13 +1,13 @@ <?py include('templates/mobile/base_top.html') ?> -<body class="img"><a name="top"></a> +<body class="img" data-brd="#{board}"><a name="top"></a> <div class="nav"><div><a href="//m.bienvenidoainternet.org">Home</a><a href="#{cgi_url}mobile/#{board}/">Volver</a><a href="#form">▼</a></div></div> <?py for thread in threads: ?> <div id="thread"> <?py for post in thread['posts']: ?> <?py if post['IS_DELETED'] == "1": ?> - <div class="pst"><h3 class="del"><a name="#{post['id']}"></a>No.#{post['id']} eliminado por el usuario.</h3></div> + <div class="pst"><h3 class="del"><a name="#{post['id']}"></a>No.#{post['id']} eliminado por usuario.</h3></div> <?py elif post['IS_DELETED'] == "2": ?> - <div class="pst"><h3 class="del"><a name="#{post['id']}"></a>No.#{post['id']} eliminado por miembro del staff.</h3></div> + <div class="pst"><h3 class="del"><a name="#{post['id']}"></a>No.#{post['id']} eliminado por staff.</h3></div> <?py else: ?> <?py if post['parentid'] == "0": ?> <div class="first"><h1>#{post["subject"]} <span>(#{thread['length']})</span></h1> diff --git a/cgi/templates/mobile/latest.html b/cgi/templates/mobile/latest.html index 91c3514..50fae25 100644 --- a/cgi/templates/mobile/latest.html +++ b/cgi/templates/mobile/latest.html @@ -1,5 +1,5 @@ <?py include('templates/mobile/base_top.html') ?> -<body class="txt"> +<body class="txt" data-brd="#{board}"> <div class="top"> <a href="/movil.html"><img src="#{static_url}css/img/0info.png" /><br />Info</a> Bienvenido a Internet Móvil diff --git a/cgi/templates/mobile/threadlist.html b/cgi/templates/mobile/threadlist.html index edb81eb..4247ee9 100644 --- a/cgi/templates/mobile/threadlist.html +++ b/cgi/templates/mobile/threadlist.html @@ -1,5 +1,5 @@ <?py include('templates/mobile/base_top.html') ?> -<body class="img"> +<body class="img" data-brd="#{board}"> <div class="top"> <a href="//m.bienvenidoainternet.org"><img src="#{static_url}css/img/0back.png" /><br />Home</a> #{board_name} diff --git a/cgi/templates/mobile/txt_newthread.html b/cgi/templates/mobile/txt_newthread.html index b19d2fa..aafcdfa 100644 --- a/cgi/templates/mobile/txt_newthread.html +++ b/cgi/templates/mobile/txt_newthread.html @@ -1,5 +1,5 @@ <?py include('templates/mobile/base_top.html') ?> -<body class="#{"txt" if board_type == '1' else "img"}"> +<body class="#{"txt" if board_type == '1' else "img"}" data-brd="#{board}"> <div class="top"> <a href="//m.bienvenidoainternet.org"><img src="#{static_url}css/img/0back.png" /><br />Home</a> #{board_name} diff --git a/cgi/templates/mobile/txt_thread.html b/cgi/templates/mobile/txt_thread.html index 8a19a94..c9b58a8 100644 --- a/cgi/templates/mobile/txt_thread.html +++ b/cgi/templates/mobile/txt_thread.html @@ -1,5 +1,5 @@ <?py include('templates/mobile/base_top.html') ?> -<body class="txt"> +<body class="txt" data-brd="#{board}"> <a name="top"></a> <?py for thread in threads: ?> <div class="nav"><div><a href="//m.bienvenidoainternet.org">Home</a><a href="#{cgi_url}mobile/#{board}/">Volver</a><a href="#form">▼</a></div></div> diff --git a/cgi/templates/mobile/txt_threadlist.html b/cgi/templates/mobile/txt_threadlist.html index 5e3d133..57cad18 100644 --- a/cgi/templates/mobile/txt_threadlist.html +++ b/cgi/templates/mobile/txt_threadlist.html @@ -1,5 +1,5 @@ <?py include('templates/mobile/base_top.html') ?> -<body class="txt"> +<body class="txt" data-brd="#{board}"> <div class="top"> <a href="//m.bienvenidoainternet.org"><img src="#{static_url}css/img/0back.png" /><br />Home</a> #{board_name} |