Page not found :(
27 |The page you are looking for doesn't exist or has been moved.
28 |├── README.md ├── docker-compose.yml └── pages ├── billing ├── index.html ├── script.js └── style.css ├── docs ├── .gitignore ├── config.toml ├── content │ ├── _index.md │ ├── authors │ │ ├── _index.md │ │ └── team-loco.md │ ├── blog │ │ ├── _index.md │ │ ├── document.md │ │ └── why.md │ ├── docs │ │ ├── _index.md │ │ ├── api │ │ │ ├── _index.md │ │ │ └── api.md │ │ ├── contact │ │ │ ├── _index.md │ │ │ └── contact.md │ │ ├── features │ │ │ ├── _index.md │ │ │ └── keys.md │ │ ├── getting-started │ │ │ ├── _index.md │ │ │ ├── changelog.md │ │ │ ├── config.md │ │ │ ├── guide.md │ │ │ └── tour │ │ │ │ ├── index.md │ │ │ │ └── tour.png │ │ ├── help │ │ │ ├── _index.md │ │ │ └── faq.md │ │ ├── system │ │ │ ├── _index.md │ │ │ └── system.md │ │ └── xai │ │ │ ├── _index.md │ │ │ └── api.md │ ├── privacy-policy │ │ └── _index.md │ └── tos │ │ └── _index.md ├── static │ └── images │ │ ├── apple-touch-icon.png │ │ ├── favicon.ico │ │ ├── icon.svg │ │ └── logo.png ├── templates │ ├── 404.html │ ├── authors │ │ ├── list.html │ │ └── single.html │ ├── base.html │ ├── blog │ │ ├── page.html │ │ └── section.html │ ├── docs │ │ ├── page.html │ │ └── section.html │ ├── index.html │ ├── macros │ │ ├── docs-edit-page.html │ │ ├── docs-navigation.html │ │ ├── docs-sidebar.html │ │ ├── docs-toc.html │ │ ├── footer.html │ │ ├── head.html │ │ ├── header.html │ │ ├── javascript.html │ │ ├── math.html │ │ ├── page-publish-metadata.html │ │ └── section-navigation.html │ ├── page.html │ ├── robots.txt │ └── section.html └── themes │ └── adidoks │ ├── .gitignore │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── config.toml │ ├── config.toml.example │ ├── content │ ├── _index.fi.md │ ├── _index.md │ ├── authors │ │ ├── _index.md │ │ └── aaran-xu.md │ ├── blog │ │ ├── _index.md │ │ ├── hello-world.md │ │ ├── markdown-syntax.md │ │ ├── math-typesetting.md │ │ ├── placeholder-text.md │ │ └── say-hello-to-zola-doks.md │ ├── docs │ │ ├── _index.md │ │ ├── contributing │ │ │ ├── _index.md │ │ │ ├── code-of-conduct.md │ │ │ └── how-to-contribute.md │ │ ├── getting-started │ │ │ ├── _index.md │ │ │ ├── introduction.md │ │ │ └── quick-start.md │ │ └── help │ │ │ ├── _index.md │ │ │ └── faq.md │ └── privacy-policy │ │ └── _index.md │ ├── netlify.toml │ ├── sass │ ├── _custom.scss │ ├── bootstrap │ │ ├── LICENSE │ │ ├── README.md │ │ ├── dist │ │ │ ├── css │ │ │ │ ├── bootstrap-grid.css │ │ │ │ ├── bootstrap-grid.css.map │ │ │ │ ├── bootstrap-grid.min.css │ │ │ │ ├── bootstrap-grid.min.css.map │ │ │ │ ├── bootstrap-grid.rtl.css │ │ │ │ ├── bootstrap-grid.rtl.css.map │ │ │ │ ├── bootstrap-grid.rtl.min.css │ │ │ │ ├── bootstrap-grid.rtl.min.css.map │ │ │ │ ├── bootstrap-reboot.css │ │ │ │ ├── bootstrap-reboot.css.map │ │ │ │ ├── bootstrap-reboot.min.css │ │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ │ ├── bootstrap-reboot.rtl.css │ │ │ │ ├── bootstrap-reboot.rtl.css.map │ │ │ │ ├── bootstrap-reboot.rtl.min.css │ │ │ │ ├── bootstrap-reboot.rtl.min.css.map │ │ │ │ ├── bootstrap-utilities.css │ │ │ │ ├── bootstrap-utilities.css.map │ │ │ │ ├── bootstrap-utilities.min.css │ │ │ │ ├── bootstrap-utilities.min.css.map │ │ │ │ ├── bootstrap-utilities.rtl.css │ │ │ │ ├── bootstrap-utilities.rtl.css.map │ │ │ │ ├── bootstrap-utilities.rtl.min.css │ │ │ │ ├── bootstrap-utilities.rtl.min.css.map │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.css.map │ │ │ │ ├── bootstrap.min.css │ │ │ │ ├── bootstrap.min.css.map │ │ │ │ ├── bootstrap.rtl.css │ │ │ │ ├── bootstrap.rtl.css.map │ │ │ │ ├── bootstrap.rtl.min.css │ │ │ │ └── bootstrap.rtl.min.css.map │ │ │ └── js │ │ │ │ ├── bootstrap.bundle.js │ │ │ │ ├── bootstrap.bundle.js.map │ │ │ │ ├── bootstrap.bundle.min.js │ │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ │ ├── bootstrap.esm.js │ │ │ │ ├── bootstrap.esm.js.map │ │ │ │ ├── bootstrap.esm.min.js │ │ │ │ ├── bootstrap.esm.min.js.map │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.js.map │ │ │ │ ├── bootstrap.min.js │ │ │ │ └── bootstrap.min.js.map │ │ ├── js │ │ │ ├── dist │ │ │ │ ├── alert.js │ │ │ │ ├── alert.js.map │ │ │ │ ├── base-component.js │ │ │ │ ├── base-component.js.map │ │ │ │ ├── button.js │ │ │ │ ├── button.js.map │ │ │ │ ├── carousel.js │ │ │ │ ├── carousel.js.map │ │ │ │ ├── collapse.js │ │ │ │ ├── collapse.js.map │ │ │ │ ├── dom │ │ │ │ │ ├── data.js │ │ │ │ │ ├── data.js.map │ │ │ │ │ ├── event-handler.js │ │ │ │ │ ├── event-handler.js.map │ │ │ │ │ ├── manipulator.js │ │ │ │ │ ├── manipulator.js.map │ │ │ │ │ ├── selector-engine.js │ │ │ │ │ └── selector-engine.js.map │ │ │ │ ├── dropdown.js │ │ │ │ ├── dropdown.js.map │ │ │ │ ├── modal.js │ │ │ │ ├── modal.js.map │ │ │ │ ├── offcanvas.js │ │ │ │ ├── offcanvas.js.map │ │ │ │ ├── popover.js │ │ │ │ ├── popover.js.map │ │ │ │ ├── scrollspy.js │ │ │ │ ├── scrollspy.js.map │ │ │ │ ├── tab.js │ │ │ │ ├── tab.js.map │ │ │ │ ├── toast.js │ │ │ │ ├── toast.js.map │ │ │ │ ├── tooltip.js │ │ │ │ └── tooltip.js.map │ │ │ └── src │ │ │ │ ├── alert.js │ │ │ │ ├── base-component.js │ │ │ │ ├── button.js │ │ │ │ ├── carousel.js │ │ │ │ ├── collapse.js │ │ │ │ ├── dom │ │ │ │ ├── data.js │ │ │ │ ├── event-handler.js │ │ │ │ ├── manipulator.js │ │ │ │ └── selector-engine.js │ │ │ │ ├── dropdown.js │ │ │ │ ├── modal.js │ │ │ │ ├── offcanvas.js │ │ │ │ ├── popover.js │ │ │ │ ├── scrollspy.js │ │ │ │ ├── tab.js │ │ │ │ ├── toast.js │ │ │ │ ├── tooltip.js │ │ │ │ └── util │ │ │ │ ├── index.js │ │ │ │ ├── sanitizer.js │ │ │ │ └── scrollbar.js │ │ ├── package.json │ │ └── scss │ │ │ ├── _accordion.scss │ │ │ ├── _alert.scss │ │ │ ├── _badge.scss │ │ │ ├── _breadcrumb.scss │ │ │ ├── _button-group.scss │ │ │ ├── _buttons.scss │ │ │ ├── _card.scss │ │ │ ├── _carousel.scss │ │ │ ├── _close.scss │ │ │ ├── _containers.scss │ │ │ ├── _dropdown.scss │ │ │ ├── _forms.scss │ │ │ ├── _functions.scss │ │ │ ├── _grid.scss │ │ │ ├── _helpers.scss │ │ │ ├── _images.scss │ │ │ ├── _list-group.scss │ │ │ ├── _mixins.scss │ │ │ ├── _modal.scss │ │ │ ├── _nav.scss │ │ │ ├── _navbar.scss │ │ │ ├── _offcanvas.scss │ │ │ ├── _pagination.scss │ │ │ ├── _popover.scss │ │ │ ├── _progress.scss │ │ │ ├── _reboot.scss │ │ │ ├── _root.scss │ │ │ ├── _spinners.scss │ │ │ ├── _tables.scss │ │ │ ├── _toasts.scss │ │ │ ├── _tooltip.scss │ │ │ ├── _transitions.scss │ │ │ ├── _type.scss │ │ │ ├── _utilities.scss │ │ │ ├── _variables.scss │ │ │ ├── bootstrap-grid.scss │ │ │ ├── bootstrap-reboot.scss │ │ │ ├── bootstrap-utilities.scss │ │ │ ├── bootstrap.scss │ │ │ ├── forms │ │ │ ├── _floating-labels.scss │ │ │ ├── _form-check.scss │ │ │ ├── _form-control.scss │ │ │ ├── _form-range.scss │ │ │ ├── _form-select.scss │ │ │ ├── _form-text.scss │ │ │ ├── _input-group.scss │ │ │ ├── _labels.scss │ │ │ └── _validation.scss │ │ │ ├── helpers │ │ │ ├── _clearfix.scss │ │ │ ├── _colored-links.scss │ │ │ ├── _position.scss │ │ │ ├── _ratio.scss │ │ │ ├── _stretched-link.scss │ │ │ ├── _text-truncation.scss │ │ │ └── _visually-hidden.scss │ │ │ ├── mixins │ │ │ ├── _alert.scss │ │ │ ├── _border-radius.scss │ │ │ ├── _box-shadow.scss │ │ │ ├── _breakpoints.scss │ │ │ ├── _buttons.scss │ │ │ ├── _caret.scss │ │ │ ├── _clearfix.scss │ │ │ ├── _container.scss │ │ │ ├── _deprecate.scss │ │ │ ├── _forms.scss │ │ │ ├── _gradients.scss │ │ │ ├── _grid.scss │ │ │ ├── _image.scss │ │ │ ├── _list-group.scss │ │ │ ├── _lists.scss │ │ │ ├── _pagination.scss │ │ │ ├── _reset-text.scss │ │ │ ├── _resize.scss │ │ │ ├── _table-variants.scss │ │ │ ├── _text-truncate.scss │ │ │ ├── _transition.scss │ │ │ ├── _utilities.scss │ │ │ └── _visually-hidden.scss │ │ │ ├── utilities │ │ │ └── _api.scss │ │ │ └── vendor │ │ │ └── _rfs.scss │ ├── common │ │ ├── _dark.scss │ │ ├── _fonts.scss │ │ ├── _global.scss │ │ └── _variables.scss │ ├── components │ │ ├── _alerts.scss │ │ ├── _buttons.scss │ │ ├── _code.scss │ │ ├── _comments.scss │ │ ├── _doks.scss │ │ ├── _footnote.scss │ │ ├── _forms.scss │ │ ├── _images.scss │ │ ├── _search.scss │ │ ├── _syntax.scss │ │ └── _tables.scss │ ├── layouts │ │ ├── _footer.scss │ │ ├── _header.scss │ │ ├── _pages.scss │ │ ├── _posts.scss │ │ └── _sidebar.scss │ └── main.scss │ ├── screenshot.png │ ├── static │ ├── _headers │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── apple-touch-icon.png │ ├── doks.png │ ├── doks.svg │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ ├── fonts │ │ └── vendor │ │ │ └── jost │ │ │ ├── jost-v4-latin-500.woff │ │ │ ├── jost-v4-latin-500.woff2 │ │ │ ├── jost-v4-latin-500italic.woff │ │ │ ├── jost-v4-latin-500italic.woff2 │ │ │ ├── jost-v4-latin-700.woff │ │ │ ├── jost-v4-latin-700.woff2 │ │ │ ├── jost-v4-latin-700italic.woff │ │ │ ├── jost-v4-latin-700italic.woff2 │ │ │ ├── jost-v4-latin-italic.woff │ │ │ ├── jost-v4-latin-italic.woff2 │ │ │ ├── jost-v4-latin-regular.woff │ │ │ └── jost-v4-latin-regular.woff2 │ ├── index.js │ ├── js │ │ ├── main.js │ │ └── search.js │ ├── logo-doks.png │ ├── plugins │ │ └── elasticlunr.min.js │ └── site.webmanifest │ ├── templates │ ├── 404.html │ ├── authors │ │ ├── list.html │ │ └── single.html │ ├── base.html │ ├── blog │ │ ├── page.html │ │ └── section.html │ ├── docs │ │ ├── page.html │ │ └── section.html │ ├── index.html │ ├── macros │ │ ├── docs-edit-page.html │ │ ├── docs-navigation.html │ │ ├── docs-sidebar.html │ │ ├── docs-toc.html │ │ ├── footer.html │ │ ├── head.html │ │ ├── header.html │ │ ├── javascript.html │ │ ├── math.html │ │ ├── page-publish-metadata.html │ │ └── section-navigation.html │ ├── page.html │ ├── robots.txt │ └── section.html │ └── theme.toml └── user ├── index.html ├── script.js └── style.css /pages/billing/index.html: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 7 | 8 | 9 |
18 | ![]() |
21 |
22 | ![]() Telegram 24 | |
25 |
The page you are looking for doesn't exist or has been moved.
28 |{{ page.extra.lead | safe }}
{% elif page.description %}{{ page.description | safe }}
{% endif %} 60 | {{ macros_publish::page_publish_metadata(page=page) }} 61 |{{ page.extra.lead | safe }}
{% endif %} 30 | {{ page.content | safe }} 31 |{{ page.extra.lead | safe }}
{% elif page.description %}{{ page.description | safe }}
{% endif %} 27 | {{ macros_publish::page_publish_metadata(page=page) }} 28 |{{ page.extra.lead | safe }}
{% endif %} 22 | {{ page.content | safe }} 23 | {% if config.extra.edit_page %} 24 | {{ macros_edit_page::docs_edit_page(current_path=current_path) }} 25 | {% endif %} 26 | {{ macros_navigation::docs_navigation(page=page, current_section=current_section) }} 27 |Posted {{ page.date | date(format=config.extra.timeformat | default(value="%Y-%m-%d %H:%M:%S"), timezone=config.extra.timezone | default(value="America/New_York")) }}{% if page.taxonomies.authors and config.taxonomies %} by {% for author in page.taxonomies.authors %}{% if author_flag %} and {% endif %}{{ author }}{% set_global author_flag = true %}{% endfor %}{% endif %} ‐ {{ page.reading_time }} min read
3 | {% endmacro %} 4 | -------------------------------------------------------------------------------- /pages/docs/templates/macros/section-navigation.html: -------------------------------------------------------------------------------- 1 | {% macro navigation(paginator) %} 2 |
22 | {% endmacro %} 23 | -------------------------------------------------------------------------------- /pages/docs/templates/page.html: -------------------------------------------------------------------------------- 1 | {# Default page.html template #} 2 | 3 | {% extends "base.html" %} 4 | 5 | {% block seo %} 6 | {{ super() }} 7 | {% set title_addition = "" %} 8 | {% if page.title and config.title %} 9 | {% set title = page.title %} 10 | {% set title_addition = title_separator ~ config.title %} 11 | {% elif page.title %} 12 | {% set title = page.title %} 13 | {% else %} 14 | {% set title = config.title %} 15 | {% endif %} 16 | 17 | {% if page.description %} 18 | {% set description = page.description %} 19 | {% else %} 20 | {% set description = config.description %} 21 | {% endif %} 22 | {% set created_time = page.date %} 23 | {% set updated_time = page.updated %} 24 | {% if current_section %} 25 | {% set page_section = current_section %} 26 | {% else %} 27 | {% set page_section = "" %} 28 | {% endif %} 29 | 30 | {{ macros_head::seo(title=title, title_addition=title_addition, description=description, type="article", is_page=true, created_time=created_time, updated_time=updated_time, page_section=page_section) }} 31 | {% endblock seo %} 32 | 33 | {% block body %} 34 | {% if section.extra.class %} 35 | {% set page_class = page.extra.class %} 36 | {% else %} 37 | {% set page_class = "page single" %} 38 | {% endif %} 39 | {% endblock body %} 40 | 41 | {% block content %} 42 |{{ page.extra.lead }}
{% endif %} 51 | {{ page.content | safe }} 52 |42 | Inline math: \(\varphi = \dfrac{1+\sqrt5}{2}= 1.6180339887…\) 43 |
44 | 45 | Block math: 46 | $$ 47 | \varphi = 1+\frac{1} {1+\frac{1} {1+\frac{1} {1+\cdots} } } 48 | $$ 49 | -------------------------------------------------------------------------------- /pages/docs/themes/adidoks/content/blog/say-hello-to-zola-doks.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "Say hello to AdiDoks 👋" 3 | description = "Introducing AdiDoks, a Zola theme helping you build modern documentation websites, which is a port of the Hugo theme Doks for Zola." 4 | date = 2021-04-03T07:00:00+00:00 5 | updated = 2021-04-03T07:00:00+00:00 6 | template = "blog/page.html" 7 | draft = false 8 | 9 | [taxonomies] 10 | authors = ["Aaran Xu"] 11 | 12 | [extra] 13 | lead = 'Introducing AdiDoks, a Zola theme helping you build modern documentation websites, which is a port of the Hugo theme Doks for Zola.' 14 | images = [] 15 | +++ 16 | -------------------------------------------------------------------------------- /pages/docs/themes/adidoks/content/docs/_index.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "Docs" 3 | description = "The documents of the AdiDoks theme." 4 | date = 2025-05-01T08:00:00+00:00 5 | updated = 2021-05-01T08:00:00+00:00 6 | sort_by = "weight" 7 | weight = 1 8 | template = "docs/section.html" 9 | +++ 10 | -------------------------------------------------------------------------------- /pages/docs/themes/adidoks/content/docs/contributing/_index.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "Contributing" 3 | description = "Find out how to contribute to AdiDoks." 4 | date = 2025-05-01T18:00:00+00:00 5 | updated = 2021-05-01T18:00:00+00:00 6 | template = "docs/section.html" 7 | sort_by = "weight" 8 | weight = 4 9 | draft = false 10 | +++ 11 | -------------------------------------------------------------------------------- /pages/docs/themes/adidoks/content/docs/contributing/how-to-contribute.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "How to Contribute" 3 | description = "Contribute to AdiDoks, improve documentation, or submit to showcase." 4 | date = 2021-05-01T18:10:00+00:00 5 | updated = 2021-05-01T18:10:00+00:00 6 | draft = false 7 | weight = 410 8 | sort_by = "weight" 9 | template = "docs/page.html" 10 | 11 | [extra] 12 | lead = "Contribute to AdiDoks, improve documentation, or submit to showcase." 13 | toc = true 14 | top = false 15 | +++ 16 | 17 | 👉 Make sure to read the [Code of Conduct](../code-of-conduct/). 18 | 19 | ## Contribute to Doks 20 | 21 | 👉 The AdiDoks code lives in the [`adidoks` repository](https://github.com/aaranxu/adidoks) 22 | 23 | - Follow the [GitHub flow](https://guides.github.com/introduction/flow/). 24 | - Follow the [Conventional Commits Specification](https://www.conventionalcommits.org/en/v1.0.0/) 25 | 26 | ### Create an issue 27 | 28 | - [Bug report](https://github.com/aaranxu/adidoks/issues/new?template=bug-report---.md) 29 | - [Feature request](https://github.com/aaranxu/adidoks/issues/new?template=feature-request---.md) 30 | 31 | ## Improve documentation 32 | 33 | 👉 The documentation lives in [`./content/docs/`](https://github.com/aaranxu/adidoks/tree/master/content/docs) 34 | of the [`adidoks` repository](https://github.com/h-enk/getdoks.org). 35 | 36 | - Follow the [GitHub flow](https://guides.github.com/introduction/flow/). 37 | - Follow the [Conventional Commits Specification](https://www.conventionalcommits.org/en/v1.0.0/) 38 | -------------------------------------------------------------------------------- /pages/docs/themes/adidoks/content/docs/getting-started/_index.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "Getting Started" 3 | description = "Quick start and guides for installing the AdiDoks theme on your preferred operating system." 4 | date = 2025-05-01T08:00:00+00:00 5 | updated = 2021-05-01T08:00:00+00:00 6 | template = "docs/section.html" 7 | sort_by = "weight" 8 | weight = 1 9 | draft = false 10 | +++ 11 | -------------------------------------------------------------------------------- /pages/docs/themes/adidoks/content/docs/getting-started/introduction.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "Introduction" 3 | description = "AdiDoks is a Zola theme helping you build modern documentation websites, which is a port of the Hugo theme Doks for Zola." 4 | date = 2021-05-01T08:00:00+00:00 5 | updated = 2021-05-01T08:00:00+00:00 6 | draft = false 7 | weight = 10 8 | sort_by = "weight" 9 | template = "docs/page.html" 10 | 11 | [extra] 12 | lead = 'AdiDoks is a Zola theme helping you build modern documentation websites, which is a port of the Hugo theme Doks for Zola.' 13 | toc = true 14 | top = false 15 | +++ 16 | 17 | ## Quick Start 18 | 19 | One page summary of how to start a new AdiDoks project. [Quick Start →](../quick-start/) 20 | 21 | ## Go further 22 | 23 | Contributing and Help. 24 | 25 | ## Contributing 26 | 27 | Find out how to contribute to Doks. [Contributing →](../../contributing/how-to-contribute/) 28 | 29 | ## Help 30 | 31 | Get help on Doks. [Help →](../../help/faq/) 32 | -------------------------------------------------------------------------------- /pages/docs/themes/adidoks/content/docs/getting-started/quick-start.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "Quick Start" 3 | description = "One page summary of how to start a new AdiDoks project." 4 | date = 2021-05-01T08:20:00+00:00 5 | updated = 2021-05-01T08:20:00+00:00 6 | draft = false 7 | weight = 20 8 | sort_by = "weight" 9 | template = "docs/page.html" 10 | 11 | [extra] 12 | lead = "One page summary of how to start a new AdiDoks project." 13 | toc = true 14 | top = false 15 | +++ 16 | 17 | ## Requirements 18 | 19 | Before using the theme, you need to install the [Zola](https://www.getzola.org/documentation/getting-started/installation/) ≥ 0.15.0. 20 | 21 | ## Run the Theme Directly 22 | 23 | ```bash 24 | git clone https://github.com/aaranxu/adidoks.git 25 | cd adidoks 26 | zola serve 27 | ``` 28 | 29 | Visit `http://127.0.0.1:1111/` in the browser. 30 | 31 | ## Installation 32 | 33 | Just earlier we showed you how to run the theme directly. Now we start to 34 | install the theme in an existing site step by step. 35 | 36 | ### Step 1: Create a new zola site 37 | 38 | ```bash 39 | zola init mysite 40 | ``` 41 | 42 | ### Step 2: Install AdiDoks 43 | 44 | Download this theme to your themes directory: 45 | 46 | ```bash 47 | cd mysite/themes 48 | git clone https://github.com/aaranxu/adidoks.git 49 | ``` 50 | 51 | Or install as a submodule: 52 | 53 | ```bash 54 | cd mysite 55 | git init # if your project is a git repository already, ignore this command 56 | git submodule add https://github.com/aaranxu/adidoks.git themes/adidoks 57 | ``` 58 | 59 | ### Step 3: Configuration 60 | 61 | Enable the theme in your `config.toml` in the site derectory: 62 | 63 | ```toml 64 | theme = "adidoks" 65 | ``` 66 | 67 | Or copy the `config.toml.example` from the theme directory to your project's 68 | root directory: 69 | 70 | ```bash 71 | cp themes/adidoks/config.toml.example config.toml 72 | ``` 73 | 74 | ### Step 4: Add new content 75 | 76 | You can copy the content from the theme directory to your project: 77 | 78 | ```bash 79 | cp -r themes/adidoks/content . 80 | ``` 81 | 82 | You can modify or add new posts in the `content/blog`, `content/docs` or other 83 | content directories as needed. 84 | 85 | ### Step 5: Run the project 86 | 87 | Just run `zola serve` in the root path of the project: 88 | 89 | ```bash 90 | zola serve 91 | ``` 92 | 93 | AdiDoks will start the Zola development web server accessible by default at 94 | `http://127.0.0.1:1111`. Saved changes will live reload in the browser. 95 | -------------------------------------------------------------------------------- /pages/docs/themes/adidoks/content/docs/help/_index.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "Help" 3 | description = "Get help on AdiDoks." 4 | date = 2025-05-01T19:00:00+00:00 5 | updated = 2021-05-01T19:00:00+00:00 6 | template = "docs/section.html" 7 | sort_by = "weight" 8 | weight = 5 9 | draft = false 10 | +++ 11 | -------------------------------------------------------------------------------- /pages/docs/themes/adidoks/content/docs/help/faq.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "FAQ" 3 | description = "Answers to frequently asked questions." 4 | date = 2021-05-01T19:30:00+00:00 5 | updated = 2021-05-01T19:30:00+00:00 6 | draft = false 7 | weight = 30 8 | sort_by = "weight" 9 | template = "docs/page.html" 10 | 11 | [extra] 12 | lead = "Answers to frequently asked questions." 13 | toc = true 14 | top = false 15 | +++ 16 | 17 | ## What is the AdiDoks? 18 | 19 | AdiDoks is a Zola theme for Documentation's sites, ported by the Hugo Theme 20 | [Doks](https://getdoks.org), which is a pretty nice theme. Thanks a lot to 21 | [*h-enk*](https://github.com/h-enk), the creator of the [Doks](https://getdoks.org). 22 | 23 | ## Keyboard shortcuts for search? 24 | 25 | - focus: `/` 26 | - select: `↓` and `↑` 27 | - open: `Enter` 28 | - close: `Esc` 29 | 30 | ## Other documentation? 31 | 32 | - [Netlify](https://docs.netlify.com/) 33 | - [Zola](https://www.getzola.org/documentation/getting-started/overview/) 34 | 35 | ## Contact the creator? 36 | 37 | Send *Aaran Xu* an E-mail: 38 | 39 | -