Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 7 additions & 4 deletions docs/source/_templates/layout.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,23 @@
{% block extrahead %}
{{ super() }}

<link rel="canonical" href="https://docs.cryptnox.com/" />
{% set canonical_url = pageurl | replace('index.html', '') if pageurl else 'https://docs.cryptnox.com/' %}

<link rel="canonical" href="{{ canonical_url }}" />

<!-- Open Graph -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://docs.cryptnox.com/" />
<meta property="og:url" content="{{ canonical_url }}" />
<meta property="og:title" content="{{ title|striptags }} | Cryptnox Docs" />
<meta property="og:description" content="Access the official Cryptnox technical documentation. Explore setup guides, features, and integration details for secure and efficient solutions." />
<meta property="og:image" content="https://docs.cryptnox.com/wp-content/uploads/2025/08/Technical-Documentation-1024x538.png" />
<meta property="og:image:width" content="380" />
<meta property="og:image:height" content="71" />
<meta property="og:image:width" content="1024" />
<meta property="og:image:height" content="538" />
<meta property="og:site_name" content="Cryptnox Docs" />

<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@CryptnoxTech" />
<meta name="twitter:title" content="{{ title|striptags }} | Cryptnox Docs" />
<meta name="twitter:description" content="Access the official Cryptnox technical documentation. Explore setup guides, features, and integration details for secure and efficient solutions." />
<meta name="twitter:image" content="https://docs.cryptnox.com/wp-content/uploads/2025/08/Technical-Documentation-1024x538.png" />
Expand Down
4 changes: 3 additions & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

# -- General configuration ---------------------------------------------------

extensions = []
extensions = ['sphinx_multiversion', 'sphinx_sitemap']

templates_path = ['_templates']
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
Expand All @@ -19,6 +19,8 @@
# -- SEO meta tags -----------------------------------------------------------

html_baseurl = 'https://docs.cryptnox.com/'
html_title = 'Cryptnox Docs'
sitemap_url_scheme = "{link}"

html_meta = {
'description': 'Access the official Cryptnox technical documentation. Explore setup guides, features, and integration details for secure and efficient solutions.',
Expand Down
2 changes: 2 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
sphinx
sphinx-rtd-theme
sphinx-multiversion
sphinx-sitemap
Loading