diff --git a/serve.py b/serve.py
index 81a4c50..c3373e4 100644
--- a/serve.py
+++ b/serve.py
@@ -294,8 +294,6 @@ def main():
context['gvars']['search_query'] = opt_q
context['gvars']['svm_c'] = str(C)
context['gvars']['page_number'] = str(page_number)
- context['gvars']['prev_page_number'] = str(page_number - 1)
- context['gvars']['next_page_number'] = str(page_number + 1)
return render_template('index.html', **context)
@app.route('/inspect', methods=['GET'])
diff --git a/static/style.css b/static/style.css
index 2fbf305..3ac3ff6 100644
--- a/static/style.css
+++ b/static/style.css
@@ -291,4 +291,7 @@ body {
#link-prev-page, #link-next-page {
margin: 0 5px 0 5px;
font-size: 16px;
+ cursor: pointer;
+ color: #009;
+ text-decoration: underline;
}
diff --git a/static/word_list.js b/static/word_list.js
index 9ba9531..e08e518 100644
--- a/static/word_list.js
+++ b/static/word_list.js
@@ -26,5 +26,7 @@ const WordList = props => {
)
}
-ReactDOM.render(