├── .github ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── gitcoin-bounty.md ├── pull_request_template.md └── workflows │ └── always_fail_workflow.yaml ├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── _config.yml ├── scripts └── deploy-pinata.js ├── templates ├── community │ ├── 4sale │ │ ├── README.md │ │ ├── assets │ │ │ ├── Lato-Black.ttf │ │ │ ├── Montserrat-Bold.ttf │ │ │ ├── Montserrat-Regular.ttf │ │ │ ├── email.svg │ │ │ ├── favicon.ico │ │ │ ├── opensea.png │ │ │ ├── screenshot-desktop.png │ │ │ └── telegram.svg │ │ ├── index.html │ │ └── styles.css │ ├── ambitious-opacity │ │ ├── assets │ │ │ ├── Lato-Black.ttf │ │ │ ├── Lato-Bold.ttf │ │ │ ├── Lato-Regular.ttf │ │ │ ├── favicon.ico │ │ │ └── image.png │ │ ├── index.html │ │ └── styles.css │ ├── elipsis │ │ ├── index.html │ │ ├── media │ │ │ ├── Kodchasan-Regular.ttf │ │ │ └── avatar.png │ │ ├── script.js │ │ └── style.css │ ├── ipfs-music-player │ │ ├── README.md │ │ ├── package.json │ │ ├── public │ │ │ ├── img │ │ │ │ └── favicon.ico │ │ │ ├── index.html │ │ │ ├── manifest.json │ │ │ └── robots.txt │ │ └── src │ │ │ ├── .gitignore │ │ │ ├── AlbumArt.jsx │ │ │ ├── App.js │ │ │ ├── AudioPlayer.jsx │ │ │ ├── Background.jsx │ │ │ ├── fonts │ │ │ ├── DISKOPIA2.0.eot │ │ │ ├── DISKOPIA2.0.otf │ │ │ ├── DISKOPIA2.0.svg │ │ │ ├── DISKOPIA2.0.woff │ │ │ └── diskopia.ttf │ │ │ ├── index.js │ │ │ ├── media │ │ │ ├── summer.jpg │ │ │ ├── summer.mp3 │ │ │ └── vultures.png │ │ │ └── style.css │ ├── personal-minimalist │ │ ├── README.md │ │ ├── assets │ │ │ ├── archivo-v6-latin-700.0fc4d995.woff │ │ │ ├── archivo-v6-latin-700.15a966af.woff2 │ │ │ ├── archivo-v6-latin-regular.1be51473.woff2 │ │ │ ├── archivo-v6-latin-regular.7aab310f.woff │ │ │ ├── dot.14f07379.svg │ │ │ ├── photo.a2d58053.jpg │ │ │ └── screenshot.png │ │ ├── index.html │ │ └── styles.css │ ├── simple-portfolio-theme │ │ ├── assets │ │ │ ├── css │ │ │ │ ├── bootstrap.min.css │ │ │ │ └── main.css │ │ │ ├── fonts │ │ │ │ ├── Muli-Regular.ttf │ │ │ │ ├── Oswald-Regular.ttf │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ └── glyphicons-halflings-regular.woff │ │ │ ├── img │ │ │ │ ├── d1.jpg │ │ │ │ ├── d2.jpg │ │ │ │ ├── d3.jpg │ │ │ │ ├── favicon.ico │ │ │ │ ├── header-bg.jpg │ │ │ │ └── profilepic.png │ │ │ └── js │ │ │ │ ├── bootstrap.min.js │ │ │ │ ├── jquery-3.4.1.min.js │ │ │ │ ├── menu.js │ │ │ │ └── smoothscroll.js │ │ └── index.html │ ├── stellar-simple │ │ ├── LICENSE.txt │ │ ├── README.txt │ │ ├── assets │ │ │ ├── css │ │ │ │ ├── fontawesome-all.min.css │ │ │ │ ├── images │ │ │ │ │ └── overlay.png │ │ │ │ ├── main.css │ │ │ │ └── noscript.css │ │ │ ├── js │ │ │ │ ├── breakpoints.min.js │ │ │ │ ├── browser.min.js │ │ │ │ ├── jquery.min.js │ │ │ │ ├── jquery.scrollex.min.js │ │ │ │ ├── jquery.scrolly.min.js │ │ │ │ ├── main.js │ │ │ │ └── util.js │ │ │ ├── sass │ │ │ │ ├── base │ │ │ │ │ ├── _page.scss │ │ │ │ │ ├── _reset.scss │ │ │ │ │ └── _typography.scss │ │ │ │ ├── components │ │ │ │ │ ├── _actions.scss │ │ │ │ │ ├── _box.scss │ │ │ │ │ ├── _button.scss │ │ │ │ │ ├── _features.scss │ │ │ │ │ ├── _form.scss │ │ │ │ │ ├── _icon.scss │ │ │ │ │ ├── _icons.scss │ │ │ │ │ ├── _image.scss │ │ │ │ │ ├── _list.scss │ │ │ │ │ ├── _row.scss │ │ │ │ │ ├── _section.scss │ │ │ │ │ ├── _spotlight.scss │ │ │ │ │ ├── _statistics.scss │ │ │ │ │ └── _table.scss │ │ │ │ ├── layout │ │ │ │ │ ├── _footer.scss │ │ │ │ │ ├── _header.scss │ │ │ │ │ ├── _main.scss │ │ │ │ │ ├── _nav.scss │ │ │ │ │ └── _wrapper.scss │ │ │ │ ├── libs │ │ │ │ │ ├── _breakpoints.scss │ │ │ │ │ ├── _functions.scss │ │ │ │ │ ├── _html-grid.scss │ │ │ │ │ ├── _mixins.scss │ │ │ │ │ ├── _vars.scss │ │ │ │ │ └── _vendor.scss │ │ │ │ ├── main.scss │ │ │ │ └── noscript.scss │ │ │ └── webfonts │ │ │ │ ├── fa-brands-400.eot │ │ │ │ ├── fa-brands-400.svg │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ ├── fa-brands-400.woff │ │ │ │ ├── fa-brands-400.woff2 │ │ │ │ ├── fa-regular-400.eot │ │ │ │ ├── fa-regular-400.svg │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ ├── fa-regular-400.woff │ │ │ │ ├── fa-regular-400.woff2 │ │ │ │ ├── fa-solid-900.eot │ │ │ │ ├── fa-solid-900.svg │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ ├── fa-solid-900.woff │ │ │ │ └── fa-solid-900.woff2 │ │ ├── images │ │ │ ├── logo.svg │ │ │ ├── pic01.jpg │ │ │ ├── pic02.jpg │ │ │ ├── pic03.jpg │ │ │ ├── pic04.jpg │ │ │ ├── pic05.jpg │ │ │ └── pic06.jpg │ │ └── index.html │ ├── stellar │ │ ├── LICENSE.txt │ │ ├── README.txt │ │ ├── assets │ │ │ ├── css │ │ │ │ ├── fontawesome-all.min.css │ │ │ │ ├── images │ │ │ │ │ └── overlay.png │ │ │ │ ├── main.css │ │ │ │ └── noscript.css │ │ │ ├── js │ │ │ │ ├── breakpoints.min.js │ │ │ │ ├── browser.min.js │ │ │ │ ├── jquery.min.js │ │ │ │ ├── jquery.scrollex.min.js │ │ │ │ ├── jquery.scrolly.min.js │ │ │ │ ├── main.js │ │ │ │ └── util.js │ │ │ ├── sass │ │ │ │ ├── base │ │ │ │ │ ├── _page.scss │ │ │ │ │ ├── _reset.scss │ │ │ │ │ └── _typography.scss │ │ │ │ ├── components │ │ │ │ │ ├── _actions.scss │ │ │ │ │ ├── _box.scss │ │ │ │ │ ├── _button.scss │ │ │ │ │ ├── _features.scss │ │ │ │ │ ├── _form.scss │ │ │ │ │ ├── _icon.scss │ │ │ │ │ ├── _icons.scss │ │ │ │ │ ├── _image.scss │ │ │ │ │ ├── _list.scss │ │ │ │ │ ├── _row.scss │ │ │ │ │ ├── _section.scss │ │ │ │ │ ├── _spotlight.scss │ │ │ │ │ ├── _statistics.scss │ │ │ │ │ └── _table.scss │ │ │ │ ├── layout │ │ │ │ │ ├── _footer.scss │ │ │ │ │ ├── _header.scss │ │ │ │ │ ├── _main.scss │ │ │ │ │ ├── _nav.scss │ │ │ │ │ └── _wrapper.scss │ │ │ │ ├── libs │ │ │ │ │ ├── _breakpoints.scss │ │ │ │ │ ├── _functions.scss │ │ │ │ │ ├── _html-grid.scss │ │ │ │ │ ├── _mixins.scss │ │ │ │ │ ├── _vars.scss │ │ │ │ │ └── _vendor.scss │ │ │ │ ├── main.scss │ │ │ │ └── noscript.scss │ │ │ └── webfonts │ │ │ │ ├── fa-brands-400.eot │ │ │ │ ├── fa-brands-400.svg │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ ├── fa-brands-400.woff │ │ │ │ ├── fa-brands-400.woff2 │ │ │ │ ├── fa-regular-400.eot │ │ │ │ ├── fa-regular-400.svg │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ ├── fa-regular-400.woff │ │ │ │ ├── fa-regular-400.woff2 │ │ │ │ ├── fa-solid-900.eot │ │ │ │ ├── fa-solid-900.svg │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ ├── fa-solid-900.woff │ │ │ │ └── fa-solid-900.woff2 │ │ ├── images │ │ │ ├── logo.svg │ │ │ ├── pic01.jpg │ │ │ ├── pic02.jpg │ │ │ ├── pic03.jpg │ │ │ ├── pic04.jpg │ │ │ ├── pic05.jpg │ │ │ └── pic06.jpg │ │ └── index.html │ └── web3-ui-components │ │ └── guarda-donate-button │ │ ├── guarda_pay_off.png │ │ ├── guarda_pay_over.png │ │ └── index.html └── unstoppable-domains │ ├── ambitious │ ├── assets │ │ ├── Lato-Black.ttf │ │ ├── Lato-Bold.ttf │ │ ├── Lato-Regular.ttf │ │ ├── favicon.ico │ │ └── image.png │ ├── index.html │ └── styles.css │ ├── coming-soon │ ├── assets │ │ ├── Lato-Black.ttf │ │ ├── Montserrat-Bold.ttf │ │ ├── Montserrat-Regular.ttf │ │ ├── favicon.ico │ │ └── image.png │ ├── index.html │ └── styles.css │ ├── gentle │ ├── assets │ │ ├── Montserrat-Bold.ttf │ │ ├── Montserrat-Regular.ttf │ │ ├── favicon.ico │ │ └── image.png │ ├── index.html │ └── styles.css │ └── outstanding │ ├── assets │ ├── Lato-Black.ttf │ ├── Lato-Bold.ttf │ ├── Lato-Regular.ttf │ ├── favicon.ico │ └── image.png │ ├── index.html │ └── styles.css └── unstoppable-logo.svg /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @donald-stolz 2 | -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/gitcoin-bounty.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/.github/ISSUE_TEMPLATE/gitcoin-bounty.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/always_fail_workflow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/.github/workflows/always_fail_workflow.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/_config.yml -------------------------------------------------------------------------------- /scripts/deploy-pinata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/scripts/deploy-pinata.js -------------------------------------------------------------------------------- /templates/community/4sale/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/4sale/README.md -------------------------------------------------------------------------------- /templates/community/4sale/assets/Lato-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/4sale/assets/Lato-Black.ttf -------------------------------------------------------------------------------- /templates/community/4sale/assets/Montserrat-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/4sale/assets/Montserrat-Bold.ttf -------------------------------------------------------------------------------- /templates/community/4sale/assets/Montserrat-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/4sale/assets/Montserrat-Regular.ttf -------------------------------------------------------------------------------- /templates/community/4sale/assets/email.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/4sale/assets/email.svg -------------------------------------------------------------------------------- /templates/community/4sale/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/4sale/assets/favicon.ico -------------------------------------------------------------------------------- /templates/community/4sale/assets/opensea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/4sale/assets/opensea.png -------------------------------------------------------------------------------- /templates/community/4sale/assets/screenshot-desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/4sale/assets/screenshot-desktop.png -------------------------------------------------------------------------------- /templates/community/4sale/assets/telegram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/4sale/assets/telegram.svg -------------------------------------------------------------------------------- /templates/community/4sale/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/4sale/index.html -------------------------------------------------------------------------------- /templates/community/4sale/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/4sale/styles.css -------------------------------------------------------------------------------- /templates/community/ambitious-opacity/assets/Lato-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/ambitious-opacity/assets/Lato-Black.ttf -------------------------------------------------------------------------------- /templates/community/ambitious-opacity/assets/Lato-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/ambitious-opacity/assets/Lato-Bold.ttf -------------------------------------------------------------------------------- /templates/community/ambitious-opacity/assets/Lato-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/ambitious-opacity/assets/Lato-Regular.ttf -------------------------------------------------------------------------------- /templates/community/ambitious-opacity/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/ambitious-opacity/assets/favicon.ico -------------------------------------------------------------------------------- /templates/community/ambitious-opacity/assets/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/ambitious-opacity/assets/image.png -------------------------------------------------------------------------------- /templates/community/ambitious-opacity/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/ambitious-opacity/index.html -------------------------------------------------------------------------------- /templates/community/ambitious-opacity/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/ambitious-opacity/styles.css -------------------------------------------------------------------------------- /templates/community/elipsis/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/elipsis/index.html -------------------------------------------------------------------------------- /templates/community/elipsis/media/Kodchasan-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/elipsis/media/Kodchasan-Regular.ttf -------------------------------------------------------------------------------- /templates/community/elipsis/media/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/elipsis/media/avatar.png -------------------------------------------------------------------------------- /templates/community/elipsis/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/elipsis/script.js -------------------------------------------------------------------------------- /templates/community/elipsis/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/elipsis/style.css -------------------------------------------------------------------------------- /templates/community/ipfs-music-player/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/ipfs-music-player/README.md -------------------------------------------------------------------------------- /templates/community/ipfs-music-player/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/ipfs-music-player/package.json -------------------------------------------------------------------------------- /templates/community/ipfs-music-player/public/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/ipfs-music-player/public/img/favicon.ico -------------------------------------------------------------------------------- /templates/community/ipfs-music-player/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/ipfs-music-player/public/index.html -------------------------------------------------------------------------------- /templates/community/ipfs-music-player/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/ipfs-music-player/public/manifest.json -------------------------------------------------------------------------------- /templates/community/ipfs-music-player/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/ipfs-music-player/public/robots.txt -------------------------------------------------------------------------------- /templates/community/ipfs-music-player/src/.gitignore: -------------------------------------------------------------------------------- 1 | package-lock.json 2 | node_modules/ -------------------------------------------------------------------------------- /templates/community/ipfs-music-player/src/AlbumArt.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/ipfs-music-player/src/AlbumArt.jsx -------------------------------------------------------------------------------- /templates/community/ipfs-music-player/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/ipfs-music-player/src/App.js -------------------------------------------------------------------------------- /templates/community/ipfs-music-player/src/AudioPlayer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/ipfs-music-player/src/AudioPlayer.jsx -------------------------------------------------------------------------------- /templates/community/ipfs-music-player/src/Background.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/ipfs-music-player/src/Background.jsx -------------------------------------------------------------------------------- /templates/community/ipfs-music-player/src/fonts/DISKOPIA2.0.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/ipfs-music-player/src/fonts/DISKOPIA2.0.eot -------------------------------------------------------------------------------- /templates/community/ipfs-music-player/src/fonts/DISKOPIA2.0.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/ipfs-music-player/src/fonts/DISKOPIA2.0.otf -------------------------------------------------------------------------------- /templates/community/ipfs-music-player/src/fonts/DISKOPIA2.0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/ipfs-music-player/src/fonts/DISKOPIA2.0.svg -------------------------------------------------------------------------------- /templates/community/ipfs-music-player/src/fonts/DISKOPIA2.0.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/ipfs-music-player/src/fonts/DISKOPIA2.0.woff -------------------------------------------------------------------------------- /templates/community/ipfs-music-player/src/fonts/diskopia.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/ipfs-music-player/src/fonts/diskopia.ttf -------------------------------------------------------------------------------- /templates/community/ipfs-music-player/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/ipfs-music-player/src/index.js -------------------------------------------------------------------------------- /templates/community/ipfs-music-player/src/media/summer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/ipfs-music-player/src/media/summer.jpg -------------------------------------------------------------------------------- /templates/community/ipfs-music-player/src/media/summer.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/ipfs-music-player/src/media/summer.mp3 -------------------------------------------------------------------------------- /templates/community/ipfs-music-player/src/media/vultures.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/ipfs-music-player/src/media/vultures.png -------------------------------------------------------------------------------- /templates/community/ipfs-music-player/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/ipfs-music-player/src/style.css -------------------------------------------------------------------------------- /templates/community/personal-minimalist/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/personal-minimalist/README.md -------------------------------------------------------------------------------- /templates/community/personal-minimalist/assets/archivo-v6-latin-700.0fc4d995.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/personal-minimalist/assets/archivo-v6-latin-700.0fc4d995.woff -------------------------------------------------------------------------------- /templates/community/personal-minimalist/assets/archivo-v6-latin-700.15a966af.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/personal-minimalist/assets/archivo-v6-latin-700.15a966af.woff2 -------------------------------------------------------------------------------- /templates/community/personal-minimalist/assets/archivo-v6-latin-regular.1be51473.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/personal-minimalist/assets/archivo-v6-latin-regular.1be51473.woff2 -------------------------------------------------------------------------------- /templates/community/personal-minimalist/assets/archivo-v6-latin-regular.7aab310f.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/personal-minimalist/assets/archivo-v6-latin-regular.7aab310f.woff -------------------------------------------------------------------------------- /templates/community/personal-minimalist/assets/dot.14f07379.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/personal-minimalist/assets/dot.14f07379.svg -------------------------------------------------------------------------------- /templates/community/personal-minimalist/assets/photo.a2d58053.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/personal-minimalist/assets/photo.a2d58053.jpg -------------------------------------------------------------------------------- /templates/community/personal-minimalist/assets/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/personal-minimalist/assets/screenshot.png -------------------------------------------------------------------------------- /templates/community/personal-minimalist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/personal-minimalist/index.html -------------------------------------------------------------------------------- /templates/community/personal-minimalist/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/personal-minimalist/styles.css -------------------------------------------------------------------------------- /templates/community/simple-portfolio-theme/assets/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/simple-portfolio-theme/assets/css/bootstrap.min.css -------------------------------------------------------------------------------- /templates/community/simple-portfolio-theme/assets/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/simple-portfolio-theme/assets/css/main.css -------------------------------------------------------------------------------- /templates/community/simple-portfolio-theme/assets/fonts/Muli-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/simple-portfolio-theme/assets/fonts/Muli-Regular.ttf -------------------------------------------------------------------------------- /templates/community/simple-portfolio-theme/assets/fonts/Oswald-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/simple-portfolio-theme/assets/fonts/Oswald-Regular.ttf -------------------------------------------------------------------------------- /templates/community/simple-portfolio-theme/assets/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/simple-portfolio-theme/assets/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /templates/community/simple-portfolio-theme/assets/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/simple-portfolio-theme/assets/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /templates/community/simple-portfolio-theme/assets/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/simple-portfolio-theme/assets/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /templates/community/simple-portfolio-theme/assets/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/simple-portfolio-theme/assets/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /templates/community/simple-portfolio-theme/assets/img/d1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/simple-portfolio-theme/assets/img/d1.jpg -------------------------------------------------------------------------------- /templates/community/simple-portfolio-theme/assets/img/d2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/simple-portfolio-theme/assets/img/d2.jpg -------------------------------------------------------------------------------- /templates/community/simple-portfolio-theme/assets/img/d3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/simple-portfolio-theme/assets/img/d3.jpg -------------------------------------------------------------------------------- /templates/community/simple-portfolio-theme/assets/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/simple-portfolio-theme/assets/img/favicon.ico -------------------------------------------------------------------------------- /templates/community/simple-portfolio-theme/assets/img/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/simple-portfolio-theme/assets/img/header-bg.jpg -------------------------------------------------------------------------------- /templates/community/simple-portfolio-theme/assets/img/profilepic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/simple-portfolio-theme/assets/img/profilepic.png -------------------------------------------------------------------------------- /templates/community/simple-portfolio-theme/assets/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/simple-portfolio-theme/assets/js/bootstrap.min.js -------------------------------------------------------------------------------- /templates/community/simple-portfolio-theme/assets/js/jquery-3.4.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/simple-portfolio-theme/assets/js/jquery-3.4.1.min.js -------------------------------------------------------------------------------- /templates/community/simple-portfolio-theme/assets/js/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/simple-portfolio-theme/assets/js/menu.js -------------------------------------------------------------------------------- /templates/community/simple-portfolio-theme/assets/js/smoothscroll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/simple-portfolio-theme/assets/js/smoothscroll.js -------------------------------------------------------------------------------- /templates/community/simple-portfolio-theme/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/simple-portfolio-theme/index.html -------------------------------------------------------------------------------- /templates/community/stellar-simple/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar-simple/LICENSE.txt -------------------------------------------------------------------------------- /templates/community/stellar-simple/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar-simple/README.txt -------------------------------------------------------------------------------- /templates/community/stellar-simple/assets/css/fontawesome-all.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar-simple/assets/css/fontawesome-all.min.css -------------------------------------------------------------------------------- /templates/community/stellar-simple/assets/css/images/overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar-simple/assets/css/images/overlay.png -------------------------------------------------------------------------------- /templates/community/stellar-simple/assets/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar-simple/assets/css/main.css -------------------------------------------------------------------------------- /templates/community/stellar-simple/assets/css/noscript.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar-simple/assets/css/noscript.css -------------------------------------------------------------------------------- /templates/community/stellar-simple/assets/js/breakpoints.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar-simple/assets/js/breakpoints.min.js -------------------------------------------------------------------------------- /templates/community/stellar-simple/assets/js/browser.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar-simple/assets/js/browser.min.js -------------------------------------------------------------------------------- /templates/community/stellar-simple/assets/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar-simple/assets/js/jquery.min.js -------------------------------------------------------------------------------- /templates/community/stellar-simple/assets/js/jquery.scrollex.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar-simple/assets/js/jquery.scrollex.min.js -------------------------------------------------------------------------------- /templates/community/stellar-simple/assets/js/jquery.scrolly.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar-simple/assets/js/jquery.scrolly.min.js -------------------------------------------------------------------------------- /templates/community/stellar-simple/assets/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar-simple/assets/js/main.js -------------------------------------------------------------------------------- /templates/community/stellar-simple/assets/js/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar-simple/assets/js/util.js -------------------------------------------------------------------------------- /templates/community/stellar-simple/assets/sass/base/_page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar-simple/assets/sass/base/_page.scss -------------------------------------------------------------------------------- /templates/community/stellar-simple/assets/sass/base/_reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar-simple/assets/sass/base/_reset.scss -------------------------------------------------------------------------------- /templates/community/stellar-simple/assets/sass/base/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar-simple/assets/sass/base/_typography.scss -------------------------------------------------------------------------------- /templates/community/stellar-simple/assets/sass/components/_actions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar-simple/assets/sass/components/_actions.scss -------------------------------------------------------------------------------- /templates/community/stellar-simple/assets/sass/components/_box.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar-simple/assets/sass/components/_box.scss -------------------------------------------------------------------------------- /templates/community/stellar-simple/assets/sass/components/_button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar-simple/assets/sass/components/_button.scss -------------------------------------------------------------------------------- /templates/community/stellar-simple/assets/sass/components/_features.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar-simple/assets/sass/components/_features.scss -------------------------------------------------------------------------------- /templates/community/stellar-simple/assets/sass/components/_form.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar-simple/assets/sass/components/_form.scss -------------------------------------------------------------------------------- /templates/community/stellar-simple/assets/sass/components/_icon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar-simple/assets/sass/components/_icon.scss -------------------------------------------------------------------------------- /templates/community/stellar-simple/assets/sass/components/_icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar-simple/assets/sass/components/_icons.scss -------------------------------------------------------------------------------- /templates/community/stellar-simple/assets/sass/components/_image.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar-simple/assets/sass/components/_image.scss -------------------------------------------------------------------------------- /templates/community/stellar-simple/assets/sass/components/_list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar-simple/assets/sass/components/_list.scss -------------------------------------------------------------------------------- /templates/community/stellar-simple/assets/sass/components/_row.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar-simple/assets/sass/components/_row.scss -------------------------------------------------------------------------------- /templates/community/stellar-simple/assets/sass/components/_section.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar-simple/assets/sass/components/_section.scss -------------------------------------------------------------------------------- /templates/community/stellar-simple/assets/sass/components/_spotlight.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar-simple/assets/sass/components/_spotlight.scss -------------------------------------------------------------------------------- /templates/community/stellar-simple/assets/sass/components/_statistics.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar-simple/assets/sass/components/_statistics.scss -------------------------------------------------------------------------------- /templates/community/stellar-simple/assets/sass/components/_table.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar-simple/assets/sass/components/_table.scss -------------------------------------------------------------------------------- /templates/community/stellar-simple/assets/sass/layout/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar-simple/assets/sass/layout/_footer.scss -------------------------------------------------------------------------------- /templates/community/stellar-simple/assets/sass/layout/_header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar-simple/assets/sass/layout/_header.scss -------------------------------------------------------------------------------- /templates/community/stellar-simple/assets/sass/layout/_main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar-simple/assets/sass/layout/_main.scss -------------------------------------------------------------------------------- /templates/community/stellar-simple/assets/sass/layout/_nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar-simple/assets/sass/layout/_nav.scss -------------------------------------------------------------------------------- /templates/community/stellar-simple/assets/sass/layout/_wrapper.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar-simple/assets/sass/layout/_wrapper.scss -------------------------------------------------------------------------------- /templates/community/stellar-simple/assets/sass/libs/_breakpoints.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar-simple/assets/sass/libs/_breakpoints.scss -------------------------------------------------------------------------------- /templates/community/stellar-simple/assets/sass/libs/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar-simple/assets/sass/libs/_functions.scss -------------------------------------------------------------------------------- /templates/community/stellar-simple/assets/sass/libs/_html-grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar-simple/assets/sass/libs/_html-grid.scss -------------------------------------------------------------------------------- /templates/community/stellar-simple/assets/sass/libs/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar-simple/assets/sass/libs/_mixins.scss -------------------------------------------------------------------------------- /templates/community/stellar-simple/assets/sass/libs/_vars.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar-simple/assets/sass/libs/_vars.scss -------------------------------------------------------------------------------- /templates/community/stellar-simple/assets/sass/libs/_vendor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar-simple/assets/sass/libs/_vendor.scss -------------------------------------------------------------------------------- /templates/community/stellar-simple/assets/sass/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar-simple/assets/sass/main.scss -------------------------------------------------------------------------------- /templates/community/stellar-simple/assets/sass/noscript.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar-simple/assets/sass/noscript.scss -------------------------------------------------------------------------------- /templates/community/stellar-simple/assets/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar-simple/assets/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /templates/community/stellar-simple/assets/webfonts/fa-brands-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar-simple/assets/webfonts/fa-brands-400.svg -------------------------------------------------------------------------------- /templates/community/stellar-simple/assets/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar-simple/assets/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /templates/community/stellar-simple/assets/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar-simple/assets/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /templates/community/stellar-simple/assets/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar-simple/assets/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /templates/community/stellar-simple/assets/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar-simple/assets/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /templates/community/stellar-simple/assets/webfonts/fa-regular-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar-simple/assets/webfonts/fa-regular-400.svg -------------------------------------------------------------------------------- /templates/community/stellar-simple/assets/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar-simple/assets/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /templates/community/stellar-simple/assets/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar-simple/assets/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /templates/community/stellar-simple/assets/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar-simple/assets/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /templates/community/stellar-simple/assets/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar-simple/assets/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /templates/community/stellar-simple/assets/webfonts/fa-solid-900.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar-simple/assets/webfonts/fa-solid-900.svg -------------------------------------------------------------------------------- /templates/community/stellar-simple/assets/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar-simple/assets/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /templates/community/stellar-simple/assets/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar-simple/assets/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /templates/community/stellar-simple/assets/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar-simple/assets/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /templates/community/stellar-simple/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar-simple/images/logo.svg -------------------------------------------------------------------------------- /templates/community/stellar-simple/images/pic01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar-simple/images/pic01.jpg -------------------------------------------------------------------------------- /templates/community/stellar-simple/images/pic02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar-simple/images/pic02.jpg -------------------------------------------------------------------------------- /templates/community/stellar-simple/images/pic03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar-simple/images/pic03.jpg -------------------------------------------------------------------------------- /templates/community/stellar-simple/images/pic04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar-simple/images/pic04.jpg -------------------------------------------------------------------------------- /templates/community/stellar-simple/images/pic05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar-simple/images/pic05.jpg -------------------------------------------------------------------------------- /templates/community/stellar-simple/images/pic06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar-simple/images/pic06.jpg -------------------------------------------------------------------------------- /templates/community/stellar-simple/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar-simple/index.html -------------------------------------------------------------------------------- /templates/community/stellar/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar/LICENSE.txt -------------------------------------------------------------------------------- /templates/community/stellar/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar/README.txt -------------------------------------------------------------------------------- /templates/community/stellar/assets/css/fontawesome-all.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar/assets/css/fontawesome-all.min.css -------------------------------------------------------------------------------- /templates/community/stellar/assets/css/images/overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar/assets/css/images/overlay.png -------------------------------------------------------------------------------- /templates/community/stellar/assets/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar/assets/css/main.css -------------------------------------------------------------------------------- /templates/community/stellar/assets/css/noscript.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar/assets/css/noscript.css -------------------------------------------------------------------------------- /templates/community/stellar/assets/js/breakpoints.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar/assets/js/breakpoints.min.js -------------------------------------------------------------------------------- /templates/community/stellar/assets/js/browser.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar/assets/js/browser.min.js -------------------------------------------------------------------------------- /templates/community/stellar/assets/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar/assets/js/jquery.min.js -------------------------------------------------------------------------------- /templates/community/stellar/assets/js/jquery.scrollex.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar/assets/js/jquery.scrollex.min.js -------------------------------------------------------------------------------- /templates/community/stellar/assets/js/jquery.scrolly.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar/assets/js/jquery.scrolly.min.js -------------------------------------------------------------------------------- /templates/community/stellar/assets/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar/assets/js/main.js -------------------------------------------------------------------------------- /templates/community/stellar/assets/js/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar/assets/js/util.js -------------------------------------------------------------------------------- /templates/community/stellar/assets/sass/base/_page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar/assets/sass/base/_page.scss -------------------------------------------------------------------------------- /templates/community/stellar/assets/sass/base/_reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar/assets/sass/base/_reset.scss -------------------------------------------------------------------------------- /templates/community/stellar/assets/sass/base/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar/assets/sass/base/_typography.scss -------------------------------------------------------------------------------- /templates/community/stellar/assets/sass/components/_actions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar/assets/sass/components/_actions.scss -------------------------------------------------------------------------------- /templates/community/stellar/assets/sass/components/_box.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar/assets/sass/components/_box.scss -------------------------------------------------------------------------------- /templates/community/stellar/assets/sass/components/_button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar/assets/sass/components/_button.scss -------------------------------------------------------------------------------- /templates/community/stellar/assets/sass/components/_features.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar/assets/sass/components/_features.scss -------------------------------------------------------------------------------- /templates/community/stellar/assets/sass/components/_form.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar/assets/sass/components/_form.scss -------------------------------------------------------------------------------- /templates/community/stellar/assets/sass/components/_icon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar/assets/sass/components/_icon.scss -------------------------------------------------------------------------------- /templates/community/stellar/assets/sass/components/_icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar/assets/sass/components/_icons.scss -------------------------------------------------------------------------------- /templates/community/stellar/assets/sass/components/_image.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar/assets/sass/components/_image.scss -------------------------------------------------------------------------------- /templates/community/stellar/assets/sass/components/_list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar/assets/sass/components/_list.scss -------------------------------------------------------------------------------- /templates/community/stellar/assets/sass/components/_row.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar/assets/sass/components/_row.scss -------------------------------------------------------------------------------- /templates/community/stellar/assets/sass/components/_section.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar/assets/sass/components/_section.scss -------------------------------------------------------------------------------- /templates/community/stellar/assets/sass/components/_spotlight.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar/assets/sass/components/_spotlight.scss -------------------------------------------------------------------------------- /templates/community/stellar/assets/sass/components/_statistics.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar/assets/sass/components/_statistics.scss -------------------------------------------------------------------------------- /templates/community/stellar/assets/sass/components/_table.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar/assets/sass/components/_table.scss -------------------------------------------------------------------------------- /templates/community/stellar/assets/sass/layout/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar/assets/sass/layout/_footer.scss -------------------------------------------------------------------------------- /templates/community/stellar/assets/sass/layout/_header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar/assets/sass/layout/_header.scss -------------------------------------------------------------------------------- /templates/community/stellar/assets/sass/layout/_main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar/assets/sass/layout/_main.scss -------------------------------------------------------------------------------- /templates/community/stellar/assets/sass/layout/_nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar/assets/sass/layout/_nav.scss -------------------------------------------------------------------------------- /templates/community/stellar/assets/sass/layout/_wrapper.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar/assets/sass/layout/_wrapper.scss -------------------------------------------------------------------------------- /templates/community/stellar/assets/sass/libs/_breakpoints.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar/assets/sass/libs/_breakpoints.scss -------------------------------------------------------------------------------- /templates/community/stellar/assets/sass/libs/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar/assets/sass/libs/_functions.scss -------------------------------------------------------------------------------- /templates/community/stellar/assets/sass/libs/_html-grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar/assets/sass/libs/_html-grid.scss -------------------------------------------------------------------------------- /templates/community/stellar/assets/sass/libs/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar/assets/sass/libs/_mixins.scss -------------------------------------------------------------------------------- /templates/community/stellar/assets/sass/libs/_vars.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar/assets/sass/libs/_vars.scss -------------------------------------------------------------------------------- /templates/community/stellar/assets/sass/libs/_vendor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar/assets/sass/libs/_vendor.scss -------------------------------------------------------------------------------- /templates/community/stellar/assets/sass/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar/assets/sass/main.scss -------------------------------------------------------------------------------- /templates/community/stellar/assets/sass/noscript.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar/assets/sass/noscript.scss -------------------------------------------------------------------------------- /templates/community/stellar/assets/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar/assets/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /templates/community/stellar/assets/webfonts/fa-brands-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar/assets/webfonts/fa-brands-400.svg -------------------------------------------------------------------------------- /templates/community/stellar/assets/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar/assets/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /templates/community/stellar/assets/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar/assets/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /templates/community/stellar/assets/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar/assets/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /templates/community/stellar/assets/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar/assets/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /templates/community/stellar/assets/webfonts/fa-regular-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar/assets/webfonts/fa-regular-400.svg -------------------------------------------------------------------------------- /templates/community/stellar/assets/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar/assets/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /templates/community/stellar/assets/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar/assets/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /templates/community/stellar/assets/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar/assets/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /templates/community/stellar/assets/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar/assets/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /templates/community/stellar/assets/webfonts/fa-solid-900.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar/assets/webfonts/fa-solid-900.svg -------------------------------------------------------------------------------- /templates/community/stellar/assets/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar/assets/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /templates/community/stellar/assets/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar/assets/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /templates/community/stellar/assets/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar/assets/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /templates/community/stellar/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar/images/logo.svg -------------------------------------------------------------------------------- /templates/community/stellar/images/pic01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar/images/pic01.jpg -------------------------------------------------------------------------------- /templates/community/stellar/images/pic02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar/images/pic02.jpg -------------------------------------------------------------------------------- /templates/community/stellar/images/pic03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar/images/pic03.jpg -------------------------------------------------------------------------------- /templates/community/stellar/images/pic04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar/images/pic04.jpg -------------------------------------------------------------------------------- /templates/community/stellar/images/pic05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar/images/pic05.jpg -------------------------------------------------------------------------------- /templates/community/stellar/images/pic06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar/images/pic06.jpg -------------------------------------------------------------------------------- /templates/community/stellar/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/stellar/index.html -------------------------------------------------------------------------------- /templates/community/web3-ui-components/guarda-donate-button/guarda_pay_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/web3-ui-components/guarda-donate-button/guarda_pay_off.png -------------------------------------------------------------------------------- /templates/community/web3-ui-components/guarda-donate-button/guarda_pay_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/web3-ui-components/guarda-donate-button/guarda_pay_over.png -------------------------------------------------------------------------------- /templates/community/web3-ui-components/guarda-donate-button/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/community/web3-ui-components/guarda-donate-button/index.html -------------------------------------------------------------------------------- /templates/unstoppable-domains/ambitious/assets/Lato-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/unstoppable-domains/ambitious/assets/Lato-Black.ttf -------------------------------------------------------------------------------- /templates/unstoppable-domains/ambitious/assets/Lato-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/unstoppable-domains/ambitious/assets/Lato-Bold.ttf -------------------------------------------------------------------------------- /templates/unstoppable-domains/ambitious/assets/Lato-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/unstoppable-domains/ambitious/assets/Lato-Regular.ttf -------------------------------------------------------------------------------- /templates/unstoppable-domains/ambitious/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/unstoppable-domains/ambitious/assets/favicon.ico -------------------------------------------------------------------------------- /templates/unstoppable-domains/ambitious/assets/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/unstoppable-domains/ambitious/assets/image.png -------------------------------------------------------------------------------- /templates/unstoppable-domains/ambitious/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/unstoppable-domains/ambitious/index.html -------------------------------------------------------------------------------- /templates/unstoppable-domains/ambitious/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/unstoppable-domains/ambitious/styles.css -------------------------------------------------------------------------------- /templates/unstoppable-domains/coming-soon/assets/Lato-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/unstoppable-domains/coming-soon/assets/Lato-Black.ttf -------------------------------------------------------------------------------- /templates/unstoppable-domains/coming-soon/assets/Montserrat-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/unstoppable-domains/coming-soon/assets/Montserrat-Bold.ttf -------------------------------------------------------------------------------- /templates/unstoppable-domains/coming-soon/assets/Montserrat-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/unstoppable-domains/coming-soon/assets/Montserrat-Regular.ttf -------------------------------------------------------------------------------- /templates/unstoppable-domains/coming-soon/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/unstoppable-domains/coming-soon/assets/favicon.ico -------------------------------------------------------------------------------- /templates/unstoppable-domains/coming-soon/assets/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/unstoppable-domains/coming-soon/assets/image.png -------------------------------------------------------------------------------- /templates/unstoppable-domains/coming-soon/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/unstoppable-domains/coming-soon/index.html -------------------------------------------------------------------------------- /templates/unstoppable-domains/coming-soon/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/unstoppable-domains/coming-soon/styles.css -------------------------------------------------------------------------------- /templates/unstoppable-domains/gentle/assets/Montserrat-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/unstoppable-domains/gentle/assets/Montserrat-Bold.ttf -------------------------------------------------------------------------------- /templates/unstoppable-domains/gentle/assets/Montserrat-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/unstoppable-domains/gentle/assets/Montserrat-Regular.ttf -------------------------------------------------------------------------------- /templates/unstoppable-domains/gentle/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/unstoppable-domains/gentle/assets/favicon.ico -------------------------------------------------------------------------------- /templates/unstoppable-domains/gentle/assets/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/unstoppable-domains/gentle/assets/image.png -------------------------------------------------------------------------------- /templates/unstoppable-domains/gentle/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/unstoppable-domains/gentle/index.html -------------------------------------------------------------------------------- /templates/unstoppable-domains/gentle/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/unstoppable-domains/gentle/styles.css -------------------------------------------------------------------------------- /templates/unstoppable-domains/outstanding/assets/Lato-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/unstoppable-domains/outstanding/assets/Lato-Black.ttf -------------------------------------------------------------------------------- /templates/unstoppable-domains/outstanding/assets/Lato-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/unstoppable-domains/outstanding/assets/Lato-Bold.ttf -------------------------------------------------------------------------------- /templates/unstoppable-domains/outstanding/assets/Lato-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/unstoppable-domains/outstanding/assets/Lato-Regular.ttf -------------------------------------------------------------------------------- /templates/unstoppable-domains/outstanding/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/unstoppable-domains/outstanding/assets/favicon.ico -------------------------------------------------------------------------------- /templates/unstoppable-domains/outstanding/assets/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/unstoppable-domains/outstanding/assets/image.png -------------------------------------------------------------------------------- /templates/unstoppable-domains/outstanding/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/unstoppable-domains/outstanding/index.html -------------------------------------------------------------------------------- /templates/unstoppable-domains/outstanding/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/templates/unstoppable-domains/outstanding/styles.css -------------------------------------------------------------------------------- /unstoppable-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/decentralized-websites/HEAD/unstoppable-logo.svg --------------------------------------------------------------------------------