Changed layout from grid to single column

This commit is contained in:
Raelon Masters
2020-06-12 12:54:12 -04:00
parent 1b54820d67
commit 9fdd7e25a0
4 changed files with 49 additions and 32 deletions

View File

@@ -44,6 +44,7 @@ def show_collection(request, _collection, _colset):
"Books": collection(_collection, _set),
"Set": str(_set),
"Version": config.VERSION,
"LeftNavCollections": menu("collections"),
"LeftNav": menu("collections"),
},
)
@@ -64,6 +65,7 @@ def next_page(request, bookset):
"Books": book_set(None, _set),
"Set": str(_set),
"Version": config.VERSION,
"LeftNavCollections": menu("collections"),
"LeftNav": menu("collections"),
},
)
@@ -88,6 +90,7 @@ def prev_page(request, bookset):
"Books": book_set(None, _set),
"Set": str(_set),
"Version": config.VERSION,
"LeftNavCollections": menu("collections"),
"LeftNav": menu("collections"),
},
)
@@ -118,6 +121,7 @@ def search(request, query=None, _set=1, _limit=None):
"Set": _set,
"len_results": search_len,
"Version": config.VERSION,
"LeftNavCollections": menu("collections"),
"LeftNav": menu("collections"),
},
)