├── .gitattributes ├── .gitignore ├── CODE_OF_CONDUCT.md ├── Dockerfile ├── LICENSE ├── docs ├── BuyingVertcoin │ └── How-to-buy-Vertcoin.md ├── Contributing │ └── Bounties.md ├── FullNodes │ ├── getting-started-full-nodes.md │ ├── intel-nuc.md │ ├── orange-pi-one.md │ ├── raspberry-pi-zero-w.md │ └── raspberry-pi.md ├── Mining │ ├── AMD-Mining.md │ ├── Getting-Started-With-Mining.md │ ├── Nvidia-Mining.md │ └── P2pool-overview.md ├── Wallets │ ├── Core-Wallet.md │ ├── Electrum.md │ ├── Hardware-Wallets.md │ ├── Paper-Wallets.md │ ├── Vertwallet.md │ ├── Wallet-Overview.md │ ├── Web-Wallets.md │ └── core-command-line-arguments.md ├── getting-started.md ├── images │ ├── Thumbs.db │ ├── Vertwallet.png │ ├── core-first-start.png │ ├── core-generate-address.png │ ├── core-sync.png │ ├── core-ui.png │ ├── electrum-vtc-backup-1.png │ ├── electrum-vtc-install-1.png │ ├── electrum-vtc-install-2.png │ ├── electrum-vtc-install-3.png │ ├── electrum-vtc-install-4.png │ ├── electrum-vtc-install-5.png │ ├── electrum-vtc-install-6.png │ ├── electrum-vtc-network-1.png │ ├── electrum-vtc-receiving-1.png │ ├── electrum-vtc-receiving-2.png │ ├── electrum-vtc-receiving-3.png │ ├── electrum-vtc-receiving-4.png │ ├── electrum-vtc-select-sig.PNG │ ├── electrum-vtc-select.PNG │ ├── electrum-vtc-sending-1.png │ ├── electrum-vtc-sending-2.png │ ├── electrum-vtc-sending-3.png │ ├── electrum-vtc-sending-4.png │ ├── electrum-vtc-sending-5.png │ ├── electrum-vtc-sending-6.png │ ├── electrum-vtc-sweep-1.png │ ├── electrum-vtc-sweep-2.png │ ├── electrum-vtc-ui-1.png │ ├── ocm-intensity.png │ ├── ocm-miner-setup.png │ ├── ocm-mining.png │ ├── ocm-p2p-running.png │ ├── ocm-p2p-setting.png │ ├── ocm-p2p-settings.png │ ├── ocm-p2p-start.png │ ├── ocm-pool-setup.png │ ├── p2p-web-interface.png │ ├── vdlogo.png │ ├── vdlogo2.png │ ├── wallet-paper-wallet.png │ └── win-core-files.jpg ├── img │ └── favicon.ico ├── index.md └── stylesheets │ └── extra.css ├── images ├── 2favicon.ico └── favcon.png ├── mkdocs.yml ├── readme.md └── vdmaterial ├── .babelrc ├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .flowconfig ├── .githooks ├── commit-msg │ └── skip.sh ├── post-merge │ └── install.sh └── pre-commit │ ├── branch.sh │ └── check.sh ├── .github └── ISSUE_TEMPLATE.md ├── .gitignore ├── .stylelintignore ├── .stylelintrc ├── .travis.yml ├── .travisignore ├── CHANGELOG ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── Gulpfile.babel.js ├── LICENSE ├── MANIFEST.in ├── README.md ├── lib ├── .eslintrc ├── declarations │ ├── clipboard.js │ ├── escape-string-regexp.js │ ├── fastclick.js │ ├── js-cookie.js │ ├── jsx.js │ ├── lunr.js │ └── modernizr.js ├── providers │ └── jsx.js └── tasks │ ├── assets │ ├── images │ │ ├── build │ │ │ ├── ico.js │ │ │ └── svg.js │ │ └── clean.js │ ├── javascripts │ │ ├── annotate.js │ │ ├── build │ │ │ ├── application.js │ │ │ ├── languages.js │ │ │ └── modernizr.js │ │ ├── clean.js │ │ └── lint.js │ └── stylesheets │ │ ├── build.js │ │ ├── clean.js │ │ └── lint.js │ ├── mkdocs │ ├── build.js │ ├── clean.js │ └── serve.js │ └── views │ ├── build.js │ └── clean.js ├── material ├── 404.html ├── __init__.py ├── assets │ ├── images │ │ ├── favicon.ico │ │ ├── favicon.png │ │ └── icons │ │ │ ├── bitbucket-670608a71a.svg │ │ │ ├── github-1da075986e.svg │ │ │ └── gitlab-5ad3f9f9e5.svg │ ├── javascripts │ │ ├── application-f3ab9e5ff8.js │ │ ├── lunr │ │ │ ├── lunr.da.js │ │ │ ├── lunr.de.js │ │ │ ├── lunr.du.js │ │ │ ├── lunr.es.js │ │ │ ├── lunr.fi.js │ │ │ ├── lunr.fr.js │ │ │ ├── lunr.hu.js │ │ │ ├── lunr.it.js │ │ │ ├── lunr.jp.js │ │ │ ├── lunr.multi.js │ │ │ ├── lunr.no.js │ │ │ ├── lunr.pt.js │ │ │ ├── lunr.ro.js │ │ │ ├── lunr.ru.js │ │ │ ├── lunr.stemmer.support.js │ │ │ ├── lunr.sv.js │ │ │ ├── lunr.tr.js │ │ │ └── tinyseg.js │ │ └── modernizr-e826f8942a.js │ └── stylesheets │ │ ├── application-23f75ab9c7.palette.css │ │ └── application-b6a6d08807.css ├── base.html ├── main.html └── partials │ ├── disqus.html │ ├── footer.html │ ├── header.html │ ├── language.html │ ├── nav-item.html │ ├── nav.html │ ├── search.html │ ├── social.html │ ├── source.html │ ├── tabs-item.html │ ├── tabs.html │ ├── toc-item.html │ └── toc.html ├── mkdocs.yml ├── package.json ├── requirements.txt ├── scripts ├── build ├── clean ├── flow ├── help ├── lint ├── start └── travis ├── setup.py ├── src ├── .babelrc ├── 404.html ├── __init__.py ├── assets │ ├── images │ │ ├── favicon.ico │ │ ├── favicon.png │ │ └── icons │ │ │ ├── bitbucket.svg │ │ │ ├── github.svg │ │ │ └── gitlab.svg │ ├── javascripts │ │ ├── application.js │ │ └── components │ │ │ ├── Material.js │ │ │ └── Material │ │ │ ├── Event.js │ │ │ ├── Event │ │ │ ├── Listener.js │ │ │ └── MatchMedia.js │ │ │ ├── Header.js │ │ │ ├── Header │ │ │ └── Shadow.js │ │ │ ├── Nav.js │ │ │ ├── Nav │ │ │ ├── Blur.js │ │ │ ├── Collapse.js │ │ │ └── Scrolling.js │ │ │ ├── Search.js │ │ │ ├── Search │ │ │ ├── Lock.js │ │ │ └── Result.jsx │ │ │ ├── Sidebar.js │ │ │ ├── Sidebar │ │ │ └── Position.js │ │ │ ├── Source.js │ │ │ ├── Source │ │ │ ├── Adapter.js │ │ │ ├── Adapter │ │ │ │ ├── Abstract.js │ │ │ │ └── GitHub.js │ │ │ └── Repository.jsx │ │ │ ├── Tabs.js │ │ │ └── Tabs │ │ │ └── Toggle.js │ └── stylesheets │ │ ├── _config.scss │ │ ├── _shame.scss │ │ ├── application.palette.scss │ │ ├── application.scss │ │ ├── base │ │ ├── .stylelintrc │ │ ├── _icons.scss │ │ ├── _reset.scss │ │ └── _typeset.scss │ │ ├── extensions │ │ ├── _admonition.scss │ │ ├── _codehilite.scss │ │ ├── _footnotes.scss │ │ ├── _permalinks.scss │ │ └── pymdown │ │ │ ├── _arithmatex.scss │ │ │ ├── _critic.scss │ │ │ ├── _details.scss │ │ │ ├── _emoji.scss │ │ │ ├── _inlinehilite.scss │ │ │ └── _tasklist.scss │ │ ├── helpers │ │ ├── _break.scss │ │ └── _px2em.scss │ │ └── layout │ │ ├── _base.scss │ │ ├── _clipboard.scss │ │ ├── _content.scss │ │ ├── _footer.scss │ │ ├── _header.scss │ │ ├── _nav.scss │ │ ├── _search.scss │ │ ├── _sidebar.scss │ │ ├── _source.scss │ │ └── _tabs.scss ├── base.html ├── main.html └── partials │ ├── disqus.html │ ├── footer.html │ ├── header.html │ ├── language.html │ ├── nav-item.html │ ├── nav.html │ ├── search.html │ ├── social.html │ ├── source.html │ ├── tabs-item.html │ ├── tabs.html │ ├── toc-item.html │ └── toc.html └── yarn.lock /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | site/ 2 | serve.bat 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/LICENSE -------------------------------------------------------------------------------- /docs/BuyingVertcoin/How-to-buy-Vertcoin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/docs/BuyingVertcoin/How-to-buy-Vertcoin.md -------------------------------------------------------------------------------- /docs/Contributing/Bounties.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/docs/Contributing/Bounties.md -------------------------------------------------------------------------------- /docs/FullNodes/getting-started-full-nodes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/docs/FullNodes/getting-started-full-nodes.md -------------------------------------------------------------------------------- /docs/FullNodes/intel-nuc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/docs/FullNodes/intel-nuc.md -------------------------------------------------------------------------------- /docs/FullNodes/orange-pi-one.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/docs/FullNodes/orange-pi-one.md -------------------------------------------------------------------------------- /docs/FullNodes/raspberry-pi-zero-w.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/docs/FullNodes/raspberry-pi-zero-w.md -------------------------------------------------------------------------------- /docs/FullNodes/raspberry-pi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/docs/FullNodes/raspberry-pi.md -------------------------------------------------------------------------------- /docs/Mining/AMD-Mining.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/Mining/Getting-Started-With-Mining.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/docs/Mining/Getting-Started-With-Mining.md -------------------------------------------------------------------------------- /docs/Mining/Nvidia-Mining.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/docs/Mining/Nvidia-Mining.md -------------------------------------------------------------------------------- /docs/Mining/P2pool-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/docs/Mining/P2pool-overview.md -------------------------------------------------------------------------------- /docs/Wallets/Core-Wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/docs/Wallets/Core-Wallet.md -------------------------------------------------------------------------------- /docs/Wallets/Electrum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/docs/Wallets/Electrum.md -------------------------------------------------------------------------------- /docs/Wallets/Hardware-Wallets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/docs/Wallets/Hardware-Wallets.md -------------------------------------------------------------------------------- /docs/Wallets/Paper-Wallets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/docs/Wallets/Paper-Wallets.md -------------------------------------------------------------------------------- /docs/Wallets/Vertwallet.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/Wallets/Wallet-Overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/docs/Wallets/Wallet-Overview.md -------------------------------------------------------------------------------- /docs/Wallets/Web-Wallets.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/Wallets/core-command-line-arguments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/docs/Wallets/core-command-line-arguments.md -------------------------------------------------------------------------------- /docs/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/docs/getting-started.md -------------------------------------------------------------------------------- /docs/images/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/docs/images/Thumbs.db -------------------------------------------------------------------------------- /docs/images/Vertwallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/docs/images/Vertwallet.png -------------------------------------------------------------------------------- /docs/images/core-first-start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/docs/images/core-first-start.png -------------------------------------------------------------------------------- /docs/images/core-generate-address.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/docs/images/core-generate-address.png -------------------------------------------------------------------------------- /docs/images/core-sync.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/docs/images/core-sync.png -------------------------------------------------------------------------------- /docs/images/core-ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/docs/images/core-ui.png -------------------------------------------------------------------------------- /docs/images/electrum-vtc-backup-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/docs/images/electrum-vtc-backup-1.png -------------------------------------------------------------------------------- /docs/images/electrum-vtc-install-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/docs/images/electrum-vtc-install-1.png -------------------------------------------------------------------------------- /docs/images/electrum-vtc-install-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/docs/images/electrum-vtc-install-2.png -------------------------------------------------------------------------------- /docs/images/electrum-vtc-install-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/docs/images/electrum-vtc-install-3.png -------------------------------------------------------------------------------- /docs/images/electrum-vtc-install-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/docs/images/electrum-vtc-install-4.png -------------------------------------------------------------------------------- /docs/images/electrum-vtc-install-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/docs/images/electrum-vtc-install-5.png -------------------------------------------------------------------------------- /docs/images/electrum-vtc-install-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/docs/images/electrum-vtc-install-6.png -------------------------------------------------------------------------------- /docs/images/electrum-vtc-network-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/docs/images/electrum-vtc-network-1.png -------------------------------------------------------------------------------- /docs/images/electrum-vtc-receiving-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/docs/images/electrum-vtc-receiving-1.png -------------------------------------------------------------------------------- /docs/images/electrum-vtc-receiving-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/docs/images/electrum-vtc-receiving-2.png -------------------------------------------------------------------------------- /docs/images/electrum-vtc-receiving-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/docs/images/electrum-vtc-receiving-3.png -------------------------------------------------------------------------------- /docs/images/electrum-vtc-receiving-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/docs/images/electrum-vtc-receiving-4.png -------------------------------------------------------------------------------- /docs/images/electrum-vtc-select-sig.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/docs/images/electrum-vtc-select-sig.PNG -------------------------------------------------------------------------------- /docs/images/electrum-vtc-select.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/docs/images/electrum-vtc-select.PNG -------------------------------------------------------------------------------- /docs/images/electrum-vtc-sending-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/docs/images/electrum-vtc-sending-1.png -------------------------------------------------------------------------------- /docs/images/electrum-vtc-sending-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/docs/images/electrum-vtc-sending-2.png -------------------------------------------------------------------------------- /docs/images/electrum-vtc-sending-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/docs/images/electrum-vtc-sending-3.png -------------------------------------------------------------------------------- /docs/images/electrum-vtc-sending-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/docs/images/electrum-vtc-sending-4.png -------------------------------------------------------------------------------- /docs/images/electrum-vtc-sending-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/docs/images/electrum-vtc-sending-5.png -------------------------------------------------------------------------------- /docs/images/electrum-vtc-sending-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/docs/images/electrum-vtc-sending-6.png -------------------------------------------------------------------------------- /docs/images/electrum-vtc-sweep-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/docs/images/electrum-vtc-sweep-1.png -------------------------------------------------------------------------------- /docs/images/electrum-vtc-sweep-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/docs/images/electrum-vtc-sweep-2.png -------------------------------------------------------------------------------- /docs/images/electrum-vtc-ui-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/docs/images/electrum-vtc-ui-1.png -------------------------------------------------------------------------------- /docs/images/ocm-intensity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/docs/images/ocm-intensity.png -------------------------------------------------------------------------------- /docs/images/ocm-miner-setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/docs/images/ocm-miner-setup.png -------------------------------------------------------------------------------- /docs/images/ocm-mining.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/docs/images/ocm-mining.png -------------------------------------------------------------------------------- /docs/images/ocm-p2p-running.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/docs/images/ocm-p2p-running.png -------------------------------------------------------------------------------- /docs/images/ocm-p2p-setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/docs/images/ocm-p2p-setting.png -------------------------------------------------------------------------------- /docs/images/ocm-p2p-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/docs/images/ocm-p2p-settings.png -------------------------------------------------------------------------------- /docs/images/ocm-p2p-start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/docs/images/ocm-p2p-start.png -------------------------------------------------------------------------------- /docs/images/ocm-pool-setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/docs/images/ocm-pool-setup.png -------------------------------------------------------------------------------- /docs/images/p2p-web-interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/docs/images/p2p-web-interface.png -------------------------------------------------------------------------------- /docs/images/vdlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/docs/images/vdlogo.png -------------------------------------------------------------------------------- /docs/images/vdlogo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/docs/images/vdlogo2.png -------------------------------------------------------------------------------- /docs/images/wallet-paper-wallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/docs/images/wallet-paper-wallet.png -------------------------------------------------------------------------------- /docs/images/win-core-files.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/docs/images/win-core-files.jpg -------------------------------------------------------------------------------- /docs/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/docs/img/favicon.ico -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- 1 | # 2 | ![VertDocs Logo](/images/vdlogo2.png) 3 | 4 | 5 | -------------------------------------------------------------------------------- /docs/stylesheets/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/docs/stylesheets/extra.css -------------------------------------------------------------------------------- /images/2favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/images/2favicon.ico -------------------------------------------------------------------------------- /images/favcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/images/favcon.png -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/readme.md -------------------------------------------------------------------------------- /vdmaterial/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/.babelrc -------------------------------------------------------------------------------- /vdmaterial/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/.editorconfig -------------------------------------------------------------------------------- /vdmaterial/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/.eslintignore -------------------------------------------------------------------------------- /vdmaterial/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/.eslintrc -------------------------------------------------------------------------------- /vdmaterial/.flowconfig: -------------------------------------------------------------------------------- 1 | [ignore] 2 | .*/node_modules/.* 3 | 4 | [libs] 5 | lib/declarations/ 6 | -------------------------------------------------------------------------------- /vdmaterial/.githooks/commit-msg/skip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/.githooks/commit-msg/skip.sh -------------------------------------------------------------------------------- /vdmaterial/.githooks/post-merge/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/.githooks/post-merge/install.sh -------------------------------------------------------------------------------- /vdmaterial/.githooks/pre-commit/branch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/.githooks/pre-commit/branch.sh -------------------------------------------------------------------------------- /vdmaterial/.githooks/pre-commit/check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/.githooks/pre-commit/check.sh -------------------------------------------------------------------------------- /vdmaterial/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /vdmaterial/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/.gitignore -------------------------------------------------------------------------------- /vdmaterial/.stylelintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/.stylelintignore -------------------------------------------------------------------------------- /vdmaterial/.stylelintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/.stylelintrc -------------------------------------------------------------------------------- /vdmaterial/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/.travis.yml -------------------------------------------------------------------------------- /vdmaterial/.travisignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/.travisignore -------------------------------------------------------------------------------- /vdmaterial/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/CHANGELOG -------------------------------------------------------------------------------- /vdmaterial/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /vdmaterial/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/CONTRIBUTING.md -------------------------------------------------------------------------------- /vdmaterial/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/Dockerfile -------------------------------------------------------------------------------- /vdmaterial/Gulpfile.babel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/Gulpfile.babel.js -------------------------------------------------------------------------------- /vdmaterial/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/LICENSE -------------------------------------------------------------------------------- /vdmaterial/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/MANIFEST.in -------------------------------------------------------------------------------- /vdmaterial/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/README.md -------------------------------------------------------------------------------- /vdmaterial/lib/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/lib/.eslintrc -------------------------------------------------------------------------------- /vdmaterial/lib/declarations/clipboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/lib/declarations/clipboard.js -------------------------------------------------------------------------------- /vdmaterial/lib/declarations/escape-string-regexp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/lib/declarations/escape-string-regexp.js -------------------------------------------------------------------------------- /vdmaterial/lib/declarations/fastclick.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/lib/declarations/fastclick.js -------------------------------------------------------------------------------- /vdmaterial/lib/declarations/js-cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/lib/declarations/js-cookie.js -------------------------------------------------------------------------------- /vdmaterial/lib/declarations/jsx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/lib/declarations/jsx.js -------------------------------------------------------------------------------- /vdmaterial/lib/declarations/lunr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/lib/declarations/lunr.js -------------------------------------------------------------------------------- /vdmaterial/lib/declarations/modernizr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/lib/declarations/modernizr.js -------------------------------------------------------------------------------- /vdmaterial/lib/providers/jsx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/lib/providers/jsx.js -------------------------------------------------------------------------------- /vdmaterial/lib/tasks/assets/images/build/ico.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/lib/tasks/assets/images/build/ico.js -------------------------------------------------------------------------------- /vdmaterial/lib/tasks/assets/images/build/svg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/lib/tasks/assets/images/build/svg.js -------------------------------------------------------------------------------- /vdmaterial/lib/tasks/assets/images/clean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/lib/tasks/assets/images/clean.js -------------------------------------------------------------------------------- /vdmaterial/lib/tasks/assets/javascripts/annotate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/lib/tasks/assets/javascripts/annotate.js -------------------------------------------------------------------------------- /vdmaterial/lib/tasks/assets/javascripts/build/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/lib/tasks/assets/javascripts/build/application.js -------------------------------------------------------------------------------- /vdmaterial/lib/tasks/assets/javascripts/build/languages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/lib/tasks/assets/javascripts/build/languages.js -------------------------------------------------------------------------------- /vdmaterial/lib/tasks/assets/javascripts/build/modernizr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/lib/tasks/assets/javascripts/build/modernizr.js -------------------------------------------------------------------------------- /vdmaterial/lib/tasks/assets/javascripts/clean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/lib/tasks/assets/javascripts/clean.js -------------------------------------------------------------------------------- /vdmaterial/lib/tasks/assets/javascripts/lint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/lib/tasks/assets/javascripts/lint.js -------------------------------------------------------------------------------- /vdmaterial/lib/tasks/assets/stylesheets/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/lib/tasks/assets/stylesheets/build.js -------------------------------------------------------------------------------- /vdmaterial/lib/tasks/assets/stylesheets/clean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/lib/tasks/assets/stylesheets/clean.js -------------------------------------------------------------------------------- /vdmaterial/lib/tasks/assets/stylesheets/lint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/lib/tasks/assets/stylesheets/lint.js -------------------------------------------------------------------------------- /vdmaterial/lib/tasks/mkdocs/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/lib/tasks/mkdocs/build.js -------------------------------------------------------------------------------- /vdmaterial/lib/tasks/mkdocs/clean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/lib/tasks/mkdocs/clean.js -------------------------------------------------------------------------------- /vdmaterial/lib/tasks/mkdocs/serve.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/lib/tasks/mkdocs/serve.js -------------------------------------------------------------------------------- /vdmaterial/lib/tasks/views/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/lib/tasks/views/build.js -------------------------------------------------------------------------------- /vdmaterial/lib/tasks/views/clean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/lib/tasks/views/clean.js -------------------------------------------------------------------------------- /vdmaterial/material/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/material/404.html -------------------------------------------------------------------------------- /vdmaterial/material/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vdmaterial/material/assets/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/material/assets/images/favicon.ico -------------------------------------------------------------------------------- /vdmaterial/material/assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/material/assets/images/favicon.png -------------------------------------------------------------------------------- /vdmaterial/material/assets/images/icons/bitbucket-670608a71a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/material/assets/images/icons/bitbucket-670608a71a.svg -------------------------------------------------------------------------------- /vdmaterial/material/assets/images/icons/github-1da075986e.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/material/assets/images/icons/github-1da075986e.svg -------------------------------------------------------------------------------- /vdmaterial/material/assets/images/icons/gitlab-5ad3f9f9e5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/material/assets/images/icons/gitlab-5ad3f9f9e5.svg -------------------------------------------------------------------------------- /vdmaterial/material/assets/javascripts/application-f3ab9e5ff8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/material/assets/javascripts/application-f3ab9e5ff8.js -------------------------------------------------------------------------------- /vdmaterial/material/assets/javascripts/lunr/lunr.da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/material/assets/javascripts/lunr/lunr.da.js -------------------------------------------------------------------------------- /vdmaterial/material/assets/javascripts/lunr/lunr.de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/material/assets/javascripts/lunr/lunr.de.js -------------------------------------------------------------------------------- /vdmaterial/material/assets/javascripts/lunr/lunr.du.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/material/assets/javascripts/lunr/lunr.du.js -------------------------------------------------------------------------------- /vdmaterial/material/assets/javascripts/lunr/lunr.es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/material/assets/javascripts/lunr/lunr.es.js -------------------------------------------------------------------------------- /vdmaterial/material/assets/javascripts/lunr/lunr.fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/material/assets/javascripts/lunr/lunr.fi.js -------------------------------------------------------------------------------- /vdmaterial/material/assets/javascripts/lunr/lunr.fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/material/assets/javascripts/lunr/lunr.fr.js -------------------------------------------------------------------------------- /vdmaterial/material/assets/javascripts/lunr/lunr.hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/material/assets/javascripts/lunr/lunr.hu.js -------------------------------------------------------------------------------- /vdmaterial/material/assets/javascripts/lunr/lunr.it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/material/assets/javascripts/lunr/lunr.it.js -------------------------------------------------------------------------------- /vdmaterial/material/assets/javascripts/lunr/lunr.jp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/material/assets/javascripts/lunr/lunr.jp.js -------------------------------------------------------------------------------- /vdmaterial/material/assets/javascripts/lunr/lunr.multi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/material/assets/javascripts/lunr/lunr.multi.js -------------------------------------------------------------------------------- /vdmaterial/material/assets/javascripts/lunr/lunr.no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/material/assets/javascripts/lunr/lunr.no.js -------------------------------------------------------------------------------- /vdmaterial/material/assets/javascripts/lunr/lunr.pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/material/assets/javascripts/lunr/lunr.pt.js -------------------------------------------------------------------------------- /vdmaterial/material/assets/javascripts/lunr/lunr.ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/material/assets/javascripts/lunr/lunr.ro.js -------------------------------------------------------------------------------- /vdmaterial/material/assets/javascripts/lunr/lunr.ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/material/assets/javascripts/lunr/lunr.ru.js -------------------------------------------------------------------------------- /vdmaterial/material/assets/javascripts/lunr/lunr.stemmer.support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/material/assets/javascripts/lunr/lunr.stemmer.support.js -------------------------------------------------------------------------------- /vdmaterial/material/assets/javascripts/lunr/lunr.sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/material/assets/javascripts/lunr/lunr.sv.js -------------------------------------------------------------------------------- /vdmaterial/material/assets/javascripts/lunr/lunr.tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/material/assets/javascripts/lunr/lunr.tr.js -------------------------------------------------------------------------------- /vdmaterial/material/assets/javascripts/lunr/tinyseg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/material/assets/javascripts/lunr/tinyseg.js -------------------------------------------------------------------------------- /vdmaterial/material/assets/javascripts/modernizr-e826f8942a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/material/assets/javascripts/modernizr-e826f8942a.js -------------------------------------------------------------------------------- /vdmaterial/material/assets/stylesheets/application-23f75ab9c7.palette.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/material/assets/stylesheets/application-23f75ab9c7.palette.css -------------------------------------------------------------------------------- /vdmaterial/material/assets/stylesheets/application-b6a6d08807.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/material/assets/stylesheets/application-b6a6d08807.css -------------------------------------------------------------------------------- /vdmaterial/material/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/material/base.html -------------------------------------------------------------------------------- /vdmaterial/material/main.html: -------------------------------------------------------------------------------- 1 | {% extends "base.html" %} 2 | -------------------------------------------------------------------------------- /vdmaterial/material/partials/disqus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/material/partials/disqus.html -------------------------------------------------------------------------------- /vdmaterial/material/partials/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/material/partials/footer.html -------------------------------------------------------------------------------- /vdmaterial/material/partials/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/material/partials/header.html -------------------------------------------------------------------------------- /vdmaterial/material/partials/language.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/material/partials/language.html -------------------------------------------------------------------------------- /vdmaterial/material/partials/nav-item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/material/partials/nav-item.html -------------------------------------------------------------------------------- /vdmaterial/material/partials/nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/material/partials/nav.html -------------------------------------------------------------------------------- /vdmaterial/material/partials/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/material/partials/search.html -------------------------------------------------------------------------------- /vdmaterial/material/partials/social.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/material/partials/social.html -------------------------------------------------------------------------------- /vdmaterial/material/partials/source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/material/partials/source.html -------------------------------------------------------------------------------- /vdmaterial/material/partials/tabs-item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/material/partials/tabs-item.html -------------------------------------------------------------------------------- /vdmaterial/material/partials/tabs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/material/partials/tabs.html -------------------------------------------------------------------------------- /vdmaterial/material/partials/toc-item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/material/partials/toc-item.html -------------------------------------------------------------------------------- /vdmaterial/material/partials/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/material/partials/toc.html -------------------------------------------------------------------------------- /vdmaterial/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/mkdocs.yml -------------------------------------------------------------------------------- /vdmaterial/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/package.json -------------------------------------------------------------------------------- /vdmaterial/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/requirements.txt -------------------------------------------------------------------------------- /vdmaterial/scripts/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/scripts/build -------------------------------------------------------------------------------- /vdmaterial/scripts/clean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/scripts/clean -------------------------------------------------------------------------------- /vdmaterial/scripts/flow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/scripts/flow -------------------------------------------------------------------------------- /vdmaterial/scripts/help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/scripts/help -------------------------------------------------------------------------------- /vdmaterial/scripts/lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/scripts/lint -------------------------------------------------------------------------------- /vdmaterial/scripts/start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/scripts/start -------------------------------------------------------------------------------- /vdmaterial/scripts/travis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/scripts/travis -------------------------------------------------------------------------------- /vdmaterial/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/setup.py -------------------------------------------------------------------------------- /vdmaterial/src/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/src/.babelrc -------------------------------------------------------------------------------- /vdmaterial/src/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/src/404.html -------------------------------------------------------------------------------- /vdmaterial/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vdmaterial/src/assets/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/src/assets/images/favicon.ico -------------------------------------------------------------------------------- /vdmaterial/src/assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/src/assets/images/favicon.png -------------------------------------------------------------------------------- /vdmaterial/src/assets/images/icons/bitbucket.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/src/assets/images/icons/bitbucket.svg -------------------------------------------------------------------------------- /vdmaterial/src/assets/images/icons/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/src/assets/images/icons/github.svg -------------------------------------------------------------------------------- /vdmaterial/src/assets/images/icons/gitlab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/src/assets/images/icons/gitlab.svg -------------------------------------------------------------------------------- /vdmaterial/src/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/src/assets/javascripts/application.js -------------------------------------------------------------------------------- /vdmaterial/src/assets/javascripts/components/Material.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/src/assets/javascripts/components/Material.js -------------------------------------------------------------------------------- /vdmaterial/src/assets/javascripts/components/Material/Event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/src/assets/javascripts/components/Material/Event.js -------------------------------------------------------------------------------- /vdmaterial/src/assets/javascripts/components/Material/Event/Listener.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/src/assets/javascripts/components/Material/Event/Listener.js -------------------------------------------------------------------------------- /vdmaterial/src/assets/javascripts/components/Material/Event/MatchMedia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/src/assets/javascripts/components/Material/Event/MatchMedia.js -------------------------------------------------------------------------------- /vdmaterial/src/assets/javascripts/components/Material/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/src/assets/javascripts/components/Material/Header.js -------------------------------------------------------------------------------- /vdmaterial/src/assets/javascripts/components/Material/Header/Shadow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/src/assets/javascripts/components/Material/Header/Shadow.js -------------------------------------------------------------------------------- /vdmaterial/src/assets/javascripts/components/Material/Nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/src/assets/javascripts/components/Material/Nav.js -------------------------------------------------------------------------------- /vdmaterial/src/assets/javascripts/components/Material/Nav/Blur.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/src/assets/javascripts/components/Material/Nav/Blur.js -------------------------------------------------------------------------------- /vdmaterial/src/assets/javascripts/components/Material/Nav/Collapse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/src/assets/javascripts/components/Material/Nav/Collapse.js -------------------------------------------------------------------------------- /vdmaterial/src/assets/javascripts/components/Material/Nav/Scrolling.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/src/assets/javascripts/components/Material/Nav/Scrolling.js -------------------------------------------------------------------------------- /vdmaterial/src/assets/javascripts/components/Material/Search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/src/assets/javascripts/components/Material/Search.js -------------------------------------------------------------------------------- /vdmaterial/src/assets/javascripts/components/Material/Search/Lock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/src/assets/javascripts/components/Material/Search/Lock.js -------------------------------------------------------------------------------- /vdmaterial/src/assets/javascripts/components/Material/Search/Result.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/src/assets/javascripts/components/Material/Search/Result.jsx -------------------------------------------------------------------------------- /vdmaterial/src/assets/javascripts/components/Material/Sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/src/assets/javascripts/components/Material/Sidebar.js -------------------------------------------------------------------------------- /vdmaterial/src/assets/javascripts/components/Material/Sidebar/Position.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/src/assets/javascripts/components/Material/Sidebar/Position.js -------------------------------------------------------------------------------- /vdmaterial/src/assets/javascripts/components/Material/Source.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/src/assets/javascripts/components/Material/Source.js -------------------------------------------------------------------------------- /vdmaterial/src/assets/javascripts/components/Material/Source/Adapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/src/assets/javascripts/components/Material/Source/Adapter.js -------------------------------------------------------------------------------- /vdmaterial/src/assets/javascripts/components/Material/Source/Adapter/Abstract.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/src/assets/javascripts/components/Material/Source/Adapter/Abstract.js -------------------------------------------------------------------------------- /vdmaterial/src/assets/javascripts/components/Material/Source/Adapter/GitHub.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/src/assets/javascripts/components/Material/Source/Adapter/GitHub.js -------------------------------------------------------------------------------- /vdmaterial/src/assets/javascripts/components/Material/Source/Repository.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/src/assets/javascripts/components/Material/Source/Repository.jsx -------------------------------------------------------------------------------- /vdmaterial/src/assets/javascripts/components/Material/Tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/src/assets/javascripts/components/Material/Tabs.js -------------------------------------------------------------------------------- /vdmaterial/src/assets/javascripts/components/Material/Tabs/Toggle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/src/assets/javascripts/components/Material/Tabs/Toggle.js -------------------------------------------------------------------------------- /vdmaterial/src/assets/stylesheets/_config.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/src/assets/stylesheets/_config.scss -------------------------------------------------------------------------------- /vdmaterial/src/assets/stylesheets/_shame.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/src/assets/stylesheets/_shame.scss -------------------------------------------------------------------------------- /vdmaterial/src/assets/stylesheets/application.palette.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/src/assets/stylesheets/application.palette.scss -------------------------------------------------------------------------------- /vdmaterial/src/assets/stylesheets/application.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/src/assets/stylesheets/application.scss -------------------------------------------------------------------------------- /vdmaterial/src/assets/stylesheets/base/.stylelintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/src/assets/stylesheets/base/.stylelintrc -------------------------------------------------------------------------------- /vdmaterial/src/assets/stylesheets/base/_icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/src/assets/stylesheets/base/_icons.scss -------------------------------------------------------------------------------- /vdmaterial/src/assets/stylesheets/base/_reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/src/assets/stylesheets/base/_reset.scss -------------------------------------------------------------------------------- /vdmaterial/src/assets/stylesheets/base/_typeset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/src/assets/stylesheets/base/_typeset.scss -------------------------------------------------------------------------------- /vdmaterial/src/assets/stylesheets/extensions/_admonition.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/src/assets/stylesheets/extensions/_admonition.scss -------------------------------------------------------------------------------- /vdmaterial/src/assets/stylesheets/extensions/_codehilite.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/src/assets/stylesheets/extensions/_codehilite.scss -------------------------------------------------------------------------------- /vdmaterial/src/assets/stylesheets/extensions/_footnotes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/src/assets/stylesheets/extensions/_footnotes.scss -------------------------------------------------------------------------------- /vdmaterial/src/assets/stylesheets/extensions/_permalinks.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/src/assets/stylesheets/extensions/_permalinks.scss -------------------------------------------------------------------------------- /vdmaterial/src/assets/stylesheets/extensions/pymdown/_arithmatex.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/src/assets/stylesheets/extensions/pymdown/_arithmatex.scss -------------------------------------------------------------------------------- /vdmaterial/src/assets/stylesheets/extensions/pymdown/_critic.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/src/assets/stylesheets/extensions/pymdown/_critic.scss -------------------------------------------------------------------------------- /vdmaterial/src/assets/stylesheets/extensions/pymdown/_details.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/src/assets/stylesheets/extensions/pymdown/_details.scss -------------------------------------------------------------------------------- /vdmaterial/src/assets/stylesheets/extensions/pymdown/_emoji.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/src/assets/stylesheets/extensions/pymdown/_emoji.scss -------------------------------------------------------------------------------- /vdmaterial/src/assets/stylesheets/extensions/pymdown/_inlinehilite.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/src/assets/stylesheets/extensions/pymdown/_inlinehilite.scss -------------------------------------------------------------------------------- /vdmaterial/src/assets/stylesheets/extensions/pymdown/_tasklist.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/src/assets/stylesheets/extensions/pymdown/_tasklist.scss -------------------------------------------------------------------------------- /vdmaterial/src/assets/stylesheets/helpers/_break.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/src/assets/stylesheets/helpers/_break.scss -------------------------------------------------------------------------------- /vdmaterial/src/assets/stylesheets/helpers/_px2em.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/src/assets/stylesheets/helpers/_px2em.scss -------------------------------------------------------------------------------- /vdmaterial/src/assets/stylesheets/layout/_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/src/assets/stylesheets/layout/_base.scss -------------------------------------------------------------------------------- /vdmaterial/src/assets/stylesheets/layout/_clipboard.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/src/assets/stylesheets/layout/_clipboard.scss -------------------------------------------------------------------------------- /vdmaterial/src/assets/stylesheets/layout/_content.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/src/assets/stylesheets/layout/_content.scss -------------------------------------------------------------------------------- /vdmaterial/src/assets/stylesheets/layout/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/src/assets/stylesheets/layout/_footer.scss -------------------------------------------------------------------------------- /vdmaterial/src/assets/stylesheets/layout/_header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/src/assets/stylesheets/layout/_header.scss -------------------------------------------------------------------------------- /vdmaterial/src/assets/stylesheets/layout/_nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/src/assets/stylesheets/layout/_nav.scss -------------------------------------------------------------------------------- /vdmaterial/src/assets/stylesheets/layout/_search.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/src/assets/stylesheets/layout/_search.scss -------------------------------------------------------------------------------- /vdmaterial/src/assets/stylesheets/layout/_sidebar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/src/assets/stylesheets/layout/_sidebar.scss -------------------------------------------------------------------------------- /vdmaterial/src/assets/stylesheets/layout/_source.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/src/assets/stylesheets/layout/_source.scss -------------------------------------------------------------------------------- /vdmaterial/src/assets/stylesheets/layout/_tabs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/src/assets/stylesheets/layout/_tabs.scss -------------------------------------------------------------------------------- /vdmaterial/src/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/src/base.html -------------------------------------------------------------------------------- /vdmaterial/src/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/src/main.html -------------------------------------------------------------------------------- /vdmaterial/src/partials/disqus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/src/partials/disqus.html -------------------------------------------------------------------------------- /vdmaterial/src/partials/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/src/partials/footer.html -------------------------------------------------------------------------------- /vdmaterial/src/partials/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/src/partials/header.html -------------------------------------------------------------------------------- /vdmaterial/src/partials/language.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/src/partials/language.html -------------------------------------------------------------------------------- /vdmaterial/src/partials/nav-item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/src/partials/nav-item.html -------------------------------------------------------------------------------- /vdmaterial/src/partials/nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/src/partials/nav.html -------------------------------------------------------------------------------- /vdmaterial/src/partials/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/src/partials/search.html -------------------------------------------------------------------------------- /vdmaterial/src/partials/social.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/src/partials/social.html -------------------------------------------------------------------------------- /vdmaterial/src/partials/source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/src/partials/source.html -------------------------------------------------------------------------------- /vdmaterial/src/partials/tabs-item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/src/partials/tabs-item.html -------------------------------------------------------------------------------- /vdmaterial/src/partials/tabs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/src/partials/tabs.html -------------------------------------------------------------------------------- /vdmaterial/src/partials/toc-item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/src/partials/toc-item.html -------------------------------------------------------------------------------- /vdmaterial/src/partials/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/src/partials/toc.html -------------------------------------------------------------------------------- /vdmaterial/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertcoin-project/VertDocs/HEAD/vdmaterial/yarn.lock --------------------------------------------------------------------------------