diff --git a/mkdocs.yml b/mkdocs.yml
index 45675f9..6bcb08b 100644
--- a/mkdocs.yml
+++ b/mkdocs.yml
@@ -1,6 +1,6 @@
site_name: FastAPI Paginate
site_author: Nazmul Hasan
-site_description: FastAPI Pagination
+site_description: FastAPI pagination with next, prev, first, last links while keeping the request params
copyright: "Copyright © 2022 Nazmul Hasan"
repo_url: https://github.com/nazmulnnb/fastapi-paginate
repo_name: nazmulnnb/fastapi-paginate
diff --git a/overrides/main.html b/overrides/main.html
new file mode 100644
index 0000000..94d88ee
--- /dev/null
+++ b/overrides/main.html
@@ -0,0 +1,6 @@
+{% extends "index.html" %}
+
+{% block extrahead %}
+
+
+{% endblock %}
\ No newline at end of file
diff --git a/poetry.lock b/poetry.lock
index 24018a8..9ff6e42 100644
--- a/poetry.lock
+++ b/poetry.lock
@@ -242,7 +242,7 @@ python-versions = "*"
[[package]]
name = "django"
-version = "3.2.12"
+version = "3.2.13"
description = "A high-level Python Web framework that encourages rapid development and clean, pragmatic design."
category = "main"
optional = true
@@ -1251,8 +1251,7 @@ tortoise = ["tortoise-orm"]
[metadata]
lock-version = "1.1"
python-versions = "^3.7"
-content-hash = "3d9013924ba598c456a091d25361ac8eb0043a10073a9730dd64d6c0514dde97"
-
+content-hash = "09e723596f4e507a45691acadb1d3a2d5a73338dd0b08783321130586ccee9fd"
[metadata.files]
aiomysql = [
{file = "aiomysql-0.0.22-py3-none-any.whl", hash = "sha256:4e4a65914daacc40e70f992ddbeef32457561efbad8de41393e8ac5a84126a5a"},
@@ -1394,8 +1393,8 @@ distlib = [
{file = "distlib-0.3.3.zip", hash = "sha256:d982d0751ff6eaaab5e2ec8e691d949ee80eddf01a62eaa96ddb11531fe16b05"},
]
django = [
- {file = "Django-3.2.12-py3-none-any.whl", hash = "sha256:9b06c289f9ba3a8abea16c9c9505f25107809fb933676f6c891ded270039d965"},
- {file = "Django-3.2.12.tar.gz", hash = "sha256:9772e6935703e59e993960832d66a614cf0233a1c5123bc6224ecc6ad69e41e2"},
+ {file = "Django-3.2.13-py3-none-any.whl", hash = "sha256:b896ca61edc079eb6bbaa15cf6071eb69d6aac08cce5211583cfb41515644fdf"},
+ {file = "Django-3.2.13.tar.gz", hash = "sha256:6d93497a0a9bf6ba0e0b1a29cccdc40efbfc76297255b1309b3a884a688ec4b6"},
]
docstring-parser = [
{file = "docstring_parser-0.12.tar.gz", hash = "sha256:6723a3728c81e080a0454a550d11c7ad27dca0461099f3952218acf98488e1d5"},
diff --git a/pyproject.toml b/pyproject.toml
index fd07935..03c6fa3 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -35,7 +35,7 @@ asyncpg = { version = ">=0.24.0", optional = true }
ormar = { version = ">=0.10.5", optional = true}
piccolo = { version = ">=0.29,<0.35", optional = true}
motor = { version = "^2.5.1", optional = true }
-django = { version = "^3.1.0", optional = true }
+django = { version = "^3.2.13", optional = true }
# sqlmodel = { version = "^0.0.4", optional = true} Should be uncommented when gino will support sqlalchemy 1.4
mongoengine = {version = ">=0.23.1,<0.25.0", optional = true}