diff --git a/.gitignore b/.gitignore
index a9b7dc7214af29dfae08908d7c911d84fee07597..337348874cfc291bd3e1d58312a4854f3dac8166 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,156 +1,7 @@
-
-# Created by https://www.toptal.com/developers/gitignore/api/python,jupyternotebooks
-# Edit at https://www.toptal.com/developers/gitignore?templates=python,jupyternotebooks
-
-### JupyterNotebooks ###
-# gitignore template for Jupyter Notebooks
-# website: http://jupyter.org/
-
-.ipynb_checkpoints
-*/.ipynb_checkpoints/*
-
-# IPython
-profile_default/
-ipython_config.py
-
-# Remove previous ipynb_checkpoints
-#   git rm -r .ipynb_checkpoints/
-
-### Python ###
-# Byte-compiled / optimized / DLL files
-__pycache__/
-*.py[cod]
-*$py.class
-
-# C extensions
-*.so
-
-# Distribution / packaging
-.Python
-build/
-develop-eggs/
-dist/
-downloads/
-eggs/
-.eggs/
-lib/
-lib64/
-parts/
-sdist/
-var/
-wheels/
-share/python-wheels/
-*.egg-info/
-.installed.cfg
-*.egg
-MANIFEST
-
-# PyInstaller
-#  Usually these files are written by a python script from a template
-#  before PyInstaller builds the exe, so as to inject date/other infos into it.
-*.manifest
-*.spec
-
-# Installer logs
-pip-log.txt
-pip-delete-this-directory.txt
-
-# Unit test / coverage reports
-htmlcov/
-.tox/
-.nox/
-.coverage
-.coverage.*
-.cache
-nosetests.xml
-coverage.xml
-*.cover
-*.py,cover
-.hypothesis/
-.pytest_cache/
-cover/
-
-# Translations
-*.mo
-*.pot
-
-# Django stuff:
-*.log
-local_settings.py
-db.sqlite3
-db.sqlite3-journal
-
-# Flask stuff:
-instance/
-.webassets-cache
-
-# Scrapy stuff:
-.scrapy
-
-# Sphinx documentation
-docs/_build/
-
-# PyBuilder
-.pybuilder/
-target/
-
-# Jupyter Notebook
-
-# IPython
-
-# pyenv
-#   For a library or package, you might want to ignore these files since the code is
-#   intended to run in multiple environments; otherwise, check them in:
-# .python-version
-
-# pipenv
-#   According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
-#   However, in case of collaboration, if having platform-specific dependencies or dependencies
-#   having no cross-platform support, pipenv may install dependencies that don't work, or not
-#   install all needed dependencies.
-#Pipfile.lock
-
-# PEP 582; used by e.g. github.com/David-OConnor/pyflow
-__pypackages__/
-
-# Celery stuff
-celerybeat-schedule
-celerybeat.pid
-
-# SageMath parsed files
-*.sage.py
-
-# Environments
-.env
-.venv
-env/
-venv/
-ENV/
-env.bak/
-venv.bak/
-
-# Spyder project settings
-.spyderproject
-.spyproject
-
-# Rope project settings
-.ropeproject
-
-# mkdocs documentation
-/site
-
-# mypy
-.mypy_cache/
-.dmypy.json
-dmypy.json
-
-# Pyre type checker
-.pyre/
-
-# pytype static type analyzer
-.pytype/
-
-# Cython debug symbols
-cython_debug/
-
-# End of https://www.toptal.com/developers/gitignore/api/python,jupyternotebooks
+public/
+resources/
+node_modules/
+*.bak
+*.swp
+*.lock
+*.DS_Store
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 0000000000000000000000000000000000000000..5af7b40514c1592b1a1e3a9c316aa9bd9879b3f8
--- /dev/null
+++ b/.gitlab-ci.yml
@@ -0,0 +1,18 @@
+default:
+  image: hugomods/hugo:ci
+
+variables:
+  GIT_SUBMODULE_STRATEGY: recursive
+
+create-pages:
+  before_script:
+    - npm i -D postcss postcss-cli autoprefixer
+  script:
+    - hugo
+  pages: true
+  artifacts:
+    paths:
+    - public
+  rules:
+    - if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
+  environment: production
diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml
deleted file mode 100644
index cf124fdaddcc5c0bb03239a2a668aa7c9fdfd65a..0000000000000000000000000000000000000000
--- a/.pre-commit-config.yaml
+++ /dev/null
@@ -1,31 +0,0 @@
-repos:
-  - repo: https://github.com/pre-commit/pre-commit-hooks
-    rev: v4.3.0
-    hooks:
-      - id: trailing-whitespace
-      - id: end-of-file-fixer
-      - id: check-yaml
-      - id: check-json
-      - id: check-merge-conflict
-      - id: check-added-large-files
-      - id: check-symlinks
-      - id: detect-private-key
-  - repo: https://github.com/commitizen-tools/commitizen
-    rev: v2.37.0
-    hooks:
-      - id: commitizen
-      - id: commitizen-branch
-        stages: [push]
-  - repo: https://github.com/psf/black
-    rev: 22.10.0
-    hooks:
-      - id: black
-#  - repo: local
-#    hooks:
-#      - id: pipenv-generetate-requirements
-#        name: Generate requirements.txt
-#        description: This hook generate the requirements.txt based on pipfile
-#        entry: scripts/generate-requeriments.sh
-#        language: script
-#        files: ^Pipfile(\.lock)?$
-#        stages: [merge-commit, push, prepare-commit-msg]
diff --git a/.readthedocs.yaml b/.readthedocs.yaml
deleted file mode 100644
index 601e0cbc58e864deb341513e14b4ff9f28d2dd59..0000000000000000000000000000000000000000
--- a/.readthedocs.yaml
+++ /dev/null
@@ -1,15 +0,0 @@
-version: 2
-
-build:
-  os: ubuntu-22.04
-  tools:
-    python: "3.11"
-python:
-  install:
-    - requirements: ./requirements.txt
-sphinx:
-  configuration: source/conf.py
-formats:
-  - htmlzip
-  - pdf
-  - epub
diff --git a/CHANGELOG.md b/CHANGELOG.md
deleted file mode 100644
index 59ae68714fba7c8642ef92ee17124aa65a7017c3..0000000000000000000000000000000000000000
--- a/CHANGELOG.md
+++ /dev/null
@@ -1,5 +0,0 @@
-## 0.1.0 (2022-11-03)
-
-### Feat
-
-- **build**: add .gitkeep on empty directories
diff --git a/LICENSE b/LICENSE
deleted file mode 100644
index d128c56cc5895441f11d45efd78b77a742b421c9..0000000000000000000000000000000000000000
--- a/LICENSE
+++ /dev/null
@@ -1,675 +0,0 @@
-                    GNU GENERAL PUBLIC LICENSE
-                       Version 3, 29 June 2007
-
- Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
- Everyone is permitted to copy and distribute verbatim copies
- of this license document, but changing it is not allowed.
-
-                            Preamble
-
-  The GNU General Public License is a free, copyleft license for
-software and other kinds of works.
-
-  The licenses for most software and other practical works are designed
-to take away your freedom to share and change the works.  By contrast,
-the GNU General Public License is intended to guarantee your freedom to
-share and change all versions of a program--to make sure it remains free
-software for all its users.  We, the Free Software Foundation, use the
-GNU General Public License for most of our software; it applies also to
-any other work released this way by its authors.  You can apply it to
-your programs, too.
-
-  When we speak of free software, we are referring to freedom, not
-price.  Our General Public Licenses are designed to make sure that you
-have the freedom to distribute copies of free software (and charge for
-them if you wish), that you receive source code or can get it if you
-want it, that you can change the software or use pieces of it in new
-free programs, and that you know you can do these things.
-
-  To protect your rights, we need to prevent others from denying you
-these rights or asking you to surrender the rights.  Therefore, you have
-certain responsibilities if you distribute copies of the software, or if
-you modify it: responsibilities to respect the freedom of others.
-
-  For example, if you distribute copies of such a program, whether
-gratis or for a fee, you must pass on to the recipients the same
-freedoms that you received.  You must make sure that they, too, receive
-or can get the source code.  And you must show them these terms so they
-know their rights.
-
-  Developers that use the GNU GPL protect your rights with two steps:
-(1) assert copyright on the software, and (2) offer you this License
-giving you legal permission to copy, distribute and/or modify it.
-
-  For the developers' and authors' protection, the GPL clearly explains
-that there is no warranty for this free software.  For both users' and
-authors' sake, the GPL requires that modified versions be marked as
-changed, so that their problems will not be attributed erroneously to
-authors of previous versions.
-
-  Some devices are designed to deny users access to install or run
-modified versions of the software inside them, although the manufacturer
-can do so.  This is fundamentally incompatible with the aim of
-protecting users' freedom to change the software.  The systematic
-pattern of such abuse occurs in the area of products for individuals to
-use, which is precisely where it is most unacceptable.  Therefore, we
-have designed this version of the GPL to prohibit the practice for those
-products.  If such problems arise substantially in other domains, we
-stand ready to extend this provision to those domains in future versions
-of the GPL, as needed to protect the freedom of users.
-
-  Finally, every program is threatened constantly by software patents.
-States should not allow patents to restrict development and use of
-software on general-purpose computers, but in those that do, we wish to
-avoid the special danger that patents applied to a free program could
-make it effectively proprietary.  To prevent this, the GPL assures that
-patents cannot be used to render the program non-free.
-
-  The precise terms and conditions for copying, distribution and
-modification follow.
-
-                       TERMS AND CONDITIONS
-
-  0. Definitions.
-
-  "This License" refers to version 3 of the GNU General Public License.
-
-  "Copyright" also means copyright-like laws that apply to other kinds of
-works, such as semiconductor masks.
-
-  "The Program" refers to any copyrightable work licensed under this
-License.  Each licensee is addressed as "you".  "Licensees" and
-"recipients" may be individuals or organizations.
-
-  To "modify" a work means to copy from or adapt all or part of the work
-in a fashion requiring copyright permission, other than the making of an
-exact copy.  The resulting work is called a "modified version" of the
-earlier work or a work "based on" the earlier work.
-
-  A "covered work" means either the unmodified Program or a work based
-on the Program.
-
-  To "propagate" a work means to do anything with it that, without
-permission, would make you directly or secondarily liable for
-infringement under applicable copyright law, except executing it on a
-computer or modifying a private copy.  Propagation includes copying,
-distribution (with or without modification), making available to the
-public, and in some countries other activities as well.
-
-  To "convey" a work means any kind of propagation that enables other
-parties to make or receive copies.  Mere interaction with a user through
-a computer network, with no transfer of a copy, is not conveying.
-
-  An interactive user interface displays "Appropriate Legal Notices"
-to the extent that it includes a convenient and prominently visible
-feature that (1) displays an appropriate copyright notice, and (2)
-tells the user that there is no warranty for the work (except to the
-extent that warranties are provided), that licensees may convey the
-work under this License, and how to view a copy of this License.  If
-the interface presents a list of user commands or options, such as a
-menu, a prominent item in the list meets this criterion.
-
-  1. Source Code.
-
-  The "source code" for a work means the preferred form of the work
-for making modifications to it.  "Object code" means any non-source
-form of a work.
-
-  A "Standard Interface" means an interface that either is an official
-standard defined by a recognized standards body, or, in the case of
-interfaces specified for a particular programming language, one that
-is widely used among developers working in that language.
-
-  The "System Libraries" of an executable work include anything, other
-than the work as a whole, that (a) is included in the normal form of
-packaging a Major Component, but which is not part of that Major
-Component, and (b) serves only to enable use of the work with that
-Major Component, or to implement a Standard Interface for which an
-implementation is available to the public in source code form.  A
-"Major Component", in this context, means a major essential component
-(kernel, window system, and so on) of the specific operating system
-(if any) on which the executable work runs, or a compiler used to
-produce the work, or an object code interpreter used to run it.
-
-  The "Corresponding Source" for a work in object code form means all
-the source code needed to generate, install, and (for an executable
-work) run the object code and to modify the work, including scripts to
-control those activities.  However, it does not include the work's
-System Libraries, or general-purpose tools or generally available free
-programs which are used unmodified in performing those activities but
-which are not part of the work.  For example, Corresponding Source
-includes interface definition files associated with source files for
-the work, and the source code for shared libraries and dynamically
-linked subprograms that the work is specifically designed to require,
-such as by intimate data communication or control flow between those
-subprograms and other parts of the work.
-
-  The Corresponding Source need not include anything that users
-can regenerate automatically from other parts of the Corresponding
-Source.
-
-  The Corresponding Source for a work in source code form is that
-same work.
-
-  2. Basic Permissions.
-
-  All rights granted under this License are granted for the term of
-copyright on the Program, and are irrevocable provided the stated
-conditions are met.  This License explicitly affirms your unlimited
-permission to run the unmodified Program.  The output from running a
-covered work is covered by this License only if the output, given its
-content, constitutes a covered work.  This License acknowledges your
-rights of fair use or other equivalent, as provided by copyright law.
-
-  You may make, run and propagate covered works that you do not
-convey, without conditions so long as your license otherwise remains
-in force.  You may convey covered works to others for the sole purpose
-of having them make modifications exclusively for you, or provide you
-with facilities for running those works, provided that you comply with
-the terms of this License in conveying all material for which you do
-not control copyright.  Those thus making or running the covered works
-for you must do so exclusively on your behalf, under your direction
-and control, on terms that prohibit them from making any copies of
-your copyrighted material outside their relationship with you.
-
-  Conveying under any other circumstances is permitted solely under
-the conditions stated below.  Sublicensing is not allowed; section 10
-makes it unnecessary.
-
-  3. Protecting Users' Legal Rights From Anti-Circumvention Law.
-
-  No covered work shall be deemed part of an effective technological
-measure under any applicable law fulfilling obligations under article
-11 of the WIPO copyright treaty adopted on 20 December 1996, or
-similar laws prohibiting or restricting circumvention of such
-measures.
-
-  When you convey a covered work, you waive any legal power to forbid
-circumvention of technological measures to the extent such circumvention
-is effected by exercising rights under this License with respect to
-the covered work, and you disclaim any intention to limit operation or
-modification of the work as a means of enforcing, against the work's
-users, your or third parties' legal rights to forbid circumvention of
-technological measures.
-
-  4. Conveying Verbatim Copies.
-
-  You may convey verbatim copies of the Program's source code as you
-receive it, in any medium, provided that you conspicuously and
-appropriately publish on each copy an appropriate copyright notice;
-keep intact all notices stating that this License and any
-non-permissive terms added in accord with section 7 apply to the code;
-keep intact all notices of the absence of any warranty; and give all
-recipients a copy of this License along with the Program.
-
-  You may charge any price or no price for each copy that you convey,
-and you may offer support or warranty protection for a fee.
-
-  5. Conveying Modified Source Versions.
-
-  You may convey a work based on the Program, or the modifications to
-produce it from the Program, in the form of source code under the
-terms of section 4, provided that you also meet all of these conditions:
-
-    a) The work must carry prominent notices stating that you modified
-    it, and giving a relevant date.
-
-    b) The work must carry prominent notices stating that it is
-    released under this License and any conditions added under section
-    7.  This requirement modifies the requirement in section 4 to
-    "keep intact all notices".
-
-    c) You must license the entire work, as a whole, under this
-    License to anyone who comes into possession of a copy.  This
-    License will therefore apply, along with any applicable section 7
-    additional terms, to the whole of the work, and all its parts,
-    regardless of how they are packaged.  This License gives no
-    permission to license the work in any other way, but it does not
-    invalidate such permission if you have separately received it.
-
-    d) If the work has interactive user interfaces, each must display
-    Appropriate Legal Notices; however, if the Program has interactive
-    interfaces that do not display Appropriate Legal Notices, your
-    work need not make them do so.
-
-  A compilation of a covered work with other separate and independent
-works, which are not by their nature extensions of the covered work,
-and which are not combined with it such as to form a larger program,
-in or on a volume of a storage or distribution medium, is called an
-"aggregate" if the compilation and its resulting copyright are not
-used to limit the access or legal rights of the compilation's users
-beyond what the individual works permit.  Inclusion of a covered work
-in an aggregate does not cause this License to apply to the other
-parts of the aggregate.
-
-  6. Conveying Non-Source Forms.
-
-  You may convey a covered work in object code form under the terms
-of sections 4 and 5, provided that you also convey the
-machine-readable Corresponding Source under the terms of this License,
-in one of these ways:
-
-    a) Convey the object code in, or embodied in, a physical product
-    (including a physical distribution medium), accompanied by the
-    Corresponding Source fixed on a durable physical medium
-    customarily used for software interchange.
-
-    b) Convey the object code in, or embodied in, a physical product
-    (including a physical distribution medium), accompanied by a
-    written offer, valid for at least three years and valid for as
-    long as you offer spare parts or customer support for that product
-    model, to give anyone who possesses the object code either (1) a
-    copy of the Corresponding Source for all the software in the
-    product that is covered by this License, on a durable physical
-    medium customarily used for software interchange, for a price no
-    more than your reasonable cost of physically performing this
-    conveying of source, or (2) access to copy the
-    Corresponding Source from a network server at no charge.
-
-    c) Convey individual copies of the object code with a copy of the
-    written offer to provide the Corresponding Source.  This
-    alternative is allowed only occasionally and noncommercially, and
-    only if you received the object code with such an offer, in accord
-    with subsection 6b.
-
-    d) Convey the object code by offering access from a designated
-    place (gratis or for a charge), and offer equivalent access to the
-    Corresponding Source in the same way through the same place at no
-    further charge.  You need not require recipients to copy the
-    Corresponding Source along with the object code.  If the place to
-    copy the object code is a network server, the Corresponding Source
-    may be on a different server (operated by you or a third party)
-    that supports equivalent copying facilities, provided you maintain
-    clear directions next to the object code saying where to find the
-    Corresponding Source.  Regardless of what server hosts the
-    Corresponding Source, you remain obligated to ensure that it is
-    available for as long as needed to satisfy these requirements.
-
-    e) Convey the object code using peer-to-peer transmission, provided
-    you inform other peers where the object code and Corresponding
-    Source of the work are being offered to the general public at no
-    charge under subsection 6d.
-
-  A separable portion of the object code, whose source code is excluded
-from the Corresponding Source as a System Library, need not be
-included in conveying the object code work.
-
-  A "User Product" is either (1) a "consumer product", which means any
-tangible personal property which is normally used for personal, family,
-or household purposes, or (2) anything designed or sold for incorporation
-into a dwelling.  In determining whether a product is a consumer product,
-doubtful cases shall be resolved in favor of coverage.  For a particular
-product received by a particular user, "normally used" refers to a
-typical or common use of that class of product, regardless of the status
-of the particular user or of the way in which the particular user
-actually uses, or expects or is expected to use, the product.  A product
-is a consumer product regardless of whether the product has substantial
-commercial, industrial or non-consumer uses, unless such uses represent
-the only significant mode of use of the product.
-
-  "Installation Information" for a User Product means any methods,
-procedures, authorization keys, or other information required to install
-and execute modified versions of a covered work in that User Product from
-a modified version of its Corresponding Source.  The information must
-suffice to ensure that the continued functioning of the modified object
-code is in no case prevented or interfered with solely because
-modification has been made.
-
-  If you convey an object code work under this section in, or with, or
-specifically for use in, a User Product, and the conveying occurs as
-part of a transaction in which the right of possession and use of the
-User Product is transferred to the recipient in perpetuity or for a
-fixed term (regardless of how the transaction is characterized), the
-Corresponding Source conveyed under this section must be accompanied
-by the Installation Information.  But this requirement does not apply
-if neither you nor any third party retains the ability to install
-modified object code on the User Product (for example, the work has
-been installed in ROM).
-
-  The requirement to provide Installation Information does not include a
-requirement to continue to provide support service, warranty, or updates
-for a work that has been modified or installed by the recipient, or for
-the User Product in which it has been modified or installed.  Access to a
-network may be denied when the modification itself materially and
-adversely affects the operation of the network or violates the rules and
-protocols for communication across the network.
-
-  Corresponding Source conveyed, and Installation Information provided,
-in accord with this section must be in a format that is publicly
-documented (and with an implementation available to the public in
-source code form), and must require no special password or key for
-unpacking, reading or copying.
-
-  7. Additional Terms.
-
-  "Additional permissions" are terms that supplement the terms of this
-License by making exceptions from one or more of its conditions.
-Additional permissions that are applicable to the entire Program shall
-be treated as though they were included in this License, to the extent
-that they are valid under applicable law.  If additional permissions
-apply only to part of the Program, that part may be used separately
-under those permissions, but the entire Program remains governed by
-this License without regard to the additional permissions.
-
-  When you convey a copy of a covered work, you may at your option
-remove any additional permissions from that copy, or from any part of
-it.  (Additional permissions may be written to require their own
-removal in certain cases when you modify the work.)  You may place
-additional permissions on material, added by you to a covered work,
-for which you have or can give appropriate copyright permission.
-
-  Notwithstanding any other provision of this License, for material you
-add to a covered work, you may (if authorized by the copyright holders of
-that material) supplement the terms of this License with terms:
-
-    a) Disclaiming warranty or limiting liability differently from the
-    terms of sections 15 and 16 of this License; or
-
-    b) Requiring preservation of specified reasonable legal notices or
-    author attributions in that material or in the Appropriate Legal
-    Notices displayed by works containing it; or
-
-    c) Prohibiting misrepresentation of the origin of that material, or
-    requiring that modified versions of such material be marked in
-    reasonable ways as different from the original version; or
-
-    d) Limiting the use for publicity purposes of names of licensors or
-    authors of the material; or
-
-    e) Declining to grant rights under trademark law for use of some
-    trade names, trademarks, or service marks; or
-
-    f) Requiring indemnification of licensors and authors of that
-    material by anyone who conveys the material (or modified versions of
-    it) with contractual assumptions of liability to the recipient, for
-    any liability that these contractual assumptions directly impose on
-    those licensors and authors.
-
-  All other non-permissive additional terms are considered "further
-restrictions" within the meaning of section 10.  If the Program as you
-received it, or any part of it, contains a notice stating that it is
-governed by this License along with a term that is a further
-restriction, you may remove that term.  If a license document contains
-a further restriction but permits relicensing or conveying under this
-License, you may add to a covered work material governed by the terms
-of that license document, provided that the further restriction does
-not survive such relicensing or conveying.
-
-  If you add terms to a covered work in accord with this section, you
-must place, in the relevant source files, a statement of the
-additional terms that apply to those files, or a notice indicating
-where to find the applicable terms.
-
-  Additional terms, permissive or non-permissive, may be stated in the
-form of a separately written license, or stated as exceptions;
-the above requirements apply either way.
-
-  8. Termination.
-
-  You may not propagate or modify a covered work except as expressly
-provided under this License.  Any attempt otherwise to propagate or
-modify it is void, and will automatically terminate your rights under
-this License (including any patent licenses granted under the third
-paragraph of section 11).
-
-  However, if you cease all violation of this License, then your
-license from a particular copyright holder is reinstated (a)
-provisionally, unless and until the copyright holder explicitly and
-finally terminates your license, and (b) permanently, if the copyright
-holder fails to notify you of the violation by some reasonable means
-prior to 60 days after the cessation.
-
-  Moreover, your license from a particular copyright holder is
-reinstated permanently if the copyright holder notifies you of the
-violation by some reasonable means, this is the first time you have
-received notice of violation of this License (for any work) from that
-copyright holder, and you cure the violation prior to 30 days after
-your receipt of the notice.
-
-  Termination of your rights under this section does not terminate the
-licenses of parties who have received copies or rights from you under
-this License.  If your rights have been terminated and not permanently
-reinstated, you do not qualify to receive new licenses for the same
-material under section 10.
-
-  9. Acceptance Not Required for Having Copies.
-
-  You are not required to accept this License in order to receive or
-run a copy of the Program.  Ancillary propagation of a covered work
-occurring solely as a consequence of using peer-to-peer transmission
-to receive a copy likewise does not require acceptance.  However,
-nothing other than this License grants you permission to propagate or
-modify any covered work.  These actions infringe copyright if you do
-not accept this License.  Therefore, by modifying or propagating a
-covered work, you indicate your acceptance of this License to do so.
-
-  10. Automatic Licensing of Downstream Recipients.
-
-  Each time you convey a covered work, the recipient automatically
-receives a license from the original licensors, to run, modify and
-propagate that work, subject to this License.  You are not responsible
-for enforcing compliance by third parties with this License.
-
-  An "entity transaction" is a transaction transferring control of an
-organization, or substantially all assets of one, or subdividing an
-organization, or merging organizations.  If propagation of a covered
-work results from an entity transaction, each party to that
-transaction who receives a copy of the work also receives whatever
-licenses to the work the party's predecessor in interest had or could
-give under the previous paragraph, plus a right to possession of the
-Corresponding Source of the work from the predecessor in interest, if
-the predecessor has it or can get it with reasonable efforts.
-
-  You may not impose any further restrictions on the exercise of the
-rights granted or affirmed under this License.  For example, you may
-not impose a license fee, royalty, or other charge for exercise of
-rights granted under this License, and you may not initiate litigation
-(including a cross-claim or counterclaim in a lawsuit) alleging that
-any patent claim is infringed by making, using, selling, offering for
-sale, or importing the Program or any portion of it.
-
-  11. Patents.
-
-  A "contributor" is a copyright holder who authorizes use under this
-License of the Program or a work on which the Program is based.  The
-work thus licensed is called the contributor's "contributor version".
-
-  A contributor's "essential patent claims" are all patent claims
-owned or controlled by the contributor, whether already acquired or
-hereafter acquired, that would be infringed by some manner, permitted
-by this License, of making, using, or selling its contributor version,
-but do not include claims that would be infringed only as a
-consequence of further modification of the contributor version.  For
-purposes of this definition, "control" includes the right to grant
-patent sublicenses in a manner consistent with the requirements of
-this License.
-
-  Each contributor grants you a non-exclusive, worldwide, royalty-free
-patent license under the contributor's essential patent claims, to
-make, use, sell, offer for sale, import and otherwise run, modify and
-propagate the contents of its contributor version.
-
-  In the following three paragraphs, a "patent license" is any express
-agreement or commitment, however denominated, not to enforce a patent
-(such as an express permission to practice a patent or covenant not to
-sue for patent infringement).  To "grant" such a patent license to a
-party means to make such an agreement or commitment not to enforce a
-patent against the party.
-
-  If you convey a covered work, knowingly relying on a patent license,
-and the Corresponding Source of the work is not available for anyone
-to copy, free of charge and under the terms of this License, through a
-publicly available network server or other readily accessible means,
-then you must either (1) cause the Corresponding Source to be so
-available, or (2) arrange to deprive yourself of the benefit of the
-patent license for this particular work, or (3) arrange, in a manner
-consistent with the requirements of this License, to extend the patent
-license to downstream recipients.  "Knowingly relying" means you have
-actual knowledge that, but for the patent license, your conveying the
-covered work in a country, or your recipient's use of the covered work
-in a country, would infringe one or more identifiable patents in that
-country that you have reason to believe are valid.
-
-  If, pursuant to or in connection with a single transaction or
-arrangement, you convey, or propagate by procuring conveyance of, a
-covered work, and grant a patent license to some of the parties
-receiving the covered work authorizing them to use, propagate, modify
-or convey a specific copy of the covered work, then the patent license
-you grant is automatically extended to all recipients of the covered
-work and works based on it.
-
-  A patent license is "discriminatory" if it does not include within
-the scope of its coverage, prohibits the exercise of, or is
-conditioned on the non-exercise of one or more of the rights that are
-specifically granted under this License.  You may not convey a covered
-work if you are a party to an arrangement with a third party that is
-in the business of distributing software, under which you make payment
-to the third party based on the extent of your activity of conveying
-the work, and under which the third party grants, to any of the
-parties who would receive the covered work from you, a discriminatory
-patent license (a) in connection with copies of the covered work
-conveyed by you (or copies made from those copies), or (b) primarily
-for and in connection with specific products or compilations that
-contain the covered work, unless you entered into that arrangement,
-or that patent license was granted, prior to 28 March 2007.
-
-  Nothing in this License shall be construed as excluding or limiting
-any implied license or other defenses to infringement that may
-otherwise be available to you under applicable patent law.
-
-  12. No Surrender of Others' Freedom.
-
-  If conditions are imposed on you (whether by court order, agreement or
-otherwise) that contradict the conditions of this License, they do not
-excuse you from the conditions of this License.  If you cannot convey a
-covered work so as to satisfy simultaneously your obligations under this
-License and any other pertinent obligations, then as a consequence you may
-not convey it at all.  For example, if you agree to terms that obligate you
-to collect a royalty for further conveying from those to whom you convey
-the Program, the only way you could satisfy both those terms and this
-License would be to refrain entirely from conveying the Program.
-
-  13. Use with the GNU Affero General Public License.
-
-  Notwithstanding any other provision of this License, you have
-permission to link or combine any covered work with a work licensed
-under version 3 of the GNU Affero General Public License into a single
-combined work, and to convey the resulting work.  The terms of this
-License will continue to apply to the part which is the covered work,
-but the special requirements of the GNU Affero General Public License,
-section 13, concerning interaction through a network will apply to the
-combination as such.
-
-  14. Revised Versions of this License.
-
-  The Free Software Foundation may publish revised and/or new versions of
-the GNU General Public License from time to time.  Such new versions will
-be similar in spirit to the present version, but may differ in detail to
-address new problems or concerns.
-
-  Each version is given a distinguishing version number.  If the
-Program specifies that a certain numbered version of the GNU General
-Public License "or any later version" applies to it, you have the
-option of following the terms and conditions either of that numbered
-version or of any later version published by the Free Software
-Foundation.  If the Program does not specify a version number of the
-GNU General Public License, you may choose any version ever published
-by the Free Software Foundation.
-
-  If the Program specifies that a proxy can decide which future
-versions of the GNU General Public License can be used, that proxy's
-public statement of acceptance of a version permanently authorizes you
-to choose that version for the Program.
-
-  Later license versions may give you additional or different
-permissions.  However, no additional obligations are imposed on any
-author or copyright holder as a result of your choosing to follow a
-later version.
-
-  15. Disclaimer of Warranty.
-
-  THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
-APPLICABLE LAW.  EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
-HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
-OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
-THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
-PURPOSE.  THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
-IS WITH YOU.  SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
-ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
-
-  16. Limitation of Liability.
-
-  IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
-WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
-THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
-GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
-USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
-DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
-PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
-EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
-SUCH DAMAGES.
-
-  17. Interpretation of Sections 15 and 16.
-
-  If the disclaimer of warranty and limitation of liability provided
-above cannot be given local legal effect according to their terms,
-reviewing courts shall apply local law that most closely approximates
-an absolute waiver of all civil liability in connection with the
-Program, unless a warranty or assumption of liability accompanies a
-copy of the Program in return for a fee.
-
-                     END OF TERMS AND CONDITIONS
-
-            How to Apply These Terms to Your New Programs
-
-  If you develop a new program, and you want it to be of the greatest
-possible use to the public, the best way to achieve this is to make it
-free software which everyone can redistribute and change under these terms.
-
-  To do so, attach the following notices to the program.  It is safest
-to attach them to the start of each source file to most effectively
-state the exclusion of warranty; and each file should have at least
-the "copyright" line and a pointer to where the full notice is found.
-
-    Documentation for C3SL's nonexistent (yet) DevOps team.
-    Copyright (C) 2024  C3SL
-
-    This program is free software: you can redistribute it and/or modify
-    it under the terms of the GNU General Public License as published by
-    the Free Software Foundation, either version 3 of the License, or
-    (at your option) any later version.
-
-    This program is distributed in the hope that it will be useful,
-    but WITHOUT ANY WARRANTY; without even the implied warranty of
-    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-    GNU General Public License for more details.
-
-    You should have received a copy of the GNU General Public License
-    along with this program.  If not, see <https://www.gnu.org/licenses/>.
-
-Also add information on how to contact you by electronic and paper mail.
-
-  If the program does terminal interaction, make it output a short
-notice like this when it starts in an interactive mode:
-
-    Docs DevOps  Copyright (C) 2024  C3SL
-    This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
-    This is free software, and you are welcome to redistribute it
-    under certain conditions; type `show c' for details.
-
-The hypothetical commands `show w' and `show c' should show the appropriate
-parts of the General Public License.  Of course, your program's commands
-might be different; for a GUI interface, you would use an "about box".
-
-  You should also get your employer (if you work as a programmer) or school,
-if any, to sign a "copyright disclaimer" for the program, if necessary.
-For more information on this, and how to apply and follow the GNU GPL, see
-<https://www.gnu.org/licenses/>.
-
-  The GNU General Public License does not permit incorporating your program
-into proprietary programs.  If your program is a subroutine library, you
-may consider it more useful to permit linking proprietary applications with
-the library.  If this is what you want to do, use the GNU Lesser General
-Public License instead of this License.  But first, please read
-<https://www.gnu.org/licenses/why-not-lgpl.html>.
-
diff --git a/Makefile b/Makefile
deleted file mode 100644
index d0c3cbf1020d5c292abdedf27627c6abe25e2293..0000000000000000000000000000000000000000
--- a/Makefile
+++ /dev/null
@@ -1,20 +0,0 @@
-# Minimal makefile for Sphinx documentation
-#
-
-# You can set these variables from the command line, and also
-# from the environment for the first two.
-SPHINXOPTS    ?=
-SPHINXBUILD   ?= sphinx-build
-SOURCEDIR     = source
-BUILDDIR      = build
-
-# Put it first so that "make" without argument is like "make help".
-help:
-	@$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
-
-.PHONY: help Makefile
-
-# Catch-all target: route all unknown targets to Sphinx using the new
-# "make mode" option.  $(O) is meant as a shortcut for $(SPHINXOPTS).
-%: Makefile
-	@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
diff --git a/Pipfile b/Pipfile
deleted file mode 100644
index 0687abb7a59ab72618ecf57cbdf13511748342bf..0000000000000000000000000000000000000000
--- a/Pipfile
+++ /dev/null
@@ -1,21 +0,0 @@
-[[source]]
-url = "https://pypi.org/simple"
-verify_ssl = true
-name = "pypi"
-
-[packages]
-sphinx = "*"
-commitizen = "*"
-pre-commit = "*"
-sphinxcontrib-svgbob = "*"
-furo = "*"
-sphinx-autobuild = "*"
-sphinx-inline-tabs = "*"
-sphinx-copybutton = "*"
-sphinx-tippy = "*"
-myst-parser = "*"
-
-[dev-packages]
-
-[requires]
-python_version = "3.11.8"
diff --git a/Pipfile.lock b/Pipfile.lock
deleted file mode 100644
index 0109eaf446286d92ebbc93fa16b6b51a77d589ef..0000000000000000000000000000000000000000
--- a/Pipfile.lock
+++ /dev/null
@@ -1,699 +0,0 @@
-{
-    "_meta": {
-        "hash": {
-            "sha256": "134f7e01a3d320dba42feb4468a15d77b81c3f8452310220458e7ec212d30cda"
-        },
-        "pipfile-spec": 6,
-        "requires": {
-            "python_version": "3.11.8"
-        },
-        "sources": [
-            {
-                "name": "pypi",
-                "url": "https://pypi.org/simple",
-                "verify_ssl": true
-            }
-        ]
-    },
-    "default": {
-        "alabaster": {
-            "hashes": [
-                "sha256:75a8b99c28a5dad50dd7f8ccdd447a121ddb3892da9e53d1ca5cca3106d58d65",
-                "sha256:b46733c07dce03ae4e150330b975c75737fa60f0a7c591b6c8bf4928a28e2c92"
-            ],
-            "markers": "python_version >= '3.9'",
-            "version": "==0.7.16"
-        },
-        "argcomplete": {
-            "hashes": [
-                "sha256:bf7900329262e481be5a15f56f19736b376df6f82ed27576fa893652c5de6c23",
-                "sha256:c12355e0494c76a2a7b73e3a59b09024ca0ba1e279fb9ed6c1b82d5b74b6a70c"
-            ],
-            "markers": "python_version >= '3.8'",
-            "version": "==3.2.3"
-        },
-        "babel": {
-            "hashes": [
-                "sha256:6919867db036398ba21eb5c7a0f6b28ab8cbc3ae7a73a44ebe34ae74a4e7d363",
-                "sha256:efb1a25b7118e67ce3a259bed20545c29cb68be8ad2c784c83689981b7a57287"
-            ],
-            "markers": "python_version >= '3.7'",
-            "version": "==2.14.0"
-        },
-        "beautifulsoup4": {
-            "hashes": [
-                "sha256:74e3d1928edc070d21748185c46e3fb33490f22f52a3addee9aee0f4f7781051",
-                "sha256:b80878c9f40111313e55da8ba20bdba06d8fa3969fc68304167741bbf9e082ed"
-            ],
-            "markers": "python_full_version >= '3.6.0'",
-            "version": "==4.12.3"
-        },
-        "certifi": {
-            "hashes": [
-                "sha256:0569859f95fc761b18b45ef421b1290a0f65f147e92a1e5eb3e635f9a5e4e66f",
-                "sha256:dc383c07b76109f368f6106eee2b593b04a011ea4d55f652c6ca24a754d1cdd1"
-            ],
-            "markers": "python_version >= '3.6'",
-            "version": "==2024.2.2"
-        },
-        "cfgv": {
-            "hashes": [
-                "sha256:b7265b1f29fd3316bfcd2b330d63d024f2bfd8bcb8b0272f8e19a504856c48f9",
-                "sha256:e52591d4c5f5dead8e0f673fb16db7949d2cfb3f7da4582893288f0ded8fe560"
-            ],
-            "markers": "python_version >= '3.8'",
-            "version": "==3.4.0"
-        },
-        "charset-normalizer": {
-            "hashes": [
-                "sha256:06435b539f889b1f6f4ac1758871aae42dc3a8c0e24ac9e60c2384973ad73027",
-                "sha256:06a81e93cd441c56a9b65d8e1d043daeb97a3d0856d177d5c90ba85acb3db087",
-                "sha256:0a55554a2fa0d408816b3b5cedf0045f4b8e1a6065aec45849de2d6f3f8e9786",
-                "sha256:0b2b64d2bb6d3fb9112bafa732def486049e63de9618b5843bcdd081d8144cd8",
-                "sha256:10955842570876604d404661fbccbc9c7e684caf432c09c715ec38fbae45ae09",
-                "sha256:122c7fa62b130ed55f8f285bfd56d5f4b4a5b503609d181f9ad85e55c89f4185",
-                "sha256:1ceae2f17a9c33cb48e3263960dc5fc8005351ee19db217e9b1bb15d28c02574",
-                "sha256:1d3193f4a680c64b4b6a9115943538edb896edc190f0b222e73761716519268e",
-                "sha256:1f79682fbe303db92bc2b1136016a38a42e835d932bab5b3b1bfcfbf0640e519",
-                "sha256:2127566c664442652f024c837091890cb1942c30937add288223dc895793f898",
-                "sha256:22afcb9f253dac0696b5a4be4a1c0f8762f8239e21b99680099abd9b2b1b2269",
-                "sha256:25baf083bf6f6b341f4121c2f3c548875ee6f5339300e08be3f2b2ba1721cdd3",
-                "sha256:2e81c7b9c8979ce92ed306c249d46894776a909505d8f5a4ba55b14206e3222f",
-                "sha256:3287761bc4ee9e33561a7e058c72ac0938c4f57fe49a09eae428fd88aafe7bb6",
-                "sha256:34d1c8da1e78d2e001f363791c98a272bb734000fcef47a491c1e3b0505657a8",
-                "sha256:37e55c8e51c236f95b033f6fb391d7d7970ba5fe7ff453dad675e88cf303377a",
-                "sha256:3d47fa203a7bd9c5b6cee4736ee84ca03b8ef23193c0d1ca99b5089f72645c73",
-                "sha256:3e4d1f6587322d2788836a99c69062fbb091331ec940e02d12d179c1d53e25fc",
-                "sha256:42cb296636fcc8b0644486d15c12376cb9fa75443e00fb25de0b8602e64c1714",
-                "sha256:45485e01ff4d3630ec0d9617310448a8702f70e9c01906b0d0118bdf9d124cf2",
-                "sha256:4a78b2b446bd7c934f5dcedc588903fb2f5eec172f3d29e52a9096a43722adfc",
-                "sha256:4ab2fe47fae9e0f9dee8c04187ce5d09f48eabe611be8259444906793ab7cbce",
-                "sha256:4d0d1650369165a14e14e1e47b372cfcb31d6ab44e6e33cb2d4e57265290044d",
-                "sha256:549a3a73da901d5bc3ce8d24e0600d1fa85524c10287f6004fbab87672bf3e1e",
-                "sha256:55086ee1064215781fff39a1af09518bc9255b50d6333f2e4c74ca09fac6a8f6",
-                "sha256:572c3763a264ba47b3cf708a44ce965d98555f618ca42c926a9c1616d8f34269",
-                "sha256:573f6eac48f4769d667c4442081b1794f52919e7edada77495aaed9236d13a96",
-                "sha256:5b4c145409bef602a690e7cfad0a15a55c13320ff7a3ad7ca59c13bb8ba4d45d",
-                "sha256:6463effa3186ea09411d50efc7d85360b38d5f09b870c48e4600f63af490e56a",
-                "sha256:65f6f63034100ead094b8744b3b97965785388f308a64cf8d7c34f2f2e5be0c4",
-                "sha256:663946639d296df6a2bb2aa51b60a2454ca1cb29835324c640dafb5ff2131a77",
-                "sha256:6897af51655e3691ff853668779c7bad41579facacf5fd7253b0133308cf000d",
-                "sha256:68d1f8a9e9e37c1223b656399be5d6b448dea850bed7d0f87a8311f1ff3dabb0",
-                "sha256:6ac7ffc7ad6d040517be39eb591cac5ff87416c2537df6ba3cba3bae290c0fed",
-                "sha256:6b3251890fff30ee142c44144871185dbe13b11bab478a88887a639655be1068",
-                "sha256:6c4caeef8fa63d06bd437cd4bdcf3ffefe6738fb1b25951440d80dc7df8c03ac",
-                "sha256:6ef1d82a3af9d3eecdba2321dc1b3c238245d890843e040e41e470ffa64c3e25",
-                "sha256:753f10e867343b4511128c6ed8c82f7bec3bd026875576dfd88483c5c73b2fd8",
-                "sha256:7cd13a2e3ddeed6913a65e66e94b51d80a041145a026c27e6bb76c31a853c6ab",
-                "sha256:7ed9e526742851e8d5cc9e6cf41427dfc6068d4f5a3bb03659444b4cabf6bc26",
-                "sha256:7f04c839ed0b6b98b1a7501a002144b76c18fb1c1850c8b98d458ac269e26ed2",
-                "sha256:802fe99cca7457642125a8a88a084cef28ff0cf9407060f7b93dca5aa25480db",
-                "sha256:80402cd6ee291dcb72644d6eac93785fe2c8b9cb30893c1af5b8fdd753b9d40f",
-                "sha256:8465322196c8b4d7ab6d1e049e4c5cb460d0394da4a27d23cc242fbf0034b6b5",
-                "sha256:86216b5cee4b06df986d214f664305142d9c76df9b6512be2738aa72a2048f99",
-                "sha256:87d1351268731db79e0f8e745d92493ee2841c974128ef629dc518b937d9194c",
-                "sha256:8bdb58ff7ba23002a4c5808d608e4e6c687175724f54a5dade5fa8c67b604e4d",
-                "sha256:8c622a5fe39a48f78944a87d4fb8a53ee07344641b0562c540d840748571b811",
-                "sha256:8d756e44e94489e49571086ef83b2bb8ce311e730092d2c34ca8f7d925cb20aa",
-                "sha256:8f4a014bc36d3c57402e2977dada34f9c12300af536839dc38c0beab8878f38a",
-                "sha256:9063e24fdb1e498ab71cb7419e24622516c4a04476b17a2dab57e8baa30d6e03",
-                "sha256:90d558489962fd4918143277a773316e56c72da56ec7aa3dc3dbbe20fdfed15b",
-                "sha256:923c0c831b7cfcb071580d3f46c4baf50f174be571576556269530f4bbd79d04",
-                "sha256:95f2a5796329323b8f0512e09dbb7a1860c46a39da62ecb2324f116fa8fdc85c",
-                "sha256:96b02a3dc4381e5494fad39be677abcb5e6634bf7b4fa83a6dd3112607547001",
-                "sha256:9f96df6923e21816da7e0ad3fd47dd8f94b2a5ce594e00677c0013018b813458",
-                "sha256:a10af20b82360ab00827f916a6058451b723b4e65030c5a18577c8b2de5b3389",
-                "sha256:a50aebfa173e157099939b17f18600f72f84eed3049e743b68ad15bd69b6bf99",
-                "sha256:a981a536974bbc7a512cf44ed14938cf01030a99e9b3a06dd59578882f06f985",
-                "sha256:a9a8e9031d613fd2009c182b69c7b2c1ef8239a0efb1df3f7c8da66d5dd3d537",
-                "sha256:ae5f4161f18c61806f411a13b0310bea87f987c7d2ecdbdaad0e94eb2e404238",
-                "sha256:aed38f6e4fb3f5d6bf81bfa990a07806be9d83cf7bacef998ab1a9bd660a581f",
-                "sha256:b01b88d45a6fcb69667cd6d2f7a9aeb4bf53760d7fc536bf679ec94fe9f3ff3d",
-                "sha256:b261ccdec7821281dade748d088bb6e9b69e6d15b30652b74cbbac25e280b796",
-                "sha256:b2b0a0c0517616b6869869f8c581d4eb2dd83a4d79e0ebcb7d373ef9956aeb0a",
-                "sha256:b4a23f61ce87adf89be746c8a8974fe1c823c891d8f86eb218bb957c924bb143",
-                "sha256:bd8f7df7d12c2db9fab40bdd87a7c09b1530128315d047a086fa3ae3435cb3a8",
-                "sha256:beb58fe5cdb101e3a055192ac291b7a21e3b7ef4f67fa1d74e331a7f2124341c",
-                "sha256:c002b4ffc0be611f0d9da932eb0f704fe2602a9a949d1f738e4c34c75b0863d5",
-                "sha256:c083af607d2515612056a31f0a8d9e0fcb5876b7bfc0abad3ecd275bc4ebc2d5",
-                "sha256:c180f51afb394e165eafe4ac2936a14bee3eb10debc9d9e4db8958fe36afe711",
-                "sha256:c235ebd9baae02f1b77bcea61bce332cb4331dc3617d254df3323aa01ab47bd4",
-                "sha256:cd70574b12bb8a4d2aaa0094515df2463cb429d8536cfb6c7ce983246983e5a6",
-                "sha256:d0eccceffcb53201b5bfebb52600a5fb483a20b61da9dbc885f8b103cbe7598c",
-                "sha256:d965bba47ddeec8cd560687584e88cf699fd28f192ceb452d1d7ee807c5597b7",
-                "sha256:db364eca23f876da6f9e16c9da0df51aa4f104a972735574842618b8c6d999d4",
-                "sha256:ddbb2551d7e0102e7252db79ba445cdab71b26640817ab1e3e3648dad515003b",
-                "sha256:deb6be0ac38ece9ba87dea880e438f25ca3eddfac8b002a2ec3d9183a454e8ae",
-                "sha256:e06ed3eb3218bc64786f7db41917d4e686cc4856944f53d5bdf83a6884432e12",
-                "sha256:e27ad930a842b4c5eb8ac0016b0a54f5aebbe679340c26101df33424142c143c",
-                "sha256:e537484df0d8f426ce2afb2d0f8e1c3d0b114b83f8850e5f2fbea0e797bd82ae",
-                "sha256:eb00ed941194665c332bf8e078baf037d6c35d7c4f3102ea2d4f16ca94a26dc8",
-                "sha256:eb6904c354526e758fda7167b33005998fb68c46fbc10e013ca97f21ca5c8887",
-                "sha256:eb8821e09e916165e160797a6c17edda0679379a4be5c716c260e836e122f54b",
-                "sha256:efcb3f6676480691518c177e3b465bcddf57cea040302f9f4e6e191af91174d4",
-                "sha256:f27273b60488abe721a075bcca6d7f3964f9f6f067c8c4c605743023d7d3944f",
-                "sha256:f30c3cb33b24454a82faecaf01b19c18562b1e89558fb6c56de4d9118a032fd5",
-                "sha256:fb69256e180cb6c8a894fee62b3afebae785babc1ee98b81cdf68bbca1987f33",
-                "sha256:fd1abc0d89e30cc4e02e4064dc67fcc51bd941eb395c502aac3ec19fab46b519",
-                "sha256:ff8fa367d09b717b2a17a052544193ad76cd49979c805768879cb63d9ca50561"
-            ],
-            "markers": "python_full_version >= '3.7.0'",
-            "version": "==3.3.2"
-        },
-        "colorama": {
-            "hashes": [
-                "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44",
-                "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"
-            ],
-            "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4, 3.5, 3.6'",
-            "version": "==0.4.6"
-        },
-        "commitizen": {
-            "hashes": [
-                "sha256:42c1d29ba6a64ddbc6d9952f4bcc2ac7094956e27e47e96c931895e2659e6cee",
-                "sha256:7e3272725216aa3049e258bb438e0097e07607712325f5ce71d9a0bdf7805370"
-            ],
-            "index": "pypi",
-            "version": "==3.18.0"
-        },
-        "decli": {
-            "hashes": [
-                "sha256:7815ac58617764e1a200d7cadac6315fcaacc24d727d182f9878dd6378ccf869",
-                "sha256:ed88ccb947701e8e5509b7945fda56e150e2ac74a69f25d47ac85ef30ab0c0f0"
-            ],
-            "markers": "python_version >= '3.7'",
-            "version": "==0.6.1"
-        },
-        "distlib": {
-            "hashes": [
-                "sha256:034db59a0b96f8ca18035f36290806a9a6e6bd9d1ff91e45a7f172eb17e51784",
-                "sha256:1530ea13e350031b6312d8580ddb6b27a104275a31106523b8f123787f494f64"
-            ],
-            "version": "==0.3.8"
-        },
-        "docutils": {
-            "hashes": [
-                "sha256:96f387a2c5562db4476f09f13bbab2192e764cac08ebbf3a34a95d9b1e4a59d6",
-                "sha256:f08a4e276c3a1583a86dce3e34aba3fe04d02bba2dd51ed16106244e8a923e3b"
-            ],
-            "markers": "python_version >= '3.7'",
-            "version": "==0.20.1"
-        },
-        "filelock": {
-            "hashes": [
-                "sha256:521f5f56c50f8426f5e03ad3b281b490a87ef15bc6c526f168290f0c7148d44e",
-                "sha256:57dbda9b35157b05fb3e58ee91448612eb674172fab98ee235ccb0b5bee19a1c"
-            ],
-            "markers": "python_version >= '3.8'",
-            "version": "==3.13.1"
-        },
-        "furo": {
-            "hashes": [
-                "sha256:3548be2cef45a32f8cdc0272d415fcb3e5fa6a0eb4ddfe21df3ecf1fe45a13cf",
-                "sha256:4d6b2fe3f10a6e36eb9cc24c1e7beb38d7a23fc7b3c382867503b7fcac8a1e02"
-            ],
-            "index": "pypi",
-            "version": "==2024.1.29"
-        },
-        "identify": {
-            "hashes": [
-                "sha256:10a7ca245cfcd756a554a7288159f72ff105ad233c7c4b9c6f0f4d108f5f6791",
-                "sha256:c4de0081837b211594f8e877a6b4fad7ca32bbfc1a9307fdd61c28bfe923f13e"
-            ],
-            "markers": "python_version >= '3.8'",
-            "version": "==2.5.35"
-        },
-        "idna": {
-            "hashes": [
-                "sha256:9ecdbbd083b06798ae1e86adcbfe8ab1479cf864e4ee30fe4e46a003d12491ca",
-                "sha256:c05567e9c24a6b9faaa835c4821bad0590fbb9d5779e7caa6e1cc4978e7eb24f"
-            ],
-            "markers": "python_version >= '3.5'",
-            "version": "==3.6"
-        },
-        "imagesize": {
-            "hashes": [
-                "sha256:0d8d18d08f840c19d0ee7ca1fd82490fdc3729b7ac93f49870406ddde8ef8d8b",
-                "sha256:69150444affb9cb0d5cc5a92b3676f0b2fb7cd9ae39e947a5e11a36b4497cd4a"
-            ],
-            "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'",
-            "version": "==1.4.1"
-        },
-        "importlib-metadata": {
-            "hashes": [
-                "sha256:198f568f3230878cb1b44fbd7975f87906c22336dba2e4a7f05278c281fbd792",
-                "sha256:f4bc4c0c070c490abf4ce96d715f68e95923320370efb66143df00199bb6c100"
-            ],
-            "markers": "python_version >= '3.8'",
-            "version": "==7.0.2"
-        },
-        "jinja2": {
-            "hashes": [
-                "sha256:7d6d50dd97d52cbc355597bd845fabfbac3f551e1f99619e39a35ce8c370b5fa",
-                "sha256:ac8bd6544d4bb2c9792bf3a159e80bba8fda7f07e81bc3aed565432d5925ba90"
-            ],
-            "markers": "python_version >= '3.7'",
-            "version": "==3.1.3"
-        },
-        "livereload": {
-            "hashes": [
-                "sha256:776f2f865e59fde56490a56bcc6773b6917366bce0c267c60ee8aaf1a0959869",
-                "sha256:ad4ac6f53b2d62bb6ce1a5e6e96f1f00976a32348afedcb4b6d68df2a1d346e4"
-            ],
-            "version": "==2.6.3"
-        },
-        "markdown-it-py": {
-            "hashes": [
-                "sha256:355216845c60bd96232cd8d8c40e8f9765cc86f46880e43a8fd22dc1a1a8cab1",
-                "sha256:e3f60a94fa066dc52ec76661e37c851cb232d92f9886b15cb560aaada2df8feb"
-            ],
-            "markers": "python_version >= '3.8'",
-            "version": "==3.0.0"
-        },
-        "markupsafe": {
-            "hashes": [
-                "sha256:00e046b6dd71aa03a41079792f8473dc494d564611a8f89bbbd7cb93295ebdcf",
-                "sha256:075202fa5b72c86ad32dc7d0b56024ebdbcf2048c0ba09f1cde31bfdd57bcfff",
-                "sha256:0e397ac966fdf721b2c528cf028494e86172b4feba51d65f81ffd65c63798f3f",
-                "sha256:17b950fccb810b3293638215058e432159d2b71005c74371d784862b7e4683f3",
-                "sha256:1f3fbcb7ef1f16e48246f704ab79d79da8a46891e2da03f8783a5b6fa41a9532",
-                "sha256:2174c595a0d73a3080ca3257b40096db99799265e1c27cc5a610743acd86d62f",
-                "sha256:2b7c57a4dfc4f16f7142221afe5ba4e093e09e728ca65c51f5620c9aaeb9a617",
-                "sha256:2d2d793e36e230fd32babe143b04cec8a8b3eb8a3122d2aceb4a371e6b09b8df",
-                "sha256:30b600cf0a7ac9234b2638fbc0fb6158ba5bdcdf46aeb631ead21248b9affbc4",
-                "sha256:397081c1a0bfb5124355710fe79478cdbeb39626492b15d399526ae53422b906",
-                "sha256:3a57fdd7ce31c7ff06cdfbf31dafa96cc533c21e443d57f5b1ecc6cdc668ec7f",
-                "sha256:3c6b973f22eb18a789b1460b4b91bf04ae3f0c4234a0a6aa6b0a92f6f7b951d4",
-                "sha256:3e53af139f8579a6d5f7b76549125f0d94d7e630761a2111bc431fd820e163b8",
-                "sha256:4096e9de5c6fdf43fb4f04c26fb114f61ef0bf2e5604b6ee3019d51b69e8c371",
-                "sha256:4275d846e41ecefa46e2015117a9f491e57a71ddd59bbead77e904dc02b1bed2",
-                "sha256:4c31f53cdae6ecfa91a77820e8b151dba54ab528ba65dfd235c80b086d68a465",
-                "sha256:4f11aa001c540f62c6166c7726f71f7573b52c68c31f014c25cc7901deea0b52",
-                "sha256:5049256f536511ee3f7e1b3f87d1d1209d327e818e6ae1365e8653d7e3abb6a6",
-                "sha256:58c98fee265677f63a4385256a6d7683ab1832f3ddd1e66fe948d5880c21a169",
-                "sha256:598e3276b64aff0e7b3451b72e94fa3c238d452e7ddcd893c3ab324717456bad",
-                "sha256:5b7b716f97b52c5a14bffdf688f971b2d5ef4029127f1ad7a513973cfd818df2",
-                "sha256:5dedb4db619ba5a2787a94d877bc8ffc0566f92a01c0ef214865e54ecc9ee5e0",
-                "sha256:619bc166c4f2de5caa5a633b8b7326fbe98e0ccbfacabd87268a2b15ff73a029",
-                "sha256:629ddd2ca402ae6dbedfceeba9c46d5f7b2a61d9749597d4307f943ef198fc1f",
-                "sha256:656f7526c69fac7f600bd1f400991cc282b417d17539a1b228617081106feb4a",
-                "sha256:6ec585f69cec0aa07d945b20805be741395e28ac1627333b1c5b0105962ffced",
-                "sha256:72b6be590cc35924b02c78ef34b467da4ba07e4e0f0454a2c5907f473fc50ce5",
-                "sha256:7502934a33b54030eaf1194c21c692a534196063db72176b0c4028e140f8f32c",
-                "sha256:7a68b554d356a91cce1236aa7682dc01df0edba8d043fd1ce607c49dd3c1edcf",
-                "sha256:7b2e5a267c855eea6b4283940daa6e88a285f5f2a67f2220203786dfa59b37e9",
-                "sha256:823b65d8706e32ad2df51ed89496147a42a2a6e01c13cfb6ffb8b1e92bc910bb",
-                "sha256:8590b4ae07a35970728874632fed7bd57b26b0102df2d2b233b6d9d82f6c62ad",
-                "sha256:8dd717634f5a044f860435c1d8c16a270ddf0ef8588d4887037c5028b859b0c3",
-                "sha256:8dec4936e9c3100156f8a2dc89c4b88d5c435175ff03413b443469c7c8c5f4d1",
-                "sha256:97cafb1f3cbcd3fd2b6fbfb99ae11cdb14deea0736fc2b0952ee177f2b813a46",
-                "sha256:a17a92de5231666cfbe003f0e4b9b3a7ae3afb1ec2845aadc2bacc93ff85febc",
-                "sha256:a549b9c31bec33820e885335b451286e2969a2d9e24879f83fe904a5ce59d70a",
-                "sha256:ac07bad82163452a6884fe8fa0963fb98c2346ba78d779ec06bd7a6262132aee",
-                "sha256:ae2ad8ae6ebee9d2d94b17fb62763125f3f374c25618198f40cbb8b525411900",
-                "sha256:b91c037585eba9095565a3556f611e3cbfaa42ca1e865f7b8015fe5c7336d5a5",
-                "sha256:bc1667f8b83f48511b94671e0e441401371dfd0f0a795c7daa4a3cd1dde55bea",
-                "sha256:bec0a414d016ac1a18862a519e54b2fd0fc8bbfd6890376898a6c0891dd82e9f",
-                "sha256:bf50cd79a75d181c9181df03572cdce0fbb75cc353bc350712073108cba98de5",
-                "sha256:bff1b4290a66b490a2f4719358c0cdcd9bafb6b8f061e45c7a2460866bf50c2e",
-                "sha256:c061bb86a71b42465156a3ee7bd58c8c2ceacdbeb95d05a99893e08b8467359a",
-                "sha256:c8b29db45f8fe46ad280a7294f5c3ec36dbac9491f2d1c17345be8e69cc5928f",
-                "sha256:ce409136744f6521e39fd8e2a24c53fa18ad67aa5bc7c2cf83645cce5b5c4e50",
-                "sha256:d050b3361367a06d752db6ead6e7edeb0009be66bc3bae0ee9d97fb326badc2a",
-                "sha256:d283d37a890ba4c1ae73ffadf8046435c76e7bc2247bbb63c00bd1a709c6544b",
-                "sha256:d9fad5155d72433c921b782e58892377c44bd6252b5af2f67f16b194987338a4",
-                "sha256:daa4ee5a243f0f20d528d939d06670a298dd39b1ad5f8a72a4275124a7819eff",
-                "sha256:db0b55e0f3cc0be60c1f19efdde9a637c32740486004f20d1cff53c3c0ece4d2",
-                "sha256:e61659ba32cf2cf1481e575d0462554625196a1f2fc06a1c777d3f48e8865d46",
-                "sha256:ea3d8a3d18833cf4304cd2fc9cbb1efe188ca9b5efef2bdac7adc20594a0e46b",
-                "sha256:ec6a563cff360b50eed26f13adc43e61bc0c04d94b8be985e6fb24b81f6dcfdf",
-                "sha256:f5dfb42c4604dddc8e4305050aa6deb084540643ed5804d7455b5df8fe16f5e5",
-                "sha256:fa173ec60341d6bb97a89f5ea19c85c5643c1e7dedebc22f5181eb73573142c5",
-                "sha256:fa9db3f79de01457b03d4f01b34cf91bc0048eb2c3846ff26f66687c2f6d16ab",
-                "sha256:fce659a462a1be54d2ffcacea5e3ba2d74daa74f30f5f143fe0c58636e355fdd",
-                "sha256:ffee1f21e5ef0d712f9033568f8344d5da8cc2869dbd08d87c84656e6a2d2f68"
-            ],
-            "markers": "python_version >= '3.7'",
-            "version": "==2.1.5"
-        },
-        "mdit-py-plugins": {
-            "hashes": [
-                "sha256:b51b3bb70691f57f974e257e367107857a93b36f322a9e6d44ca5bf28ec2def9",
-                "sha256:d8ab27e9aed6c38aa716819fedfde15ca275715955f8a185a8e1cf90fb1d2c1b"
-            ],
-            "markers": "python_version >= '3.8'",
-            "version": "==0.4.0"
-        },
-        "mdurl": {
-            "hashes": [
-                "sha256:84008a41e51615a49fc9966191ff91509e3c40b939176e643fd50a5c2196b8f8",
-                "sha256:bb413d29f5eea38f31dd4754dd7377d4465116fb207585f97bf925588687c1ba"
-            ],
-            "markers": "python_version >= '3.7'",
-            "version": "==0.1.2"
-        },
-        "myst-parser": {
-            "hashes": [
-                "sha256:7c36344ae39c8e740dad7fdabf5aa6fc4897a813083c6cc9990044eb93656b14",
-                "sha256:ea929a67a6a0b1683cdbe19b8d2e724cd7643f8aa3e7bb18dd65beac3483bead"
-            ],
-            "index": "pypi",
-            "version": "==2.0.0"
-        },
-        "nodeenv": {
-            "hashes": [
-                "sha256:d51e0c37e64fbf47d017feac3145cdbb58836d7eee8c6f6d3b6880c5456227d2",
-                "sha256:df865724bb3c3adc86b3876fa209771517b0cfe596beff01a92700e0e8be4cec"
-            ],
-            "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4, 3.5, 3.6'",
-            "version": "==1.8.0"
-        },
-        "packaging": {
-            "hashes": [
-                "sha256:2ddfb553fdf02fb784c234c7ba6ccc288296ceabec964ad2eae3777778130bc5",
-                "sha256:eb82c5e3e56209074766e6885bb04b8c38a0c015d0a30036ebe7ece34c9989e9"
-            ],
-            "markers": "python_version >= '3.7'",
-            "version": "==24.0"
-        },
-        "platformdirs": {
-            "hashes": [
-                "sha256:0614df2a2f37e1a662acbd8e2b25b92ccf8632929bc6d43467e17fe89c75e068",
-                "sha256:ef0cc731df711022c174543cb70a9b5bd22e5a9337c8624ef2c2ceb8ddad8768"
-            ],
-            "markers": "python_version >= '3.8'",
-            "version": "==4.2.0"
-        },
-        "pre-commit": {
-            "hashes": [
-                "sha256:ba637c2d7a670c10daedc059f5c49b5bd0aadbccfcd7ec15592cf9665117532c",
-                "sha256:c3ef34f463045c88658c5b99f38c1e297abdcc0ff13f98d3370055fbbfabc67e"
-            ],
-            "index": "pypi",
-            "version": "==3.6.2"
-        },
-        "prompt-toolkit": {
-            "hashes": [
-                "sha256:3e163f254bef5a03b146397d7c1963bd3e2812f0964bb9a24e6ec761fd28db63",
-                "sha256:aa64ad242a462c5ff0363a7b9cfe696c20d55d9fc60c11fd8e632d064804d305"
-            ],
-            "markers": "python_full_version >= '3.6.2'",
-            "version": "==3.0.36"
-        },
-        "pygments": {
-            "hashes": [
-                "sha256:b27c2826c47d0f3219f29554824c30c5e8945175d888647acd804ddd04af846c",
-                "sha256:da46cec9fd2de5be3a8a784f434e4c4ab670b4ff54d605c4c2717e9d49c4c367"
-            ],
-            "markers": "python_version >= '3.7'",
-            "version": "==2.17.2"
-        },
-        "pyyaml": {
-            "hashes": [
-                "sha256:04ac92ad1925b2cff1db0cfebffb6ffc43457495c9b3c39d3fcae417d7125dc5",
-                "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc",
-                "sha256:0d3304d8c0adc42be59c5f8a4d9e3d7379e6955ad754aa9d6ab7a398b59dd1df",
-                "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741",
-                "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206",
-                "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27",
-                "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595",
-                "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62",
-                "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98",
-                "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696",
-                "sha256:326c013efe8048858a6d312ddd31d56e468118ad4cdeda36c719bf5bb6192290",
-                "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9",
-                "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d",
-                "sha256:49a183be227561de579b4a36efbb21b3eab9651dd81b1858589f796549873dd6",
-                "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867",
-                "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47",
-                "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486",
-                "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6",
-                "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3",
-                "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007",
-                "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938",
-                "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0",
-                "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c",
-                "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735",
-                "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d",
-                "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28",
-                "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4",
-                "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba",
-                "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8",
-                "sha256:a08c6f0fe150303c1c6b71ebcd7213c2858041a7e01975da3a99aed1e7a378ef",
-                "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5",
-                "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd",
-                "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3",
-                "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0",
-                "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515",
-                "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c",
-                "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c",
-                "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924",
-                "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34",
-                "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43",
-                "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859",
-                "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673",
-                "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54",
-                "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a",
-                "sha256:e7d73685e87afe9f3b36c799222440d6cf362062f78be1013661b00c5c6f678b",
-                "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab",
-                "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa",
-                "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c",
-                "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585",
-                "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d",
-                "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"
-            ],
-            "markers": "python_version >= '3.6'",
-            "version": "==6.0.1"
-        },
-        "questionary": {
-            "hashes": [
-                "sha256:8ab9a01d0b91b68444dff7f6652c1e754105533f083cbe27597c8110ecc230a2",
-                "sha256:bcce898bf3dbb446ff62830c86c5c6fb9a22a54146f0f5597d3da43b10d8fc8b"
-            ],
-            "markers": "python_version >= '3.8'",
-            "version": "==2.0.1"
-        },
-        "requests": {
-            "hashes": [
-                "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f",
-                "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1"
-            ],
-            "markers": "python_version >= '3.7'",
-            "version": "==2.31.0"
-        },
-        "setuptools": {
-            "hashes": [
-                "sha256:02fa291a0471b3a18b2b2481ed902af520c69e8ae0919c13da936542754b4c56",
-                "sha256:5c0806c7d9af348e6dd3777b4f4dbb42c7ad85b190104837488eab9a7c945cf8"
-            ],
-            "markers": "python_version >= '3.8'",
-            "version": "==69.1.1"
-        },
-        "six": {
-            "hashes": [
-                "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926",
-                "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"
-            ],
-            "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'",
-            "version": "==1.16.0"
-        },
-        "snowballstemmer": {
-            "hashes": [
-                "sha256:09b16deb8547d3412ad7b590689584cd0fe25ec8db3be37788be3810cbf19cb1",
-                "sha256:c8e1716e83cc398ae16824e5572ae04e0d9fc2c6b985fb0f900f5f0c96ecba1a"
-            ],
-            "version": "==2.2.0"
-        },
-        "soupsieve": {
-            "hashes": [
-                "sha256:5663d5a7b3bfaeee0bc4372e7fc48f9cff4940b3eec54a6451cc5299f1097690",
-                "sha256:eaa337ff55a1579b6549dc679565eac1e3d000563bcb1c8ab0d0fefbc0c2cdc7"
-            ],
-            "markers": "python_version >= '3.8'",
-            "version": "==2.5"
-        },
-        "sphinx": {
-            "hashes": [
-                "sha256:1e09160a40b956dc623c910118fa636da93bd3ca0b9876a7b3df90f07d691560",
-                "sha256:9a5160e1ea90688d5963ba09a2dcd8bdd526620edbb65c328728f1b2228d5ab5"
-            ],
-            "index": "pypi",
-            "version": "==7.2.6"
-        },
-        "sphinx-autobuild": {
-            "hashes": [
-                "sha256:63fd87ab7505872a89aef468ce6503f65e794a195f4ae62269db3b85b72d4854",
-                "sha256:cb9d2121a176d62d45471624872afc5fad7755ad662738abe400ecf4a7954303"
-            ],
-            "index": "pypi",
-            "version": "==2024.2.4"
-        },
-        "sphinx-basic-ng": {
-            "hashes": [
-                "sha256:9ec55a47c90c8c002b5960c57492ec3021f5193cb26cebc2dc4ea226848651c9",
-                "sha256:eb09aedbabfb650607e9b4b68c9d240b90b1e1be221d6ad71d61c52e29f7932b"
-            ],
-            "markers": "python_version >= '3.7'",
-            "version": "==1.0.0b2"
-        },
-        "sphinx-copybutton": {
-            "hashes": [
-                "sha256:4cf17c82fb9646d1bc9ca92ac280813a3b605d8c421225fd9913154103ee1fbd",
-                "sha256:fb543fd386d917746c9a2c50360c7905b605726b9355cd26e9974857afeae06e"
-            ],
-            "index": "pypi",
-            "version": "==0.5.2"
-        },
-        "sphinx-inline-tabs": {
-            "hashes": [
-                "sha256:06809ac613f7c48ddd6e2fa588413e3fe92cff2397b56e2ccf0b0218f9ef6a78",
-                "sha256:5df2f13f602c158f3f5f6c509e008aeada199a8c76d97ba3aa2822206683bebc"
-            ],
-            "index": "pypi",
-            "version": "==2023.4.21"
-        },
-        "sphinx-tippy": {
-            "hashes": [
-                "sha256:bc5a012dd13d079d2049727617b4c52f7fb9779510f1784571bab1550c73e621",
-                "sha256:e1004bc0bf0463274c603065ea961f88b14cd2616a1438264f1fedfc280db1aa"
-            ],
-            "index": "pypi",
-            "version": "==0.4.1"
-        },
-        "sphinxcontrib-applehelp": {
-            "hashes": [
-                "sha256:c40a4f96f3776c4393d933412053962fac2b84f4c99a7982ba42e09576a70619",
-                "sha256:cb61eb0ec1b61f349e5cc36b2028e9e7ca765be05e49641c97241274753067b4"
-            ],
-            "markers": "python_version >= '3.9'",
-            "version": "==1.0.8"
-        },
-        "sphinxcontrib-devhelp": {
-            "hashes": [
-                "sha256:6485d09629944511c893fa11355bda18b742b83a2b181f9a009f7e500595c90f",
-                "sha256:9893fd3f90506bc4b97bdb977ceb8fbd823989f4316b28c3841ec128544372d3"
-            ],
-            "markers": "python_version >= '3.9'",
-            "version": "==1.0.6"
-        },
-        "sphinxcontrib-htmlhelp": {
-            "hashes": [
-                "sha256:0dc87637d5de53dd5eec3a6a01753b1ccf99494bd756aafecd74b4fa9e729015",
-                "sha256:393f04f112b4d2f53d93448d4bce35842f62b307ccdc549ec1585e950bc35e04"
-            ],
-            "markers": "python_version >= '3.9'",
-            "version": "==2.0.5"
-        },
-        "sphinxcontrib-jsmath": {
-            "hashes": [
-                "sha256:2ec2eaebfb78f3f2078e73666b1415417a116cc848b72e5172e596c871103178",
-                "sha256:a9925e4a4587247ed2191a22df5f6970656cb8ca2bd6284309578f2153e0c4b8"
-            ],
-            "markers": "python_version >= '3.5'",
-            "version": "==1.0.1"
-        },
-        "sphinxcontrib-qthelp": {
-            "hashes": [
-                "sha256:053dedc38823a80a7209a80860b16b722e9e0209e32fea98c90e4e6624588ed6",
-                "sha256:e2ae3b5c492d58fcbd73281fbd27e34b8393ec34a073c792642cd8e529288182"
-            ],
-            "markers": "python_version >= '3.9'",
-            "version": "==1.0.7"
-        },
-        "sphinxcontrib-serializinghtml": {
-            "hashes": [
-                "sha256:326369b8df80a7d2d8d7f99aa5ac577f51ea51556ed974e7716cfd4fca3f6cb7",
-                "sha256:93f3f5dc458b91b192fe10c397e324f262cf163d79f3282c158e8436a2c4511f"
-            ],
-            "markers": "python_version >= '3.9'",
-            "version": "==1.1.10"
-        },
-        "sphinxcontrib-svgbob": {
-            "hashes": [
-                "sha256:004c0f4072544e844db33c3def31c9706003b1a00e9f4efbdaec48ebc5467ef6",
-                "sha256:07a10cd490bc53d3a9d800ade846cfe21d7f35845c0f391b15e6f88b4c4f3850",
-                "sha256:123b38e26ba4481910f683a7ff06e8f20d5895acb66d927dd588f4173d9e4727",
-                "sha256:1a4c676159cf503fdcfa2d86568014dd4918798ab8418a0bb57bbb71554c0f51",
-                "sha256:1d3fa3a4fad4ba4b6a7b17e454106a13058f8fc86135c64db05599ea26cf5f5b",
-                "sha256:3c87b17af9fb8aa28fc22746ec96d308088753d3a2ee51261407091060bea994",
-                "sha256:79b9aafd3f58fa2baf25bfb391834359c75398ef77660fb7515c31e3af1413c3",
-                "sha256:7e77f4d6a162b424a048abba478290e5da602f2f23636e27eff2c9728d751115",
-                "sha256:7f402369fa116120416171c38d383ecc97fcf6d31c16cb4e0f79933b931fc34d",
-                "sha256:a4add4f89a642b3e980c2f3bfe3da66ef6b520ec8eccbb9ff626dc9cb9758cc2",
-                "sha256:abf91c43890165f83cfca9b52442f09661aaec062172a749854e448def5dcd19",
-                "sha256:ad7c84aa986f4f3e15baa0cac8f3ec3e490de721d88b8d43d9344a02f8fc6133",
-                "sha256:aeec747011bc0a2d216b20c09c650d44638d1d321091bac5d9c00a9adc858347",
-                "sha256:be181768392300ccedee70c8918e7a66ff19471b7cfe0c320fb24f2abbf71972",
-                "sha256:c4ef2babe43545cc4521010a6c762a64ae8e346b0bb591e11c72819085d3012f",
-                "sha256:f50d37c46e03aaaaac899a8438bd8565f0921c3f7b7f3f0a4f7fff5cf4986067"
-            ],
-            "index": "pypi",
-            "version": "==0.2.1"
-        },
-        "termcolor": {
-            "hashes": [
-                "sha256:9297c0df9c99445c2412e832e882a7884038a25617c60cea2ad69488d4040d63",
-                "sha256:aab9e56047c8ac41ed798fa36d892a37aca6b3e9159f3e0c24bc64a9b3ac7b7a"
-            ],
-            "markers": "python_version >= '3.8'",
-            "version": "==2.4.0"
-        },
-        "tomlkit": {
-            "hashes": [
-                "sha256:5cd82d48a3dd89dee1f9d64420aa20ae65cfbd00668d6f094d7578a78efbb77b",
-                "sha256:7ca1cfc12232806517a8515047ba66a19369e71edf2439d0f5824f91032b6cc3"
-            ],
-            "markers": "python_version >= '3.7'",
-            "version": "==0.12.4"
-        },
-        "tornado": {
-            "hashes": [
-                "sha256:02ccefc7d8211e5a7f9e8bc3f9e5b0ad6262ba2fbb683a6443ecc804e5224ce0",
-                "sha256:10aeaa8006333433da48dec9fe417877f8bcc21f48dda8d661ae79da357b2a63",
-                "sha256:27787de946a9cffd63ce5814c33f734c627a87072ec7eed71f7fc4417bb16263",
-                "sha256:6f8a6c77900f5ae93d8b4ae1196472d0ccc2775cc1dfdc9e7727889145c45052",
-                "sha256:71ddfc23a0e03ef2df1c1397d859868d158c8276a0603b96cf86892bff58149f",
-                "sha256:72291fa6e6bc84e626589f1c29d90a5a6d593ef5ae68052ee2ef000dfd273dee",
-                "sha256:88b84956273fbd73420e6d4b8d5ccbe913c65d31351b4c004ae362eba06e1f78",
-                "sha256:e43bc2e5370a6a8e413e1e1cd0c91bedc5bd62a74a532371042a18ef19e10579",
-                "sha256:f0251554cdd50b4b44362f73ad5ba7126fc5b2c2895cc62b14a1c2d7ea32f212",
-                "sha256:f7894c581ecdcf91666a0912f18ce5e757213999e183ebfc2c3fdbf4d5bd764e",
-                "sha256:fd03192e287fbd0899dd8f81c6fb9cbbc69194d2074b38f384cb6fa72b80e9c2"
-            ],
-            "markers": "python_version > '2.7'",
-            "version": "==6.4"
-        },
-        "urllib3": {
-            "hashes": [
-                "sha256:450b20ec296a467077128bff42b73080516e71b56ff59a60a02bef2232c4fa9d",
-                "sha256:d0570876c61ab9e520d776c38acbbb5b05a776d3f9ff98a5c8fd5162a444cf19"
-            ],
-            "markers": "python_version >= '3.8'",
-            "version": "==2.2.1"
-        },
-        "virtualenv": {
-            "hashes": [
-                "sha256:961c026ac520bac5f69acb8ea063e8a4f071bcc9457b9c1f28f6b085c511583a",
-                "sha256:e08e13ecdca7a0bd53798f356d5831434afa5b07b93f0abdf0797b7a06ffe197"
-            ],
-            "markers": "python_version >= '3.7'",
-            "version": "==20.25.1"
-        },
-        "wcwidth": {
-            "hashes": [
-                "sha256:3da69048e4540d84af32131829ff948f1e022c1c6bdb8d6102117aac784f6859",
-                "sha256:72ea0c06399eb286d978fdedb6923a9eb47e1c486ce63e9b4e64fc18303972b5"
-            ],
-            "version": "==0.2.13"
-        },
-        "zipp": {
-            "hashes": [
-                "sha256:0e923e726174922dce09c53c59ad483ff7bbb8e572e00c7f7c46b88556409f31",
-                "sha256:84e64a1c28cf7e91ed2078bb8cc8c259cb19b76942096c8d7b84947690cabaf0"
-            ],
-            "markers": "python_version >= '3.8'",
-            "version": "==3.17.0"
-        }
-    },
-    "develop": {}
-}
diff --git a/README.md b/README.md
deleted file mode 100644
index 633c95ee3614245a4c4154a30194513ff18545f9..0000000000000000000000000000000000000000
--- a/README.md
+++ /dev/null
@@ -1,38 +0,0 @@
-# Documentação (oficial?) de DevOps do C3SL
-
-Documentação criada pelos roots para os e baseada em ReadTheDocs.
-
-[[_TOC_]]
-
-# Organização do repositório
-
-A gestão dos pacotes é feita através do pipenv. Para instalar use `pipenv install`,
-e para entrar no ambiente virtual, `pipenv shell`, onde será possível rodar
-`pipenv run make html` para gerar a documentação localmente. Há também um modo
-de desenvolvimento que pode ser invocado rodando `pipenv run make dev`.
-
-Para usar o pre-commit hook que reformata os arquivos documentação ao fazer
-commit, depois de clonar o repositório rode `pipenv run pre-commit install`.
-
-O repositório é dedicado a documentação e está organizado da seguinte maneira:
-  * `build/`: Diretório onde os arquivos compilados vão.
-  * `cz.yaml`: Arquivo de configuração do commitizen.
-  * `.git`: Diretório de configuração do git.
-  * `.gitignore`: Arquivo com padrões de nomes que o git deve ignorar ao realizar `git add` ou `git stage`.
-  * `Makefile`: Makefile para fazer o build da documentação, resultado vai para o diretório `build`.
-  * `Pipfile`: Arquivo do pipenv para criar ambiente do python para fazer build.
-  * `Pipfile.lock`: Arquivo do pipenv para criar ambiente do python para fazer build.
-  * `.pre-commit-config.yaml`: Arquivo de configuração do pre-commit.
-  * `README.md`: Este arquivo.
-  * `.readthedocs.yaml`: Arquivo de configuração do readthedocs.
-  * `requirements.txt`: Arquivos com listas de modulos python para fazer build da documentação, deve ser igual ao `Pipfile`, pode ser gerado com `pipenv requirements > requirements.txt`.
-  * `LICENSE`: Arquivo de licença.
-  * `.gitlab-ci.yml`: Arquivo do Gitlab-CI.
-  * `source/`: Diretório da documentação.
-    * `conf.py`: Arquivo de configuração do sphinx.
-    * `index.md`: Primeira página da documentação.
-    * `pages/`: Diretório  com as páginas da documentação.
-    * `_static/`: Diretório para armazenar arquivos estáticos, como imagens, gifs e etc.
-    * `_templates/`: Diretório para armazenar estilização das páginas, css, html e etc.
-    * `_ext/`: Diretório para armazenar extensões customizadas.
-
diff --git a/assets/icons/logo.svg b/assets/icons/logo.svg
new file mode 100644
index 0000000000000000000000000000000000000000..934032c0bf3d465e921050115c2dce0fb40ed170
--- /dev/null
+++ b/assets/icons/logo.svg
@@ -0,0 +1,124 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+   sodipodi:docname="logo.svg"
+   inkscape:version="1.4 (e7c3feb100, 2024-10-09)"
+   id="svg219"
+   version="1.1"
+   viewBox="0 0 75.590556 30.236221"
+   height="8mm"
+   width="20mm"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:dc="http://purl.org/dc/elements/1.1/">
+  <defs
+     id="defs213" />
+  <sodipodi:namedview
+     inkscape:window-maximized="1"
+     inkscape:window-y="0"
+     inkscape:window-x="0"
+     inkscape:window-height="792"
+     inkscape:window-width="1536"
+     inkscape:showpageshadow="false"
+     fit-margin-bottom="0"
+     fit-margin-right="0"
+     fit-margin-left="0"
+     fit-margin-top="0"
+     showgrid="false"
+     inkscape:document-rotation="0"
+     inkscape:current-layer="layer2"
+     inkscape:document-units="px"
+     inkscape:cy="0.17130932"
+     inkscape:cx="31.178297"
+     inkscape:zoom="2.918697"
+     inkscape:pageshadow="2"
+     inkscape:pageopacity="0"
+     borderopacity="1.0"
+     bordercolor="#666666"
+     pagecolor="#262626"
+     id="base"
+     inkscape:pagecheckerboard="0"
+     inkscape:snap-bbox="true"
+     inkscape:snap-bbox-midpoints="true"
+     inkscape:snap-bbox-edge-midpoints="true"
+     inkscape:bbox-nodes="true"
+     inkscape:bbox-paths="true"
+     showguides="true"
+     inkscape:guide-bbox="true"
+     inkscape:deskcolor="#d1d1d1" />
+  <metadata
+     id="metadata216">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     transform="translate(-123.6381,348.45982)"
+     id="layer1"
+     inkscape:groupmode="layer"
+     inkscape:label="Canvas" />
+  <g
+     inkscape:label="Contents"
+     id="layer2"
+     inkscape:groupmode="layer"
+     transform="translate(-383.6381,271.31696)">
+    <g
+       id="g202"
+       transform="matrix(0.04437962,0,0,0.04437962,366.61239,-259.27601)">
+      <g
+         id="g31475"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:40px;line-height:1.25;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro Bold';letter-spacing:0px;word-spacing:0px;fill:#a6e65a;fill-opacity:1;stroke:none;stroke-width:0.681721"
+         transform="matrix(14.905385,0,0,14.905385,-3156.7669,-8490.4627)"
+         aria-label=".">
+        <path
+           id="path31473"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Rubik;-inkscape-font-specification:'Rubik Bold';fill:#a6e65a;fill-opacity:1;stroke-width:0.681721"
+           d="m 238.52523,586.22134 q -0.44,0 -0.72,-0.28 -0.28,-0.32 -0.28,-0.72 v -5.08 q 0,-0.44 0.28,-0.72 0.28,-0.28 0.72,-0.28 h 5.08 q 0.4,0 0.68,0.28 0.32,0.28 0.32,0.72 v 5.08 q 0,0.4 -0.32,0.72 -0.28,0.28 -0.68,0.28 z"
+           inkscape:connector-curvature="0" />
+      </g>
+      <g
+         id="g31479"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:40px;line-height:1.25;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro Bold';letter-spacing:0px;word-spacing:0px;fill:#a6e65a;fill-opacity:1;stroke:none;stroke-width:0.681721"
+         transform="matrix(14.905385,0,0,14.905385,-3003.0173,-8562.5888)"
+         aria-label="/">
+        <path
+           id="path31477"
+           style="font-style:normal;font-variant:normal;font-weight:900;font-stretch:normal;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro Heavy';fill:#a6e65a;fill-opacity:1;stroke-width:0.681721"
+           d="m 237.92523,591.06016 13.2,-34.8 h 5.68 l -13.2,34.8 z"
+           inkscape:connector-curvature="0" />
+      </g>
+      <path
+         d="m 1014.3685,-96.728428 q -49.2403,0 -75.27573,36.789958 -26.03544,36.788618 -26.03544,100.744938 0,64.523122 23.77144,100.179472 24.33784,35.09089 77.53973,35.09089 24.9035,0 49.2413,-5.65865 24.9034,-5.66 53.7685,-15.84906 v 71.88085 q -26.6019,10.75318 -52.6365,15.84771 -26.0354,5.09319 -58.2964,5.09319 -62.25904,0 -103.00965,-25.46863 -40.18515,-26.03543 -59.4286,-72.44631 -19.2433,-46.97634 -19.2433,-109.234925 0,-61.126323 22.0729,-108.104002 22.07384,-46.976343 63.95659,-73.577233 42.44914,-26.60224 103.57516,-26.60224 29.9971,0 59.995,7.92453 30.5627,7.35772 58.2965,20.37544 l -27.7338,69.61631 q -22.6395,-10.753184 -45.8444,-18.677711 -22.6394,-7.924527 -44.7133,-7.924527 z"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:73.1627px;line-height:1.25;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#08c6ab;fill-opacity:1;stroke:none;stroke-width:6.89537"
+         id="path31481"
+         inkscape:connector-curvature="0" />
+      <path
+         d="m 1453.8772,-71.82392 q 0,41.881808 -25.4698,66.7849759 -24.9034,24.9045081 -61.6917,33.9599611 v 1.69773 q 48.674,5.659994 73.5773,29.430895 25.4699,23.772241 25.4699,63.957658 0,35.08955 -17.5458,63.38952 -16.9793,27.73316 -53.2029,44.14634 -35.657,15.84771 -92.2551,15.84771 -65.6541,0 -116.5929,-22.07317 v -72.44631 q 26.0355,13.01772 54.334,19.80998 28.8659,6.79092 53.2028,6.79092 45.8453,0 63.9566,-15.84637 18.6777,-15.84772 18.6777,-44.71315 0,-16.97998 -8.4896,-28.298627 -8.4905,-11.88545 -29.9979,-17.546784 -20.9409,-6.225457 -58.8621,-6.225457 h -30.5634 V 1.1878528 h 31.129 q 37.3556,0 56.5989,-6.7922603 19.8098,-7.3577235 26.601,-19.2431745 7.3576,-12.452253 7.3576,-28.298628 0,-21.507707 -13.5832,-33.393158 -13.0177,-12.452254 -44.1467,-12.452254 -28.8651,0 -50.3725,10.187721 -20.9418,9.622257 -35.657,19.243174 l -39.6197,-58.861793 q 23.7714,-16.97998 55.467,-28.29996 32.261,-11.31999 76.4078,-11.31999 62.258,0 98.4816,25.46997 36.7891,24.90317 36.7891,70.74858 z"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:73.1627px;line-height:1.25;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#a6e65a;fill-opacity:1;stroke:none;stroke-width:6.89537"
+         id="path31483"
+         inkscape:connector-curvature="0" />
+      <path
+         d="m 1783.1277,129.66596 q 0,53.76993 -39.0532,86.03083 -38.4858,31.69408 -109.8009,31.69408 -63.9557,0 -114.328,-24.33636 v -79.80403 q 28.8641,12.45091 59.4284,23.20409 31.1291,10.18906 61.6926,10.18906 31.6947,0 44.7124,-11.88545 13.5832,-12.45225 13.5832,-31.12996 0,-15.28091 -10.7536,-26.03544 -10.1873,-10.75318 -27.7331,-19.809973 -17.5458,-9.620918 -40.1851,-20.375441 -14.1489,-6.790921 -30.5626,-15.846374 -16.4137,-9.622257 -31.6955,-23.206778 -14.7153,-14.148644 -24.337,-33.9586215 -9.6217,-19.8086375 -9.6217,-47.5418025 0,-54.3354 36.7882,-84.33176 36.7892,-30.5645 100.1801,-30.5645 31.6947,0 59.9941,7.35906 28.865,7.35773 59.9941,20.94091 l -27.7331,66.786313 q -27.7329,-11.319987 -49.8067,-17.545444 -22.0729,-6.226797 -45.2788,-6.226797 -24.337,0 -37.3547,11.321327 -13.0177,11.318647 -13.0177,29.429555 0,21.509047 19.2433,33.959961 19.2434,12.4509141 57.1644,30.5631615 31.1292,14.7154475 52.6365,30.5631615 22.0739,15.847714 33.9596,37.355421 11.8857,21.507708 11.8848,53.201801 z"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:73.1627px;line-height:1.25;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#08c6ab;fill-opacity:1;stroke:none;stroke-width:6.89537"
+         id="path31485"
+         inkscape:connector-curvature="0" />
+      <path
+         d="m 1837.31,247.39087 v -404.11335 h 85.4639 v 333.36477 h 164.1358 v 70.74858 z"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:73.1627px;line-height:1.25;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#08c6ab;fill-opacity:1;stroke:none;stroke-width:6.89537"
+         id="path31487"
+         inkscape:connector-curvature="0" />
+    </g>
+  </g>
+  <inkscape:templateinfo>
+    <inkscape:name>Dark Canvas</inkscape:name>
+    <inkscape:date>2020-07-13</inkscape:date>
+  </inkscape:templateinfo>
+</svg>
diff --git a/content/pt-br/_index.md b/content/pt-br/_index.md
new file mode 100644
index 0000000000000000000000000000000000000000..beb06a970735d5e6554fb001b7c9256a43ce4b04
--- /dev/null
+++ b/content/pt-br/_index.md
@@ -0,0 +1,8 @@
+---
+title: Documentação
+menu: {main: {weight: 20}}
+type: docs
+---
+
+Este repositório reúne a documentação técnica mantida pela equipe de Root do
+C3SL feita para consumo dos desenvolvedores que utilizam a infraestrutura do C3SL.
diff --git a/content/pt-br/concepts/_index.md b/content/pt-br/concepts/_index.md
new file mode 100644
index 0000000000000000000000000000000000000000..6d9b046c0711940602428368750204a1d1a7b636
--- /dev/null
+++ b/content/pt-br/concepts/_index.md
@@ -0,0 +1,5 @@
+---
+title: Conceitos
+description: Seção de conceitos
+type: docs
+---
diff --git a/source/pages/concepts/docker.md b/content/pt-br/concepts/docker.md
similarity index 91%
rename from source/pages/concepts/docker.md
rename to content/pt-br/concepts/docker.md
index 21f368c1d45b158922f8735c7a07635783f8f1a6..64aca71695f5587b47cfa52f5702fd8a2484bdf9 100644
--- a/source/pages/concepts/docker.md
+++ b/content/pt-br/concepts/docker.md
@@ -1,22 +1,25 @@
-# Docker
+---
+title: Docker
+type: docs
+---
 
-Este é essencialmente um 'TLDR' da documentação oficial[^cite_docker_docs]. A
+Este é essencialmente um "TLDR" da documentação oficial[^cite_docker_docs]. A
 ideia é fazer com que o leitor tenha uma ideia básica do funcionamento e dos
 conceitos chave de Docker.
 
 ## O que é Docker?
 
-'Docker é uma plataforma aberta para desenvolver, transportar e executar
+"Docker é uma plataforma aberta para desenvolver, transportar e executar
 aplicações. Docker permite **separar aplicações de sua infraestrutura**, o
 que viabiliza entregar software mais rápido. Com Docker é possível gerenciar
 a infraestrutura do mesmo jeito que se gerenciam as aplicações. Ao tirar
 vantagem das metodologias de transporte, teste e implantação de código do
 Docker é possível reduzir significativamente o atraso ente escrever código
-e executar ele em produção.'
+e executar ele em produção."
 
 Resumindo a sopa de palavras:
 
-Docker permite criar 'caixinhas' que contém tudo o que é necessário para
+Docker permite criar "caixinhas" que contém tudo o que é necessário para
 executar a aplicação, o que deixa esse software independente do sistema
 em que ele deve executar.
 
@@ -70,12 +73,13 @@ em que ele deve executar.
 - Os volumes podem ser compartilhados entre containers e também podem ser
   montados do sistema hospedeiro, permitindo que os dados persistam mesmo se o
   container for interrompido ou excluído.
-:::{important}
+
+{{% alert title="Atenção" color="warning" %}}
 Em um determinado momento um contêiner contendo um pequeno serviço do C3SL foi
 configurado errado, o **volume estava incorreto**. Eventualmente esse contêiner
 foi parado e a imagem foi atualizada, o que acarretou na **perda de tudo o
 que foi salvo** nesse serviço.
-:::
+{{% /alert %}}
 
 ### Rede
 - As redes Docker permitem a comunicação entre contêineres em execução no mesmo
@@ -92,8 +96,8 @@ que foi salvo** nesse serviço.
 
 
 ## Por que utilizar Docker?
-### '*Never install locally*'
-:::{note}
+### "*Never install locally*"
+{{% alert title="Nota" color="primary" %}}
 Isso é particularmente relevante quando lida com **dois ou mais gerenciadores
 de pacotes**. Um bom exemplo disso são `pip` do Python e `apt` do Debian. É
 frequente as instalações de um conflitarem com as do outro, e resolver esse
@@ -103,16 +107,14 @@ Claro, no caso do `pip` há ambientes virtuais para evitar isso, mas Docker tamb
 é um ambiente virtual, e é mais fácil de fazer a aplicação funcionar caso
 ela não seja inteiramente em Python, por exemplo. Além das vantagens de
 ter uma imagem da aplicação para *deploy* facilitado.
-:::
+{{% /alert %}}
 ### Executar código legado
-Assumindo que tudo foi configurado corretamente. Uma vez que uma aplicação tem uma imagem 
 
-:::{admonition} Um projeto *dockarizado* ficou parado por dois anos e voltou do nada?
-:class: question
+{{% alert title="Um projeto dockarizado ficou parado por dois anos e voltou do nada?" color="primary" %}}
 Sem problemas! É só fazer o *deploy* da última imagem de produção! Agora para
 continuar o desenvolvimento basta que a documentação do projeto esteja em ordem
 (esse é um problema que sempre caberá ao projeto em si).
-:::
+{{% /alert %}}
 
 ### Testes de integração
 ...
@@ -123,7 +125,6 @@ continuar o desenvolvimento basta que a documentação do projeto esteja em orde
 ### Aplicações de altíssimo desempenho
 ...
 ### Aplicações pequenas, simples e isoladas
-Um perfeito exemplo disso é um *website*. Caso 
 
 [^cite_docker_docs]: [Primeiros passos com Docker](https://docs.docker.com/get-started/overview/).
 [^cite_docker_hub]: [Docker Hub](https://hub.docker.com/).
diff --git a/content/pt-br/concepts/git.md b/content/pt-br/concepts/git.md
new file mode 100644
index 0000000000000000000000000000000000000000..fe1cacb575f63d57d1891531c6f2158fbdaa17af
--- /dev/null
+++ b/content/pt-br/concepts/git.md
@@ -0,0 +1,4 @@
+---
+title: Git
+type: docs
+---
diff --git a/content/pt-br/concepts/gitlab-ci.md b/content/pt-br/concepts/gitlab-ci.md
new file mode 100644
index 0000000000000000000000000000000000000000..f2fc7d828090de7d62cd82c562957159385dd41a
--- /dev/null
+++ b/content/pt-br/concepts/gitlab-ci.md
@@ -0,0 +1,4 @@
+---
+title: GitLab CI
+type: docs
+---
diff --git a/content/pt-br/concepts/linters.md b/content/pt-br/concepts/linters.md
new file mode 100644
index 0000000000000000000000000000000000000000..adbe0f1186e48a42e4d2c3f7de18f7e11ed9e918
--- /dev/null
+++ b/content/pt-br/concepts/linters.md
@@ -0,0 +1,4 @@
+---
+title: Linters e formatadores
+type: docs
+---
diff --git a/content/pt-br/concepts/testing-code.md b/content/pt-br/concepts/testing-code.md
new file mode 100644
index 0000000000000000000000000000000000000000..d85d3cafdf0f00f5a374a8fd30b618350d6ddb40
--- /dev/null
+++ b/content/pt-br/concepts/testing-code.md
@@ -0,0 +1,4 @@
+---
+title: Testes de código
+type: docs
+---
diff --git a/content/pt-br/guides/_index.md b/content/pt-br/guides/_index.md
new file mode 100644
index 0000000000000000000000000000000000000000..74b96920b5fd385bfd488469659ef37fd8e7075b
--- /dev/null
+++ b/content/pt-br/guides/_index.md
@@ -0,0 +1,5 @@
+---
+title: Guias
+type: docs
+description: Guias de como fazer coisas
+---
diff --git a/source/pages/guides/docker-fundamentals.md b/content/pt-br/guides/docker-fundamentals.md
similarity index 95%
rename from source/pages/guides/docker-fundamentals.md
rename to content/pt-br/guides/docker-fundamentals.md
index 46e29fe0b9ae94ec62a39ca8cd4f571ecedda692..8f0f1a1ba966ff5465fe7b84cdf2f9d38f544799 100644
--- a/source/pages/guides/docker-fundamentals.md
+++ b/content/pt-br/guides/docker-fundamentals.md
@@ -1,4 +1,7 @@
-# Fundamentos do Docker
+---
+title: Fundamentos do Docker
+type: docs
+---
 
 Assume-se que quem ler essa documentação é familiarizado com os conceitos
 básicos de Docker[^cite_docker_concepts].
@@ -6,8 +9,8 @@ básicos de Docker[^cite_docker_concepts].
 Antes de começar a executar comandos é preciso ter Docker instalado no sistema.
 Há documentação oficial[^cite_docker_install] sobre instalação.
 
-:::{note}
-Esse guia/tutorial é um tipo de 'comece a mexer com docker rápido'. Ele **não
+{{% alert title="Nota" color="primary" %}}
+Esse guia/tutorial é um tipo de "comece a mexer com docker rápido". Ele **não
 substitui** e nem tenta substituir pesquisa mais aprofundada sobre Docker para
 quem tem interesse em aprender essa tecnologia.
 
@@ -17,7 +20,7 @@ pessoa, e por conta disso já ocorreram algumas instâncias de precisar mexer
 no `Dockerfile` 'pra ontem' mas ninguém ter o conhecimento básico para fazer
 isso, pois quem sabia saiu do projeto (por exemplo). Esse guia visa no mínimo
 atenuar esse problema.
-:::
+{{% /alert %}}
 
 ## Pré-requisitos
 A ideia para esse guia era ter o mínimo de pré-requisitos possível, para que
@@ -147,9 +150,9 @@ Vamos analisar esse output:
   de *entrypoint*, que veremos mais à frente. Por enquanto veja esse comando
   apenas como um script que incia tudo o que o contêiner precisa.
 
-:::{hint}
+{{% alert title="Dica" color="primary" %}}
 Para mais opções do comando `docker ps` basta executar `docker ps --help`.
-:::
+{{% /alert %}}
 
 #### Executando um contêiner em modo interativo
 
@@ -173,9 +176,9 @@ undefined
 
 Para sair da *shell* interativa do Node basta teclar `Ctrl+D`.
 
-:::{hint}
+{{% alert title="Dica" color="primary" %}}
 Para mais opções do comando `docker run` basta executar `docker run --help`.
-:::
+{{% /alert %}}
 
 #### Removendo contêineres
 Se você rodar `docker ps -a` de novo perceberá que o número de contêineres
@@ -196,12 +199,12 @@ root@devops:~# docker rm 00b6d2a0de3d
 00b6d2a0de3d
 root@devops:~# docker ps -a
 CONTAINER ID   IMAGE     COMMAND   CREATED   STATUS    PORTS     NAMES
-root@devops:~# 
+root@devops:~#
 ```
 
 Note que tanto o identificador do nome quando do id do contêiner servem.
 
-:::{tip}
+{{% alert title="Dica" color="primary" %}}
 Além de que tanto faz se o comando recebe o ID ou o NOME do contêiner, se o
 comando receber apenas o prefixo do identificador, supondo que esse prefixo não
 se repete o efeito é o mesmo.
@@ -218,9 +221,9 @@ root@devops:~/node-test# docker rm 8
 root@devops:~/node-test# docker ps -a
 CONTAINER ID   IMAGE     COMMAND                  CREATED          STATUS                      PORTS     NAMES
 ec38d6715864   node      "docker-entrypoint.s…"   41 seconds ago   Exited (0) 40 seconds ago             jolly_gates
-root@devops:~/node-test# 
+root@devops:~/node-test#
 ```
-:::
+{{% /alert %}}
 
 #### Removendo contêineres automaticamente
 Para remover automaticamente um contêiner que você executou é só passar a
@@ -244,7 +247,7 @@ aplica as configurações definidas nas camadas da imagem em ordem, e
 
 De certa forma o efeito seria o mesmo se você
 
-:::{note}
+{{% alert title="Nota" color="primary" %}}
 Como curiosidade: execute o comando `docker image inspect node`.
 
 Não veremos isso em detalhes, mas se você pesquisar pelos termos `docker
@@ -252,7 +255,7 @@ inspect` você encontrará diversos recursos sobre inspeção de imagens e
 contêineres. Isso é extremamente útil para análise do que está realmente
 sendo executado no sistema, e talvez ajude a compreender Docker em baixo
 nível.
-:::
+{{% /alert %}}
 
 É possível ver quais imagens estão no seu sistema com o comando `docker image
 ls`. E do mesmo modo que contêineres: para remover uma imagem basta executar
@@ -273,14 +276,14 @@ Deleted: sha256:82f9d9a7995035f61d6044546e6e28a5acb688b6028a2c071d3c06816b399fe1
 root@devops:~# docker image ls
 REPOSITORY   TAG       IMAGE ID       CREATED      SIZE
 node         latest    ba29744b7cd0   3 days ago   1.1GB
-root@devops:~# 
+root@devops:~#
 ```
 
-:::{hint}
+{{% alert title="Dica" color="primary" %}}
 Caso você queira baixar uma imagem sem necessariamente criar um contêiner para
 ela naquele momento basta executar `docker pull` (versão curta de `docker image
 pull`).
-:::
+{{% /alert %}}
 
 ### Criando imagens: o arquivo **Dockerfile**
 Colocando em termos extremamente simples: É possível descrever o `Dockerfile`
@@ -383,10 +386,10 @@ root@devops:~/node-test#
 
 O terminal acima é o que chamamos de 'cliente'.
 
-:::{note}
+{{% alert title="Nota" color="primary" %}}
 Você pode acessar essas URLs no navegador ao invés de usar `curl` no terminal.
 Mas não tem tanta graça ;)
-:::
+{{% /alert %}}
 
 Voltando ao primeiro terminal, o output deve ser similar a esse:
 
@@ -452,7 +455,7 @@ Sumarizando (veremos cada comando em detalhes à frente):
 - `CMD [ "npm", "start" ]`: Informa que quando um contêiner for criado com base
   na imagem ele deve executar `npm start` para iniciar a aplicação.
 
-:::{caution}
+{{% alert title="Atenção" color="warning" %}}
 A imagem escolhida é `node:lts`. Para usos além de testes locais é sempre bom
 mudar a tag `lts` para uma versão específica da imagem.
 
@@ -469,7 +472,7 @@ era ativo.
 (Claro, o ideal é manter um projeto atualizado, sempre que a versão LTS de
 suas dependências mudar ele **deveria** acompanhar essa mudança. Infelizmente
 o mundo da teoria é muito mais bonito e previsível que o da prática.)
-:::
+{{% /alert %}}
 
 #### Criando e usando essa imagem
 
@@ -525,13 +528,13 @@ Successfully built 094c7152f58d
 Successfully tagged teste-node:latest
 ```
 
-:::{note}
+{{% alert title="Nota" color="primary" %}}
 Perceba que há um aviso 'DEPRECATED'. No momento da escrita desse guia docker
 ainda suporta usar build ao invés do buildx. Eventualmente esse guia será atualizado
 para incluir ambas as opções (caso ambas ainda sejam válidas).
 
 Um pouco sobre o `buildx` será comentado na seção de [plugins](buildx).
-:::
+{{% /alert %}}
 
 Vamos analisar esse output:
 
@@ -591,14 +594,13 @@ fa97dfc3c078   teste-node   "docker-entrypoint.s…"   26 minutes ago   Up 1 sec
 root@devops:~/node-test# 
 ```
 
-:::{admonition} Socorro! Não consigo dar `Ctrl + C`!!!
-:class: danger
+{{% alert title="Socorro! Não consigo dar Ctrl + C!!!" color="warning" %}}
 Sim, por padrão seu terminal ficará preso aos logs do contêiner. Veremos logo à
 frente como mudar esse comportamento.
 
 Em outro terminal você deve executar `docker stop <identificador>`. Pode levar
 uns segundos mas o contêiner vai parar e seu terminal será devolvido.
-:::
+{{% /alert %}}
 
 ###### Fazendo como antes
 
@@ -615,22 +617,22 @@ root@devops:~/node-test# docker run --rm --name meu-container teste-node
 Escutando na porta 3000
 ```
 
-:::{note}
+{{% alert title="Nota" color="primary" %}}
 Os argumentos que passamos a mais foram `--rm` para remover automaticamente o
 contêiner e `--name` para que o nome do contêiner seja um criado por nós, não
 um escolhido pelo Docker.
-:::
+{{% /alert %}}
 
 Para parar esse contêiner é só rodar `docker stop <identificador>` em outro
 terminal.
 
 #### Mapeando portas
-:::{note}
+{{% alert title="Nota" color="primary" %}}
 É esperado que o leitor tenha algum conhecimento de redes, em particular do
 conceito de 'portas', TCP e UDP idealmente.
 
 Ainda, é interessante ter conhecimento dos comandos `netstat` e `ss`.
-:::
+{{% /alert %}}
 
 Se você é curioso e já sabe como o programa deveria funcionar, deve ter
 percebido que acessar `localhost:3000/ler` ou `localhost:3000/escrever` não
@@ -640,8 +642,7 @@ Na verdade, podemos ver quais portas estão sendo utilizadas no sistema com
 `netstat -tnlp`. A menos que outro programa esteja utilizando a porta 3000
 não deve haver nenhuma linha do output com a porta 3000.
 
-:::{admonition} Mas e a instrução `EXPOSE` que vimos antes?
-:class: attention
+{{% alert title="Mas e a instrução EXPOSE que vimos antes?" color="warning" %}}
 A instrução `EXPOSE <PORTA>`[^cite_expose] **não expõe** de verdade as portas,
 isso pois por mais que uma porta seja utilizada no contêiner o host pode querer
 mapeá-la para outra.
@@ -649,7 +650,7 @@ mapeá-la para outra.
 A verdadeira razão para usar essa instrução é para **informar** quem estiver
 utilizando a imagem quais portas devem ser 'publicadas'. Ela serve como uma
 espécie de **documentação**.
-:::
+{{% /alert %}}
 
 O que precisamos é passar um argumento ou flag para mapear a porta do contêiner
 para o host. Essa flag é `--publish <PORTA_HOST>:<PORTA_CONTAINER>`. O `--publish`
@@ -715,21 +716,20 @@ com código os arquivos que serão copiados vão sempre mudar, pelo menos alguns
 nem sempre as dependências que serão instaladas foram modificadas. Portanto o ideal
 para um projeto NodeJS é que `COPY. /app/` seja feito depois de `RUN npm install`.
 
-:::{admonition} **Docker build cache**
-:class: seealso
+{{% alert title="Docker build cache" color="primary" %}}
 Para ver em detalhes como é feito o cache de camadas do Docker na hora do
 `build` dê uma olhada na documentação oficial[^cite_docker_cache].
-:::
+{{% /alert %}}
 
 #### ARG e ENV
 `NODE_ENV` for `production` no Dockerfile então haverá uma variável de ambiente
 no contêner chamada `NODE_ENV` que terá o valor `production`.
 
-:::{note}
+{{% alert title="Nota" color="primary" %}}
 Mais à frente veremos o comando `docker exec`, que permitirá interagir com um
 contêiner em execução, assim poderemos verificar as variáveis de ambiente nela
 e interagir com todo o sistema de arquivos utilizando uma *shell* como bash.
-:::
+{{% /alert %}}
 
 Isso nem sempre é o comportamento desejado. É possível que alguma variável de
 ambiente seja apenas necessária no momento da criação da imagem, para comandos
@@ -758,9 +758,9 @@ RUN apt upgrade
 
 Entretanto `ARG` é ainda mais poderoso
 
-:::{seealso}
+{{% alert title="Veja também" color="primary" %}}
 TODO: Passando argumentos e variáveis de ambiente por linha de comando.
-:::
+{{% /alert %}}
 
 #### COPY e RUN
 O comando `COPY` copia arquivos do *host* para o contêiner. Seu uso avançado
@@ -770,7 +770,7 @@ permite copiar arquivos entre contêineres, que é feito geralmente em
 O comando `RUN` executa algum comando na *shell* do contêiner. Geralmente a
 *shell* do contêiner será *Bash*.
 
-:::{tip}
+{{% alert title="Dica" color="primary" %}}
 Vamos supor que você só precisa de um pequeno conjunto de seus arquivos
 para executar o contêiner corretamente. Por exemplo, em um programa em C
 isso poderia ser o `Makefile` e alguns dos `*.c`.
@@ -784,18 +784,18 @@ Se você já tem familiaridade com o Git provavelmente conhece o arquivo
 não serem copiados com a instrução `COPY`.
 
 Veja mais sobre `.dockerignore` na documentação oficial[^cite_dockerignore].
-:::
+{{% /alert %}}
 
 #### CMD vs ENTRYPOINT
 TODO: explicar isso aq
 
-:::{seealso}
+{{% alert title="Veja também" color="primary" %}}
 A documentação oficial de Docker tem todas as instruções aceitas pelo
 Dockerfile[^cite_dockerfile]. Uma instrução particularmente interessante é a
 `HEALTHCHECK`.
 
 Vale a pena estudar a fundo como são feitas imagens para seus fins específicos.
-:::
+{{% /alert %}}
 
 ### Interagindo com contêineres
 Antes de vermos 'volumes' é ideal saber interagir com contêineres de forma mais
@@ -806,13 +806,13 @@ Você já deve ter se incomodado com o fato de que após rodar `docker run` o
 terminal fica preso ao output do contêiner. Isso acontece pois por padrão os
 contêineres são executados em modo `attached`.
 
-:::{note}
+{{% alert title="Nota" color="primary" %}}
 Isso é particularmente inconveniente se o contêiner deve ser executado em um
 servidor, a partir de uma *shell* ssh.
 
 O que fazer com o terminal aberto? Se ele for fechado o processo do contêiner
 será morto também!
-:::
+{{% /alert %}}
 
 No modo `attached` o terminal ficará preso, logo precisamos apenas executar o
 contêiner em modo `detached`. Para isso basta passar a flag `--detach`/`-d`
@@ -829,10 +829,10 @@ root@devops: ~/node-test#
 Perceba que não vimos o output do contêiner, e no mesmo terminal pudemos
 executar `docker ps` para ver que o contêiner estava sim em execução.
 
-:::{seealso}
+{{% alert title="Veja também" color="primary" %}}
 Para mais informações sobre a CLI do `docker attach` veja a [documentação
 oficial](https://docs.docker.com/reference/cli/docker/container/attach/).
-:::
+{{% /alert %}}
 
 #### Vendo Logs
 Mas e se quisermos ver o output do contêiner? Para isso existe o comando
@@ -873,9 +873,9 @@ CONTAINER ID   IMAGE        COMMAND                  CREATED          STATUS
 root@devops ~/node-test# 
 ```
 
-:::{note}
+{{% alert title="Nota" color="primary" %}}
 O `^CInterrupt` do output é o `Ctrl+C` que liberou o terminal.
-:::
+{{% /alert %}}
 
 #### Utilizando `docker exec`
 Um último comando interessante é o `docker exec` com o qual, como o nome
@@ -887,15 +887,14 @@ em particular são bem relevantes para o uso com esse comando:
   seja executado em modo `attached`.
 - `--tty`/`-t`: Aloca um pseudo-TTY.
 
-:::{note}
+{{% alert title="Nota" color="primary" %}}
 TODO: explicar TTY?
-:::
+{{% /alert %}}
 
-:::{seealso}
+{{% alert title="Veja também" color="primary" %}}
 Para mais informações sobre a CLI do `docker exec` veja a [documentação
 oficial](https://docs.docker.com/reference/cli/docker/container/exec/)
-:::
-
+{{% /alert %}}
 
 ## Disco persistente com **volumes**
 Caso ainda não tenha reparado, sempre que executamos um contêiner ele tem seus
@@ -903,20 +902,20 @@ próprios arquivos, muito similar a uma máquina virtual. Entretanto, toda vez q
 o contêiner é parado todas as alterações que foram feitas no sistema de
 arquivos dele são perdidas.
 
-:::{note}
+{{% alert title="Nota" color="primary" %}}
 No exemplo utilizado até agora, com o projeto em NodeJS, é possível ver o
 sistema de arquivos do contêiner com `docker exec -it <id> bash`, que te dará
 uma *shell* no contêiner.
-:::
+{{% /alert %}}
 
 Essa seção apenas introduz os conceitos de *volumes* e de *bind mounts*. Para
 ver seu uso detalhado recomenda-se dar uma olhada na documentação oficial para
 *volumes*[^cite_docker_volumes] e para *bind mounts*[^cite_bind_mounts].
 
-:::{note}
+{{% alert title="Nota" color="primary" %}}
 Tanto volumes quanto bind mounts podem ser utilizados em modo *read-only* ou
 *read-write*.
-:::
+{{% /alert %}}
 
 ### Volumes
 O jeito recomendado de lidar com dados persistentes utilizando docker é por
@@ -926,11 +925,11 @@ enquanto *bind mounts* que são descritos mais à frente são dependentes do
 
 Para ver os volumes do sistema basta executar `docker volume ls`.
 
-:::{note}
+{{% alert title="Nota" color="primary" %}}
 Você já deve ter percebido o padrão da CLI de docker. Antes vimos várias vezes
 `docker container ls`, depois `docker image ls`, `docker volume ls` e à frente
 veremos também `docker network ls`.
-:::
+{{% /alert %}}
 
 Volumes podem ser criados manualmente pela CLI com `docker volume create`, e
 podem ser utilizados no comando `docker run` por meio da flag `--volume`/`-v`.
@@ -943,7 +942,7 @@ por um contêiner intermediário de *build* (isso se torna particularmente
 importante para projetos que possuem **muitas** dependências, pois o *build* é
 acelerado consideravelmente).
 
-:::{seealso}
+{{% alert title="Veja também" color="primary" %}}
 Se o parágrafo acima interessou o leitor então pesquisar as seguintes
 palavras-chave é essencial para aprofundar o conhecimento nesse tópico:
 - docker multi-stage build;
@@ -953,7 +952,7 @@ palavras-chave é essencial para aprofundar o conhecimento nesse tópico:
 
 Um exemplo de *multi-stage build* está no `Dockerfile` oficial do
 NextJS[^cite_nextjs].
-:::
+{{% /alert %}}
 
 ### Bind Mounts
 *Bind mounts* podem ser compreendidos como 'volumes mais simples'. Comparados a
@@ -970,11 +969,11 @@ utiliza o kernel do host, baseado em Linux, e que em Mac e Windows uma Máquina
 Virtual Linux é executada para prover esse kernel), um dos fatores da
 preferência de *volumes* a *bind mounts* para gerenciar dados persistentes.
 
-:::{note}
+{{% alert title="Nota" color="primary" %}}
 Não é possível gerenciar *bind mounts* pela CLI, dada a sua natureza dinâmica
 de existir apenas com o contêiner em execução, e seus dados não passarem de algum
 diretório que já exista no *host*.
-:::
+{{% /alert %}}
 
 ### tmpfs mounts
 Se um contêiner gerar dados não persistentes então é possível utilizar um
@@ -989,8 +988,7 @@ Redes em Docker é um conteúdo relativamente avançado, pois para compreensão
 total dos seus conceitos é necessário ter uma base sobre Redes de Computadores
 que não cabe a esse guia explicar.
 
-:::{admonition} TLDR: Too Long Didn't Read
-:class: hint
+{{% alert title="TLDR: Too Long Didn't Read" color="primary" %}}
 Redes Docker permitem que contêineres se comuniquem diretamente.
 
 90% das vezes será utilizada a rede padrão *bridge*, que permite que N
@@ -1000,7 +998,7 @@ Por exemplo, suponha que há dois contêineres 'API-A' e 'API-B'. O contêiner
 'API-A' pode mandar uma requisição HTTP para 'API-B', e esse segundo receberá
 a requisição e retornará normalmente, do mesmo jeito que se faz uma requisição
 HTTP para um website, por exemplo.
-:::
+{{% /alert %}}
 
 Redes Docker permitem que contêineres se comuniquem diretamente. Por exemplo um
 contêiner de *backend* pode se comunicar diretamente com o contêiner de banco de
@@ -1056,8 +1054,7 @@ build` já irá utilizar automaticamente o novo `buildx`, de modo transparente.
 O `buildx` estende as habilidades de criar imagens utilizando o *builder*
 **BuildKit**.
 
-:::{admonition} Por que um plugin?
-:class: important
+{{% alert title="Por que um plugin?" color="primary" %}}
 > Por que não simplesmente substituíram o *builder* padrão do Docker pelo
 > `buildx` ao invés de transformá-lo em um plugin que deve ser instalado
 > separadamente?
@@ -1065,7 +1062,7 @@ O `buildx` estende as habilidades de criar imagens utilizando o *builder*
 Por que ainda estavam em fase de transição, e não era possível simplesmente
 trocar de uma vez o *build* sem afetar incontáveis projetos. Entretanto no
 futuro o plano é sim substituir o `docker build` padrão pelo novo.
-:::
+{{% /alert %}}
 
 ## Docker Compose
 Como orquestrar múltiplos contêineres elegantemente?
@@ -1087,8 +1084,7 @@ Felizmente, já existe uma ferramenta nativa para orquestrar múltiples
 contêineres com um único arquivo de configuração, com comandos curtos: `docker
 compose`.
 
-:::{admonition} `docker-compose` vs. `docker compose`
-:class: attention
+{{% alert title="docker-compose vs. docker compose" color="warning" %}}
 O comando `docker-compose` é o jeito antigo de utilizar `compose`, o modo ideal
 é instalando o *plugin* e utilizar o comando `docker compose` (com espaço ao
 invés do traço).
@@ -1099,7 +1095,7 @@ menos confuso do que procurar pelo traço.
 O *plugin* é a versão mais nova do `compose`, que foi migrada para a linguagem
 Go, e com isso a versão antiga foi depreciada e seu uso é fortemente
 desencorajado. (A partir de Julho de 2023 V1 parou de receber *updates*)
-:::
+{{% /alert %}}
 
 Na verdade, mesmo com um único contêiner, para o caso de uso para os projetos do
 C3SL, por exemplo, ainda é melhor usar `compose`. Isso pois ele é mais simples
@@ -1108,7 +1104,7 @@ vida de quem usa. Não há por que executar 6 ou 7 comandos quando basta executa
 1 (fora o fato de que o arquivo `docker-compose.yml` é bem descritivo, serve
 **parcialmente** de 'documentação' sobre o contêiner sendo utilizado).
 
-:::{attention}
+{{% alert title="Atenção" color="warning" %}}
 O problema com isso é que geralmente **uma única pessoa** aprende o suficiente de
 Docker para fazer essa configuração inicial, e depois todos aceitam que funciona
 e usam, mas eventualmente quem fez e conhece Docker sai.
@@ -1120,7 +1116,7 @@ facilitaria o trabalho caso todos conhecessem o básico.
 Isso não é problema com Docker em si, mas sim com não conhecer uma tecnologia
 essencial para o projeto (o que é relativamente compreensível, se funciona e
 não há por que mexer ninguém irá mexer).
-:::
+{{% /alert %}}
 
 ### O arquivo `docker-compose.yml`
 Com `compose` ao invés de executar diversos comandos você descreve os seus
@@ -1182,14 +1178,14 @@ networks:
     name: ensalamento-network
 ```
 
-:::{note}
+{{% alert title="Nota" color="primary" %}}
 Essa é uma versão um pouco mais antiga do `docker-compose.yml`, essa é a versão
 3, mas já há a versão 3.8, por exemplo.
 
 Há pequenas diferenças quanto às versões, em especial sobre as versões 3.x há a
 documentação oficial[^cite_compose_3] que descreve brevemente as diferenças, mas
 a essência dos arquivos será sempre a mesma.
-:::
+{{% /alert %}}
 
 A maioria dos elementos do arquivo acima são reconhecíveis, então vamos
 analisar apenas algumas partes do arquivo:
@@ -1218,7 +1214,7 @@ Para **iniciar todos** os contêineres com todas as informações descritas no a
 `docker-compose.yml` basta executar `docker compose up` no mesmo diretório
 desse arquivo.
 
-Ainda, há duas flags importantes para `docker compose up`: 
+Ainda, há duas flags importantes para `docker compose up`:
 - `--build`: Executa o `docker build` antes de iniciar os contêineres,
   reconstruindo a imagem.
 - `--detach`/`-d`: Funciona do mesmo modo que com o comando `docker run` visto
@@ -1227,11 +1223,11 @@ Ainda, há duas flags importantes para `docker compose up`:
 Para **parar todos** os contêineres descritos no arquivo basta executar `docker
 compose down` no mesmo diretório do `docker-compose.yml`.
 
-:::{note}
+{{% alert title="Nota" color="primary" %}}
 Perceba que o `docker compose` é essencialmente uma interface. Ele utiliza um
 arquivo de configuração e nada mais do que executa os diversos comandos
 necessários para você enquanto você apenas digita um único comando.
-:::
+{{% /alert %}}
 
 ### Por que só agora?
 > Por que ver toda a parte difícil antes de `compose` sendo que ele que é
@@ -1246,10 +1242,10 @@ Por exemplo, se você tem uma aplicação com vários contêineres e precisa atu
 algo dentro de um deles, você (idealmente) não vai parar todos os outros com
 `docker compose down`, mas vai parar apenas o necessário com `docker stop`.
 
-:::{note}
+{{% alert title="Nota" color="primary" %}}
 Isso é parcialmente uma mentira. Há como executar `docker compose` para apenas
 parte dos contêineres, mas **a essência do comando é a mesma**.
-:::
+{{% /alert %}}
 
 ## Utilizando um registry
 Frequentemente é feita a comparação de *registry* como o DockerHub com
@@ -1266,8 +1262,7 @@ pendente por enquanto. Idealmente no futuro ele será mais utilizado.
 
 TODO: fazer o exemplo (provavelmente com o quadro de avisos digital)
 
-:::{admonition} Esse não é necessariamente o melhor método.
-:class: note
+{{% alert title="Esse não é necessariamente o melhor método" color="primary" %}}
 Idealmente com Docker **separa-se o código da infraestrutura** completamente.
 
 Logo, um fluxo de trabalho ideal para um projeto em Docker seria realizar o
@@ -1278,7 +1273,7 @@ outros métodos também)
 Esse tipo de automação pode ser integrada ao desenvolvimento utilizando
 ferramentas como GitLabCI[^cite_gitlab_ci] para realizar esse deploy com
 qualquer *merge* na branch `main`, por exemplo.
-:::
+{{% /alert %}}
 
 ### Ciclo de desenvolvimento
 TODO: aproveitar e utilizar o mesmo exemplo daqui de cima
diff --git a/content/pt-br/guides/troubleshooting.md b/content/pt-br/guides/troubleshooting.md
new file mode 100644
index 0000000000000000000000000000000000000000..26d16f385918ca87011fe43186bf14b74b501d7b
--- /dev/null
+++ b/content/pt-br/guides/troubleshooting.md
@@ -0,0 +1,4 @@
+---
+title: Troubleshooting básico
+type: docs
+---
diff --git a/content/pt-br/policies/_index.md b/content/pt-br/policies/_index.md
new file mode 100644
index 0000000000000000000000000000000000000000..494bd2fdf32ad39a146f381ea700d5ec3590f7cb
--- /dev/null
+++ b/content/pt-br/policies/_index.md
@@ -0,0 +1,5 @@
+---
+type: docs
+title: Políticas
+description: Seção de políticas
+---
diff --git a/content/pt-br/policies/development-lifecycle.md b/content/pt-br/policies/development-lifecycle.md
new file mode 100644
index 0000000000000000000000000000000000000000..a0b9cdecc1e38f24892b95889fbbbf2f0876c383
--- /dev/null
+++ b/content/pt-br/policies/development-lifecycle.md
@@ -0,0 +1,4 @@
+---
+title: Ciclo de desenvolvimento no C3SL
+type: docs
+---
diff --git a/content/pt-br/policies/upgrading.md b/content/pt-br/policies/upgrading.md
new file mode 100644
index 0000000000000000000000000000000000000000..6c1f08d6dba9f5b62034b104e748fe83f2c4115c
--- /dev/null
+++ b/content/pt-br/policies/upgrading.md
@@ -0,0 +1,4 @@
+---
+title: Como fazer upgrade de serviços, aplicações ou VMs
+type: docs
+---
diff --git a/content/pt-br/vms/_index.md b/content/pt-br/vms/_index.md
new file mode 100644
index 0000000000000000000000000000000000000000..3492c29a7dd92a5cacf2a1ae967b5cd14c819476
--- /dev/null
+++ b/content/pt-br/vms/_index.md
@@ -0,0 +1,5 @@
+---
+type: docs
+title: Máquinas Virtuais
+description: Seção de gerência de máquinas virtuais
+---
diff --git a/source/pages/vms/management.md b/content/pt-br/vms/management.md
similarity index 99%
rename from source/pages/vms/management.md
rename to content/pt-br/vms/management.md
index f79a24d902faf9e591f42d49ce83279a29608d25..7db770e2c211142fa40d1476413409bb564bef91 100644
--- a/source/pages/vms/management.md
+++ b/content/pt-br/vms/management.md
@@ -1,4 +1,7 @@
-# Gerenciamento de Máquinas Virtuais
+---
+title: Gerenciamento de Máquinas Virtuais
+type: docs
+---
 
 A infraestrutura das máquinas virtuais do C3SL é gerenciada pelos roots, um
 grupo de professores e bolsistas que respondem pelo e-mail <root@c3sl.ufpr.br>.
diff --git a/cz.yaml b/cz.yaml
deleted file mode 100644
index 67604a0fd61963429848d0f9ccc36e623913c1af..0000000000000000000000000000000000000000
--- a/cz.yaml
+++ /dev/null
@@ -1,4 +0,0 @@
-commitizen:
-  name: cz_conventional_commits
-  tag_format: $version
-  version: 0.1.0
diff --git a/go.mod b/go.mod
new file mode 100644
index 0000000000000000000000000000000000000000..fd38536ece1e6594541ee47b8030a096196c25ac
--- /dev/null
+++ b/go.mod
@@ -0,0 +1,5 @@
+module gitlab.c3sl.ufpr.br/root/suporte
+
+go 1.24.2
+
+require github.com/google/docsy v0.12.0 // indirect
diff --git a/go.sum b/go.sum
new file mode 100644
index 0000000000000000000000000000000000000000..3ed3addbb8f4c2085409bca389070bb26c27533d
--- /dev/null
+++ b/go.sum
@@ -0,0 +1,4 @@
+github.com/FortAwesome/Font-Awesome v0.0.0-20241216213156-af620534bfc3/go.mod h1:IUgezN/MFpCDIlFezw3L8j83oeiIuYoj28Miwr/KUYo=
+github.com/google/docsy v0.12.0 h1:CddZKL39YyJzawr8GTVaakvcUTCJRAAYdz7W0qfZ2P4=
+github.com/google/docsy v0.12.0/go.mod h1:1bioDqA493neyFesaTvQ9reV0V2vYy+xUAnlnz7+miM=
+github.com/twbs/bootstrap v5.3.6+incompatible/go.mod h1:fZTSrkpSf0/HkL0IIJzvVspTt1r9zuf7XlZau8kpcY0=
diff --git a/hugo.yaml b/hugo.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..478d3aee07c9d3cb4e8699e88033607756a137a6
--- /dev/null
+++ b/hugo.yaml
@@ -0,0 +1,157 @@
+baseURL: https://devops.docs.c3sl.ufpr.br
+title: Manual de DevOps do C3SL
+
+# cSpell:ignore goldmark github hugo readingtime docsy subdir lastmod pygments linenos catmullrom norsk gu
+
+# Language settings
+contentDir: content/pt-br
+defaultContentLanguage: pt-br
+defaultContentLanguageInSubdir: false
+# Useful when translating.
+enableMissingTranslationPlaceholders: true
+
+enableRobotsTXT: true
+
+# Will give values to .Lastmod etc.
+enableGitInfo: true
+
+# Comment out to enable taxonomies in Docsy
+# disableKinds: [taxonomy, taxonomyTerm]
+
+# You can add your own taxonomies
+taxonomies:
+  tag: tags
+  category: categories
+
+# Highlighting config
+pygmentsCodeFences: true
+pygmentsUseClasses: false
+# Use the new Chroma Go highlighter in Hugo.
+pygmentsUseClassic: false
+# pygmentsOptions: "linenos=table"
+# See https://help.farbox.com/pygments.html
+pygmentsStyle: tango
+
+# Configure how URLs look like per section.
+permalinks:
+  blog: /:section/:year/:month/:day/:slug/
+
+# Image processing configuration.
+imaging:
+  resampleFilter: CatmullRom
+  quality: 75
+  anchor: smart
+
+# Language configuration
+languages:
+  pt-br:
+    languageName: Brazilian-Portuguese
+    title: Manual de DevOps do C3SL
+    params:
+      description: Manual de DevOps do C3SL
+
+markup:
+  goldmark:
+    parser:
+      attribute:
+        block: true
+    renderer:
+      unsafe: true
+  highlight:
+    # See a complete list of available styles at https://xyproto.github.io/splash/docs/all.html
+    style: onedark
+    # Uncomment if you want your chosen highlight style used for code blocks without a specified language
+    guessSyntax: true
+
+# Everything below this are Site Params
+
+# Comment out if you don't want the "print entire section" link enabled.
+outputs:
+  section: [HTML, print, RSS]
+
+params:
+  taxonomy:
+    # set taxonomyCloud = [] to hide taxonomy clouds
+    taxonomyCloud: [tags, categories]
+
+    # If used, must have same length as taxonomyCloud
+    taxonomyCloudTitle: [Tag Cloud, Categories]
+
+    # set taxonomyPageHeader = [] to hide taxonomies on the page headers
+    taxonomyPageHeader: [tags, categories]
+
+  # Menu title if your navbar has a versions selector to access old versions of your site.
+  # This menu appears only if you have at least one [params.versions] set.
+  version_menu: Releases
+
+  # Flag used in the "version-banner" partial to decide whether to display a
+  # banner on every page indicating that this is an archived version of the docs.
+  # Set this flag to "true" if you want to display the banner.
+  archived_version: false
+
+  # The version number for the version of the docs represented in this doc set.
+  # Used in the "version-banner" partial to display a version number for the
+  # current doc set.
+  version: 0.0
+
+  # A link to latest version of the docs. Used in the "version-banner" partial to
+  # point people to the main doc site.
+  url_latest_version: https://devops.docs.c3sl.ufpr.br
+
+  # Repository configuration (URLs for in-page links to opening issues and suggesting changes)
+  github_repo: https://gitlab.c3sl.ufpr.br/root/devops-docs
+
+  # Enable Lunr.js offline search
+  offlineSearch: true
+
+  # Enable syntax highlighting and copy buttons on code blocks with Prism
+  prism_syntax_highlighting: false
+
+  copyright:
+    authors: Root do C3SL
+    from_year: 2025
+
+  # User interface configuration
+  ui:
+    # Set to true to disable breadcrumb navigation.
+    breadcrumb_disable: true
+    # Set to false if you don't want to display a logo (/assets/icons/logo.svg) in the top navbar
+    navbar_logo: true
+    # Set to true if you don't want the top navbar to be translucent when over a `block/cover`, like on the homepage.
+    navbar_translucent_over_cover_disable: false
+    # Enable to show the side bar menu in its compact state.
+    sidebar_menu_compact: true
+    # Set to true to hide the sidebar search box (the top nav search box will still be displayed if search is enabled)
+    sidebar_search_disable: true
+
+    showLightDarkModeMenu: true
+
+    # Adds a reading time to the top of each doc.
+    # If you want this feature, but occasionally need to remove the Reading time from a single page,
+    # add "hide_readingtime: true" to the page's front matter
+    readingtime:
+      enable: false
+
+  links:
+    # End user relevant links. These will show up on left side of footer and in the community page if you have one.
+    user:
+      - name: E-mail
+        url: mailto:root@inf.ufpr.br
+        icon: fa fa-envelope
+        desc: Discussion and help from your fellow users
+    # Developer relevant links. These will show up on right side of footer and in the community page if you have one.
+    developer:
+      - name: GitLab
+        url: https://gitlab.c3sl.ufpr.br/root/devops-docs
+        icon: fab fa-github
+        desc: Development takes place here!
+
+module:
+  # Uncomment the next line to build and serve using local docsy clone declared in the named Hugo workspace:
+  # workspace: docsy.work
+  hugoVersion:
+    extended: true
+    min: 0.110.0
+  imports:
+    - path: github.com/google/docsy
+      disable: false
diff --git a/i18n/pt-br.yaml b/i18n/pt-br.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..ef3fa67c806903d0221e084574f27b0db683f424
--- /dev/null
+++ b/i18n/pt-br.yaml
@@ -0,0 +1,62 @@
+# UI strings. Buttons and similar.
+
+ui_pager_prev:
+  other: "Anterior"
+
+ui_pager_next:
+  other: "Próximo"
+
+ui_read_more:
+  other: "Leia mais"
+
+ui_search:
+  other: "Pesquise nesse site…"
+
+# Used in sentences such as "Posted in News"
+ui_in:
+  other: "em"
+
+# Used in sentences such as "All Tags"
+ui_all:
+  other: "todas"
+
+# Footer text
+footer_all_rights_reserved:
+  other: "Todos os direitos reservados"
+
+footer_privacy_policy:
+  other: "Políticas de Privacidade"
+
+# Post (blog, articles etc.)
+post_byline_by:
+  other: "Por"
+post_created:
+  other: "Criado"
+post_last_mod:
+  other: "Última modificação"
+post_edit_this:
+  other: "Editar essa página"
+post_view_this:
+  other: "Ver o código fonte"
+post_create_child_page:
+  other: "Criar página filha"
+post_create_issue:
+  other: "Reportar problema"
+post_create_project_issue:
+  other: "Reportar problema no projeto"
+post_posts_in:
+  other: "Postagens em"
+post_reading_time:
+  other: "minutos de leitura"
+post_less_than_a_minute_read:
+  other: "menos de 1 minuto"
+
+# Print support
+print_printable_section:
+  other: "Essa é uma visualização multi-página imprimível desta seção."
+print_click_to_print:
+  other: "Aperte aqui para imprimir a página"
+print_show_regular:
+  other: "Return to the regular view of this page"
+print_entire_section:
+  other: "Imprimir toda seção"
diff --git a/requirements.txt b/requirements.txt
deleted file mode 100644
index 59f31ae6bde750b746291054a1bf88605a325d37..0000000000000000000000000000000000000000
--- a/requirements.txt
+++ /dev/null
@@ -1,59 +0,0 @@
--i https://pypi.org/simple
-alabaster==0.7.16 ; python_version >= '3.9'
-argcomplete==3.2.2 ; python_version >= '3.8'
-babel==2.14.0 ; python_version >= '3.7'
-beautifulsoup4==4.12.3 ; python_full_version >= '3.6.0'
-certifi==2024.2.2 ; python_version >= '3.6'
-cfgv==3.4.0 ; python_version >= '3.8'
-charset-normalizer==3.3.2 ; python_full_version >= '3.7.0'
-colorama==0.4.6 ; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4, 3.5, 3.6'
-commitizen==3.15.0
-decli==0.6.1 ; python_version >= '3.7'
-distlib==0.3.8
-docutils==0.20.1 ; python_version >= '3.7'
-filelock==3.13.1 ; python_version >= '3.8'
-furo==2024.1.29
-identify==2.5.35 ; python_version >= '3.8'
-idna==3.6 ; python_version >= '3.5'
-imagesize==1.4.1 ; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'
-importlib-metadata==7.0.1 ; python_version >= '3.8'
-jinja2==3.1.3 ; python_version >= '3.7'
-livereload==2.6.3
-markdown-it-py==3.0.0 ; python_version >= '3.8'
-markupsafe==2.1.5 ; python_version >= '3.7'
-mdit-py-plugins==0.4.0 ; python_version >= '3.8'
-mdurl==0.1.2 ; python_version >= '3.7'
-myst-parser==2.0.0
-nodeenv==1.8.0 ; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4, 3.5, 3.6'
-packaging==23.2 ; python_version >= '3.7'
-platformdirs==4.2.0 ; python_version >= '3.8'
-pre-commit==3.6.2
-prompt-toolkit==3.0.36 ; python_full_version >= '3.6.2'
-pygments==2.17.2 ; python_version >= '3.7'
-pyyaml==6.0.1 ; python_version >= '3.6'
-questionary==2.0.1 ; python_version >= '3.8'
-requests==2.31.0 ; python_version >= '3.7'
-setuptools==69.1.0 ; python_version >= '3.8'
-six==1.16.0 ; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'
-snowballstemmer==2.2.0
-soupsieve==2.5 ; python_version >= '3.8'
-sphinx==7.2.6
-sphinx-autobuild==2024.2.4
-sphinx-basic-ng==1.0.0b2 ; python_version >= '3.7'
-sphinx-copybutton==0.5.2
-sphinx-inline-tabs==2023.4.21
-sphinx-tippy==0.4.1
-sphinxcontrib-applehelp==1.0.8 ; python_version >= '3.9'
-sphinxcontrib-devhelp==1.0.6 ; python_version >= '3.9'
-sphinxcontrib-htmlhelp==2.0.5 ; python_version >= '3.9'
-sphinxcontrib-jsmath==1.0.1 ; python_version >= '3.5'
-sphinxcontrib-qthelp==1.0.7 ; python_version >= '3.9'
-sphinxcontrib-serializinghtml==1.1.10 ; python_version >= '3.9'
-sphinxcontrib-svgbob==0.2.1
-termcolor==2.4.0 ; python_version >= '3.8'
-tomlkit==0.12.3 ; python_version >= '3.7'
-tornado==6.4 ; python_version > '2.7'
-urllib3==2.2.1 ; python_version >= '3.8'
-virtualenv==20.25.0 ; python_version >= '3.7'
-wcwidth==0.2.13
-zipp==3.17.0 ; python_version >= '3.8'
diff --git a/source/_ext/inline_svgbob.py b/source/_ext/inline_svgbob.py
deleted file mode 100644
index e923fbb70e9bcfd7b4c08fb1b418fb3562db1b07..0000000000000000000000000000000000000000
--- a/source/_ext/inline_svgbob.py
+++ /dev/null
@@ -1,35 +0,0 @@
-import os
-import sphinx.transforms
-import xml.etree.ElementTree as ET
-from docutils.nodes import image, raw
-from sphinxcontrib.svgbob.node import svgbob
-
-
-class InlineSvgbob(sphinx.transforms.SphinxTransform):
-    default_priority = 11
-
-    def apply(self, **kwargs):
-        source = os.path.dirname(self.document["source"])
-        for node in self.document.traverse(image):
-            if "svgbob" in node:
-                filepath = os.path.join(source, node["uri"])
-                root = ET.parse(filepath).getroot()
-                for elem in root.iter():
-                    elem.tag = elem.tag.split("}")[1]
-                root.remove(root.find("style"))
-                node.replace_self(
-                    raw(
-                        classes=[f'align-{node["align"]}'] if "align" in node else [],
-                        text=ET.tostring(root).decode(),
-                        format="html",
-                    )
-                )
-
-
-def setup(app):
-    app.add_transform(InlineSvgbob)
-    return {
-        "version": "0.1",
-        "parallel_read_safe": True,
-        "parallel_write_safe": True,
-    }
diff --git a/source/_static/.gitkeep b/source/_static/.gitkeep
deleted file mode 100644
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000
diff --git a/source/_static/c3sl.png b/source/_static/c3sl.png
deleted file mode 100644
index 291732f53947ec9f673ce616244e2f61ab37156d..0000000000000000000000000000000000000000
Binary files a/source/_static/c3sl.png and /dev/null differ
diff --git a/source/_static/fonts/iosevka-fixed/LATEST_RELEASE b/source/_static/fonts/iosevka-fixed/LATEST_RELEASE
deleted file mode 100644
index f6733da096748b3690b7d5c864c912f97e498055..0000000000000000000000000000000000000000
--- a/source/_static/fonts/iosevka-fixed/LATEST_RELEASE
+++ /dev/null
@@ -1 +0,0 @@
-27.3.5
diff --git a/source/_static/fonts/iosevka-fixed/LICENSE b/source/_static/fonts/iosevka-fixed/LICENSE
deleted file mode 100644
index 261eeb9e9f8b2b4b0d119366dda99c6fd7d35c64..0000000000000000000000000000000000000000
--- a/source/_static/fonts/iosevka-fixed/LICENSE
+++ /dev/null
@@ -1,201 +0,0 @@
-                                 Apache License
-                           Version 2.0, January 2004
-                        http://www.apache.org/licenses/
-
-   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
-
-   1. Definitions.
-
-      "License" shall mean the terms and conditions for use, reproduction,
-      and distribution as defined by Sections 1 through 9 of this document.
-
-      "Licensor" shall mean the copyright owner or entity authorized by
-      the copyright owner that is granting the License.
-
-      "Legal Entity" shall mean the union of the acting entity and all
-      other entities that control, are controlled by, or are under common
-      control with that entity. For the purposes of this definition,
-      "control" means (i) the power, direct or indirect, to cause the
-      direction or management of such entity, whether by contract or
-      otherwise, or (ii) ownership of fifty percent (50%) or more of the
-      outstanding shares, or (iii) beneficial ownership of such entity.
-
-      "You" (or "Your") shall mean an individual or Legal Entity
-      exercising permissions granted by this License.
-
-      "Source" form shall mean the preferred form for making modifications,
-      including but not limited to software source code, documentation
-      source, and configuration files.
-
-      "Object" form shall mean any form resulting from mechanical
-      transformation or translation of a Source form, including but
-      not limited to compiled object code, generated documentation,
-      and conversions to other media types.
-
-      "Work" shall mean the work of authorship, whether in Source or
-      Object form, made available under the License, as indicated by a
-      copyright notice that is included in or attached to the work
-      (an example is provided in the Appendix below).
-
-      "Derivative Works" shall mean any work, whether in Source or Object
-      form, that is based on (or derived from) the Work and for which the
-      editorial revisions, annotations, elaborations, or other modifications
-      represent, as a whole, an original work of authorship. For the purposes
-      of this License, Derivative Works shall not include works that remain
-      separable from, or merely link (or bind by name) to the interfaces of,
-      the Work and Derivative Works thereof.
-
-      "Contribution" shall mean any work of authorship, including
-      the original version of the Work and any modifications or additions
-      to that Work or Derivative Works thereof, that is intentionally
-      submitted to Licensor for inclusion in the Work by the copyright owner
-      or by an individual or Legal Entity authorized to submit on behalf of
-      the copyright owner. For the purposes of this definition, "submitted"
-      means any form of electronic, verbal, or written communication sent
-      to the Licensor or its representatives, including but not limited to
-      communication on electronic mailing lists, source code control systems,
-      and issue tracking systems that are managed by, or on behalf of, the
-      Licensor for the purpose of discussing and improving the Work, but
-      excluding communication that is conspicuously marked or otherwise
-      designated in writing by the copyright owner as "Not a Contribution."
-
-      "Contributor" shall mean Licensor and any individual or Legal Entity
-      on behalf of whom a Contribution has been received by Licensor and
-      subsequently incorporated within the Work.
-
-   2. Grant of Copyright License. Subject to the terms and conditions of
-      this License, each Contributor hereby grants to You a perpetual,
-      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
-      copyright license to reproduce, prepare Derivative Works of,
-      publicly display, publicly perform, sublicense, and distribute the
-      Work and such Derivative Works in Source or Object form.
-
-   3. Grant of Patent License. Subject to the terms and conditions of
-      this License, each Contributor hereby grants to You a perpetual,
-      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
-      (except as stated in this section) patent license to make, have made,
-      use, offer to sell, sell, import, and otherwise transfer the Work,
-      where such license applies only to those patent claims licensable
-      by such Contributor that are necessarily infringed by their
-      Contribution(s) alone or by combination of their Contribution(s)
-      with the Work to which such Contribution(s) was submitted. If You
-      institute patent litigation against any entity (including a
-      cross-claim or counterclaim in a lawsuit) alleging that the Work
-      or a Contribution incorporated within the Work constitutes direct
-      or contributory patent infringement, then any patent licenses
-      granted to You under this License for that Work shall terminate
-      as of the date such litigation is filed.
-
-   4. Redistribution. You may reproduce and distribute copies of the
-      Work or Derivative Works thereof in any medium, with or without
-      modifications, and in Source or Object form, provided that You
-      meet the following conditions:
-
-      (a) You must give any other recipients of the Work or
-          Derivative Works a copy of this License; and
-
-      (b) You must cause any modified files to carry prominent notices
-          stating that You changed the files; and
-
-      (c) You must retain, in the Source form of any Derivative Works
-          that You distribute, all copyright, patent, trademark, and
-          attribution notices from the Source form of the Work,
-          excluding those notices that do not pertain to any part of
-          the Derivative Works; and
-
-      (d) If the Work includes a "NOTICE" text file as part of its
-          distribution, then any Derivative Works that You distribute must
-          include a readable copy of the attribution notices contained
-          within such NOTICE file, excluding those notices that do not
-          pertain to any part of the Derivative Works, in at least one
-          of the following places: within a NOTICE text file distributed
-          as part of the Derivative Works; within the Source form or
-          documentation, if provided along with the Derivative Works; or,
-          within a display generated by the Derivative Works, if and
-          wherever such third-party notices normally appear. The contents
-          of the NOTICE file are for informational purposes only and
-          do not modify the License. You may add Your own attribution
-          notices within Derivative Works that You distribute, alongside
-          or as an addendum to the NOTICE text from the Work, provided
-          that such additional attribution notices cannot be construed
-          as modifying the License.
-
-      You may add Your own copyright statement to Your modifications and
-      may provide additional or different license terms and conditions
-      for use, reproduction, or distribution of Your modifications, or
-      for any such Derivative Works as a whole, provided Your use,
-      reproduction, and distribution of the Work otherwise complies with
-      the conditions stated in this License.
-
-   5. Submission of Contributions. Unless You explicitly state otherwise,
-      any Contribution intentionally submitted for inclusion in the Work
-      by You to the Licensor shall be under the terms and conditions of
-      this License, without any additional terms or conditions.
-      Notwithstanding the above, nothing herein shall supersede or modify
-      the terms of any separate license agreement you may have executed
-      with Licensor regarding such Contributions.
-
-   6. Trademarks. This License does not grant permission to use the trade
-      names, trademarks, service marks, or product names of the Licensor,
-      except as required for reasonable and customary use in describing the
-      origin of the Work and reproducing the content of the NOTICE file.
-
-   7. Disclaimer of Warranty. Unless required by applicable law or
-      agreed to in writing, Licensor provides the Work (and each
-      Contributor provides its Contributions) on an "AS IS" BASIS,
-      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
-      implied, including, without limitation, any warranties or conditions
-      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
-      PARTICULAR PURPOSE. You are solely responsible for determining the
-      appropriateness of using or redistributing the Work and assume any
-      risks associated with Your exercise of permissions under this License.
-
-   8. Limitation of Liability. In no event and under no legal theory,
-      whether in tort (including negligence), contract, or otherwise,
-      unless required by applicable law (such as deliberate and grossly
-      negligent acts) or agreed to in writing, shall any Contributor be
-      liable to You for damages, including any direct, indirect, special,
-      incidental, or consequential damages of any character arising as a
-      result of this License or out of the use or inability to use the
-      Work (including but not limited to damages for loss of goodwill,
-      work stoppage, computer failure or malfunction, or any and all
-      other commercial damages or losses), even if such Contributor
-      has been advised of the possibility of such damages.
-
-   9. Accepting Warranty or Additional Liability. While redistributing
-      the Work or Derivative Works thereof, You may choose to offer,
-      and charge a fee for, acceptance of support, warranty, indemnity,
-      or other liability obligations and/or rights consistent with this
-      License. However, in accepting such obligations, You may act only
-      on Your own behalf and on Your sole responsibility, not on behalf
-      of any other Contributor, and only if You agree to indemnify,
-      defend, and hold each Contributor harmless for any liability
-      incurred by, or claims asserted against, such Contributor by reason
-      of your accepting any such warranty or additional liability.
-
-   END OF TERMS AND CONDITIONS
-
-   APPENDIX: How to apply the Apache License to your work.
-
-      To apply the Apache License to your work, attach the following
-      boilerplate notice, with the fields enclosed by brackets "[]"
-      replaced with your own identifying information. (Don't include
-      the brackets!)  The text should be enclosed in the appropriate
-      comment syntax for the file format. We also recommend that a
-      file or class name and description of purpose be included on the
-      same "printed page" as the copyright notice for easier
-      identification within third-party archives.
-
-   Copyright [yyyy] [name of copyright owner]
-
-   Licensed under the Apache License, Version 2.0 (the "License");
-   you may not use this file except in compliance with the License.
-   You may obtain a copy of the License at
-
-       http://www.apache.org/licenses/LICENSE-2.0
-
-   Unless required by applicable law or agreed to in writing, software
-   distributed under the License is distributed on an "AS IS" BASIS,
-   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-   See the License for the specific language governing permissions and
-   limitations under the License.
diff --git a/source/_static/fonts/iosevka-fixed/README.md b/source/_static/fonts/iosevka-fixed/README.md
deleted file mode 100644
index 691e81e78ac12a6433c8105e7d8a247cf87bd4ea..0000000000000000000000000000000000000000
--- a/source/_static/fonts/iosevka-fixed/README.md
+++ /dev/null
@@ -1,6 +0,0 @@
-# Iosevka Fixed WebFont 27.3.5
-
-## How to use
-
-- Add `<link href="https://iosevka-webfonts.github.io/iosevka-fixed/iosevka-fixed.css" rel="stylesheet" />` to your `<head>`.
-- Use `fontFamily: 'Iosevka Fixed Web'` or `font-family: 'Iosevka Fixed Web'`.
diff --git a/source/_static/fonts/iosevka-fixed/iosevka-fixed.css b/source/_static/fonts/iosevka-fixed/iosevka-fixed.css
deleted file mode 100644
index 5d33fd275e27654bac655a03672577a459e4d0a4..0000000000000000000000000000000000000000
--- a/source/_static/fonts/iosevka-fixed/iosevka-fixed.css
+++ /dev/null
@@ -1,53 +0,0 @@
-@font-face {
-	font-family: 'Iosevka Fixed Web';
-	font-display: swap;
-	font-weight: 400;
-	font-stretch: normal;
-	font-style: normal;
-	src: url('woff2/iosevka-fixed-regular.woff2') format('woff2');
-}
-
-@font-face {
-	font-family: 'Iosevka Fixed Web';
-	font-display: swap;
-	font-weight: 400;
-	font-stretch: normal;
-	font-style: oblique;
-	src: url('woff2/iosevka-fixed-oblique.woff2') format('woff2');
-}
-
-@font-face {
-	font-family: 'Iosevka Fixed Web';
-	font-display: swap;
-	font-weight: 400;
-	font-stretch: normal;
-	font-style: italic;
-	src: url('woff2/iosevka-fixed-italic.woff2') format('woff2');
-}
-
-@font-face {
-	font-family: 'Iosevka Fixed Web';
-	font-display: swap;
-	font-weight: 700;
-	font-stretch: normal;
-	font-style: normal;
-	src: url('woff2/iosevka-fixed-bold.woff2') format('woff2');
-}
-
-@font-face {
-	font-family: 'Iosevka Fixed Web';
-	font-display: swap;
-	font-weight: 700;
-	font-stretch: normal;
-	font-style: oblique;
-	src: url('woff2/iosevka-fixed-boldoblique.woff2') format('woff2');
-}
-
-@font-face {
-	font-family: 'Iosevka Fixed Web';
-	font-display: swap;
-	font-weight: 700;
-	font-stretch: normal;
-	font-style: italic;
-	src: url('woff2/iosevka-fixed-bolditalic.woff2') format('woff2');
-}
diff --git a/source/_static/fonts/iosevka-fixed/woff2/iosevka-fixed-bold.woff2 b/source/_static/fonts/iosevka-fixed/woff2/iosevka-fixed-bold.woff2
deleted file mode 100644
index fc46a4a70704da73824b6c32e38591e9e90f1c51..0000000000000000000000000000000000000000
Binary files a/source/_static/fonts/iosevka-fixed/woff2/iosevka-fixed-bold.woff2 and /dev/null differ
diff --git a/source/_static/fonts/iosevka-fixed/woff2/iosevka-fixed-bolditalic.woff2 b/source/_static/fonts/iosevka-fixed/woff2/iosevka-fixed-bolditalic.woff2
deleted file mode 100644
index 181f660546f4dedcc0d20b9af405d68e3f722c1a..0000000000000000000000000000000000000000
Binary files a/source/_static/fonts/iosevka-fixed/woff2/iosevka-fixed-bolditalic.woff2 and /dev/null differ
diff --git a/source/_static/fonts/iosevka-fixed/woff2/iosevka-fixed-boldoblique.woff2 b/source/_static/fonts/iosevka-fixed/woff2/iosevka-fixed-boldoblique.woff2
deleted file mode 100644
index b441ba9aa5a0f50a6ad5a1ee356b9315afe017df..0000000000000000000000000000000000000000
Binary files a/source/_static/fonts/iosevka-fixed/woff2/iosevka-fixed-boldoblique.woff2 and /dev/null differ
diff --git a/source/_static/fonts/iosevka-fixed/woff2/iosevka-fixed-italic.woff2 b/source/_static/fonts/iosevka-fixed/woff2/iosevka-fixed-italic.woff2
deleted file mode 100644
index 58db98084cb5590f84cc162da444700c33e56dff..0000000000000000000000000000000000000000
Binary files a/source/_static/fonts/iosevka-fixed/woff2/iosevka-fixed-italic.woff2 and /dev/null differ
diff --git a/source/_static/fonts/iosevka-fixed/woff2/iosevka-fixed-oblique.woff2 b/source/_static/fonts/iosevka-fixed/woff2/iosevka-fixed-oblique.woff2
deleted file mode 100644
index 150bb265f85b3745e8ec408bd9d72e075c788133..0000000000000000000000000000000000000000
Binary files a/source/_static/fonts/iosevka-fixed/woff2/iosevka-fixed-oblique.woff2 and /dev/null differ
diff --git a/source/_static/fonts/iosevka-fixed/woff2/iosevka-fixed-regular.woff2 b/source/_static/fonts/iosevka-fixed/woff2/iosevka-fixed-regular.woff2
deleted file mode 100644
index 95af9389e87375c609e1ebfc3177f3b26f7f6223..0000000000000000000000000000000000000000
Binary files a/source/_static/fonts/iosevka-fixed/woff2/iosevka-fixed-regular.woff2 and /dev/null differ
diff --git a/source/_static/root-logo.png b/source/_static/root-logo.png
deleted file mode 100644
index d196f5a7611b6cd6d5ec99f5fac6e82909c46dc0..0000000000000000000000000000000000000000
Binary files a/source/_static/root-logo.png and /dev/null differ
diff --git a/source/_static/svgbob.css b/source/_static/svgbob.css
deleted file mode 100644
index fcc469daf8e0cfa61609a4c4b2ed2805435a919e..0000000000000000000000000000000000000000
--- a/source/_static/svgbob.css
+++ /dev/null
@@ -1,77 +0,0 @@
-.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon {
-  stroke: var(--color-content-foreground);
-  stroke-width: 2;
-  stroke-opacity: 1;
-  fill-opacity: 1;
-  stroke-linecap: round;
-  stroke-linejoin: miter;
-}
-
-.svgbob text {
-  white-space: pre;
-  fill: var(--color-content-foreground);
-  font-family: Iosevka Fixed Web, monospace;
-  font-size: 14px;
-}
-
-.svgbob rect.backdrop {
-  stroke: none;
-  fill: var(--color-content-background);
-}
-
-.svgbob .broken {
-  stroke-dasharray: 8;
-}
-
-.svgbob .filled {
-  fill: var(--color-content-foreground);
-}
-
-.svgbob .bg_filled {
-  fill: var(--color-content-background);
-  stroke-width: 1;
-}
-
-.svgbob .nofill {
-  fill: var(--color-content-background);
-}
-
-.svgbob .end_marked_arrow {
-  marker-end: url(#arrow);
-}
-
-.svgbob .start_marked_arrow {
-  marker-start: url(#arrow);
-}
-
-.svgbob .end_marked_diamond {
-  marker-end: url(#diamond);
-}
-
-.svgbob .start_marked_diamond {
-  marker-start: url(#diamond);
-}
-
-.svgbob .end_marked_circle {
-  marker-end: url(#circle);
-}
-
-.svgbob .start_marked_circle {
-  marker-start: url(#circle);
-}
-
-.svgbob .end_marked_open_circle {
-  marker-end: url(#open_circle);
-}
-
-.svgbob .start_marked_open_circle {
-  marker-start: url(#open_circle);
-}
-
-.svgbob .end_marked_big_open_circle {
-  marker-end: url(#big_open_circle);
-}
-
-.svgbob .start_marked_big_open_circle {
-  marker-start: url(#big_open_circle);
-}
diff --git a/source/_templates/.gitkeep b/source/_templates/.gitkeep
deleted file mode 100644
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000
diff --git a/source/_templates/page.html b/source/_templates/page.html
deleted file mode 100644
index b0e48f20d3c10a81340400ef58d5140b29161687..0000000000000000000000000000000000000000
--- a/source/_templates/page.html
+++ /dev/null
@@ -1,3 +0,0 @@
-{% set next = None %}
-{% set prev = None %}
-{% extends "!page.html" %}
diff --git a/source/conf.py b/source/conf.py
deleted file mode 100644
index ba50010c99055e6e9d292543d3fca75b1a59a34b..0000000000000000000000000000000000000000
--- a/source/conf.py
+++ /dev/null
@@ -1,63 +0,0 @@
-import os
-import sys
-
-sys.path.append(os.path.abspath("./_ext"))
-
-# Configuration file for the Sphinx documentation builder.
-#
-# For the full list of built-in configuration values, see the documentation:
-# https://www.sphinx-doc.org/en/master/usage/configuration.html
-
-# -- Project information -----------------------------------------------------
-# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
-
-project = "DevOps C3SL"
-copyright = "2024 C3SL"
-author = "Carlos Iago, Tiago Conte, Guiusepe Oneda, Marcus Reisdoefer, Fernando Kiotheka, Odair Dutkin"
-
-# -- General configuration ---------------------------------------------------
-# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
-
-language = "pt"
-
-templates_path = ["_templates"]
-exclude_patterns = []
-
-extensions = [
-    "sphinxcontrib.svgbob",
-    "sphinx.ext.todo",
-    "sphinx_inline_tabs",
-    "sphinx_copybutton",
-    "sphinx_tippy",
-    "myst_parser",
-    "inline_svgbob",
-]
-
-myst_enable_extensions = [
-    "colon_fence",
-    "deflist",
-    "fieldlist",
-]
-
-myst_heading_anchors = 2
-
-copybutton_prompt_text = r">>> |\$ |.+:.+# |.+@.+> |<.+>"
-copybutton_prompt_is_regexp = True
-copybutton_line_continuation_character = "\\"
-copybutton_here_doc_delimiter = "EOF"
-copybutton_copy_empty_lines = False
-
-todo_include_todos = True
-
-# -- Options for HTML output -------------------------------------------------
-# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
-
-html_theme = "furo"
-html_static_path = ["_static", "_static/fonts/iosevka-fixed/"]
-html_css_files = ["fonts/iosevka-fixed/iosevka-fixed.css", "svgbob.css"]
-
-html_logo = "_static/c3sl.png"
-html_theme_options = {
-    "sidebar_hide_name": True,
-    "source_edit_link": "https://gitlab.c3sl.ufpr.br/c3sl/c3docs/devops/-/blob/main/source/{filename}",
-}
diff --git a/source/index.md b/source/index.md
deleted file mode 100644
index ab4ee3a598c61404d2d036aa8d20bed625f6796f..0000000000000000000000000000000000000000
--- a/source/index.md
+++ /dev/null
@@ -1,40 +0,0 @@
-# DevOps do C3SL
-
-```{image} _static/c3sl.png
-:align: center
-:alt: C3SL UFPR
-:target: https://www.c3sl.ufpr.br
-:width: 500px
-```
-
-```{toctree}
-:caption: Máquinas Virtuais
-:glob: true
-:maxdepth: 1
-
-pages/vms/*
-```
-
-```{toctree}
-:caption: Conceitos
-:glob: true
-:maxdepth: 1
-
-pages/concepts/*
-```
-
-```{toctree}
-:caption: Políticas
-:glob: true
-:maxdepth: 1
-
-pages/policies/*
-```
-
-```{toctree}
-:caption: Guias e Tutoriais
-:glob: true
-:maxdepth: 1
-
-pages/guides/*
-```
diff --git a/source/pages/.gitkeep b/source/pages/.gitkeep
deleted file mode 100644
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000
diff --git a/source/pages/concepts/git.md b/source/pages/concepts/git.md
deleted file mode 100644
index 38eeffa4b435cff85e7cf2e13b3b4eef0067097c..0000000000000000000000000000000000000000
--- a/source/pages/concepts/git.md
+++ /dev/null
@@ -1 +0,0 @@
-# Git
diff --git a/source/pages/concepts/gitlab-ci.md b/source/pages/concepts/gitlab-ci.md
deleted file mode 100644
index 85c685225c877c52f8afbc884706766a8c1ab098..0000000000000000000000000000000000000000
--- a/source/pages/concepts/gitlab-ci.md
+++ /dev/null
@@ -1 +0,0 @@
-# GitLab CI
diff --git a/source/pages/concepts/linters.md b/source/pages/concepts/linters.md
deleted file mode 100644
index feea30d1e9ccf7fcf9ca4f002ac37553556a9c36..0000000000000000000000000000000000000000
--- a/source/pages/concepts/linters.md
+++ /dev/null
@@ -1 +0,0 @@
-# Linters e formatadores
diff --git a/source/pages/concepts/testing-code.md b/source/pages/concepts/testing-code.md
deleted file mode 100644
index 276676ab64af8159b19c0cf8ce8763bb6e49fdb4..0000000000000000000000000000000000000000
--- a/source/pages/concepts/testing-code.md
+++ /dev/null
@@ -1 +0,0 @@
-# Testes de código
diff --git a/source/pages/guides/troubleshooting.md b/source/pages/guides/troubleshooting.md
deleted file mode 100644
index 2cbdf4fffb8bb8b2b23dec53ca3877719e10d232..0000000000000000000000000000000000000000
--- a/source/pages/guides/troubleshooting.md
+++ /dev/null
@@ -1 +0,0 @@
-# Troubleshooting básico
diff --git a/source/pages/policies/development-lifecycle.md b/source/pages/policies/development-lifecycle.md
deleted file mode 100644
index 1035fde7349698ebd4b190fb58ecfb80d940356e..0000000000000000000000000000000000000000
--- a/source/pages/policies/development-lifecycle.md
+++ /dev/null
@@ -1 +0,0 @@
-# Ciclo de desenvolvimento no C3SL
diff --git a/source/pages/policies/upgrading.md b/source/pages/policies/upgrading.md
deleted file mode 100644
index 5f6ab7086716be32489fd232fbe7fff4c187aa28..0000000000000000000000000000000000000000
--- a/source/pages/policies/upgrading.md
+++ /dev/null
@@ -1 +0,0 @@
-# Como fazer upgrade de serviços, aplicações ou VMs
diff --git a/static/_redirects b/static/_redirects
new file mode 100644
index 0000000000000000000000000000000000000000..91fc4e5ff1049bf1de57ddb906d242a99008b467
--- /dev/null
+++ b/static/_redirects
@@ -0,0 +1,8 @@
+/en/stable/* /:splat
+/pt-br/stable/* /:splat
+/pt/stable/* /:splat
+/páginas/* /:splat
+/paginas/* /:splat
+/pages/* /:splat
+/vms/management.html /vms/management/
+/guides/docker-fundamentals.html /guides/docker-fundamentals/