├── .alexrc ├── .babelrc ├── .eleventy.js ├── .eleventyignore ├── .github └── workflows │ └── deploy-gh-pages.yml ├── .gitignore ├── .gitlab-ci.yml ├── .nojekyll ├── .vscode └── settings.json ├── CHANGELOG.md ├── Dockerfile ├── LICENSE ├── README.md ├── docs ├── ALGOLIA.md ├── ELASTICSEARCH.md ├── GOOGLE_ANALYTICS.md └── KB_REACT_COMPONENTS.md ├── fundamenty.site.yml ├── package.json ├── postcss.config.js ├── src ├── 404.njk ├── _data │ ├── l10n │ │ ├── menu_en.json │ │ ├── menu_es.json │ │ ├── menu_ko.json │ │ ├── messages_en.json │ │ └── messages_es.json │ ├── site.js │ └── site.json ├── _includes │ ├── apibrowser │ │ └── apibrowser.njk │ ├── layout │ │ ├── base.njk │ │ ├── footer.njk │ │ ├── landing.njk │ │ ├── page_with_posts.njk │ │ ├── post.njk │ │ ├── posts-json.njk │ │ ├── redirect.njk │ │ └── top-nav.njk │ ├── products │ │ ├── products_base.njk │ │ ├── products_item.njk │ │ └── products_portal.njk │ └── radar │ │ ├── README.md │ │ ├── color_palette.njk │ │ ├── radar.en.json │ │ ├── radar.es.json │ │ ├── radar_base.njk │ │ ├── radar_category.njk │ │ ├── radar_item.njk │ │ └── radar_portal.njk ├── api │ ├── api.json │ ├── pages-json.njk │ ├── posts-json.njk │ ├── product-json.njk │ └── radar-json.njk ├── apispecs │ └── am-title_manager.yml ├── creasoft_dev_logo_icon.ico ├── en │ ├── apibro │ │ ├── apibro.json │ │ ├── apiredoc.md │ │ ├── apiswagger.md │ │ └── index.md │ ├── en.json │ ├── index.md │ ├── pages │ │ ├── about.md │ │ ├── articles.md │ │ ├── pages.json │ │ └── search.md │ ├── posts │ │ ├── 2020-07-10-first-post.md │ │ └── posts.json │ ├── products │ │ ├── index.md │ │ └── repo │ │ │ ├── myproduct.md │ │ │ └── repo.json │ └── radar │ │ ├── index.md │ │ ├── radar.json │ │ ├── techniques.md │ │ ├── techniques │ │ ├── domain-driven-design.md │ │ └── techniques.json │ │ ├── tools.md │ │ └── tools │ │ ├── tools.json │ │ └── typescript.md ├── es │ ├── es.json │ ├── index.md │ ├── pages │ │ ├── acerca.md │ │ ├── articulos.md │ │ └── pages.json │ └── posts │ │ ├── 2020 │ │ └── 2020-07-10-primer-articulo.md │ │ └── posts.json ├── images │ ├── algolia-blue-mark.png │ ├── background.jpg │ ├── logo.ico │ ├── logo.png │ ├── posts │ │ ├── books-1617327_1920-poixabay.jpg │ │ └── fundamenty_es.jpg │ └── products │ │ └── fundamenty-logo.png ├── index.md ├── robots-txt.njk ├── scripts │ ├── ApiDocSwagger.jsx │ ├── ProductSearch.jsx │ ├── Search.jsx │ ├── algolia.js │ └── main.js ├── sitemap-xml.njk └── styles │ ├── algolia.css │ ├── main.css │ └── radar.css ├── tailwind.config.js ├── tools ├── fundamenty-cli.js ├── scripts │ ├── README.md │ ├── apibro │ │ └── pull.js │ ├── archi │ │ ├── $archi-item.md.njk │ │ └── item.js │ ├── post │ │ ├── $post-item.md.njk │ │ └── item.js │ ├── radar │ │ ├── $radar-item.md.njk │ │ └── item.js │ ├── search │ │ ├── algolia.js │ │ ├── es.js │ │ └── es_index_config.json │ └── site │ │ ├── $.env.njk │ │ ├── $_data_site.json.njk │ │ ├── $locale.json.njk │ │ ├── init.js │ │ └── locale.js ├── utils.js └── utils.test.js ├── utils ├── filters.js └── passthroughs.js ├── webpack.config.js └── yarn.lock /.alexrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/.alexrc -------------------------------------------------------------------------------- /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/.babelrc -------------------------------------------------------------------------------- /.eleventy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/.eleventy.js -------------------------------------------------------------------------------- /.eleventyignore: -------------------------------------------------------------------------------- 1 | README.md 2 | src/_drafts/ -------------------------------------------------------------------------------- /.github/workflows/deploy-gh-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/.github/workflows/deploy-gh-pages.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.nojekyll: -------------------------------------------------------------------------------- 1 | # To disable Jekyll build process in GitHub -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/README.md -------------------------------------------------------------------------------- /docs/ALGOLIA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/docs/ALGOLIA.md -------------------------------------------------------------------------------- /docs/ELASTICSEARCH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/docs/ELASTICSEARCH.md -------------------------------------------------------------------------------- /docs/GOOGLE_ANALYTICS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/docs/GOOGLE_ANALYTICS.md -------------------------------------------------------------------------------- /docs/KB_REACT_COMPONENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/docs/KB_REACT_COMPONENTS.md -------------------------------------------------------------------------------- /fundamenty.site.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/fundamenty.site.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/postcss.config.js -------------------------------------------------------------------------------- /src/404.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/src/404.njk -------------------------------------------------------------------------------- /src/_data/l10n/menu_en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/src/_data/l10n/menu_en.json -------------------------------------------------------------------------------- /src/_data/l10n/menu_es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/src/_data/l10n/menu_es.json -------------------------------------------------------------------------------- /src/_data/l10n/menu_ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/src/_data/l10n/menu_ko.json -------------------------------------------------------------------------------- /src/_data/l10n/messages_en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/src/_data/l10n/messages_en.json -------------------------------------------------------------------------------- /src/_data/l10n/messages_es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/src/_data/l10n/messages_es.json -------------------------------------------------------------------------------- /src/_data/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/src/_data/site.js -------------------------------------------------------------------------------- /src/_data/site.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/src/_data/site.json -------------------------------------------------------------------------------- /src/_includes/apibrowser/apibrowser.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/src/_includes/apibrowser/apibrowser.njk -------------------------------------------------------------------------------- /src/_includes/layout/base.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/src/_includes/layout/base.njk -------------------------------------------------------------------------------- /src/_includes/layout/footer.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/src/_includes/layout/footer.njk -------------------------------------------------------------------------------- /src/_includes/layout/landing.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/src/_includes/layout/landing.njk -------------------------------------------------------------------------------- /src/_includes/layout/page_with_posts.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/src/_includes/layout/page_with_posts.njk -------------------------------------------------------------------------------- /src/_includes/layout/post.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/src/_includes/layout/post.njk -------------------------------------------------------------------------------- /src/_includes/layout/posts-json.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/src/_includes/layout/posts-json.njk -------------------------------------------------------------------------------- /src/_includes/layout/redirect.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/src/_includes/layout/redirect.njk -------------------------------------------------------------------------------- /src/_includes/layout/top-nav.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/src/_includes/layout/top-nav.njk -------------------------------------------------------------------------------- /src/_includes/products/products_base.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/src/_includes/products/products_base.njk -------------------------------------------------------------------------------- /src/_includes/products/products_item.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/src/_includes/products/products_item.njk -------------------------------------------------------------------------------- /src/_includes/products/products_portal.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/src/_includes/products/products_portal.njk -------------------------------------------------------------------------------- /src/_includes/radar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/src/_includes/radar/README.md -------------------------------------------------------------------------------- /src/_includes/radar/color_palette.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/src/_includes/radar/color_palette.njk -------------------------------------------------------------------------------- /src/_includes/radar/radar.en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/src/_includes/radar/radar.en.json -------------------------------------------------------------------------------- /src/_includes/radar/radar.es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/src/_includes/radar/radar.es.json -------------------------------------------------------------------------------- /src/_includes/radar/radar_base.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/src/_includes/radar/radar_base.njk -------------------------------------------------------------------------------- /src/_includes/radar/radar_category.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/src/_includes/radar/radar_category.njk -------------------------------------------------------------------------------- /src/_includes/radar/radar_item.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/src/_includes/radar/radar_item.njk -------------------------------------------------------------------------------- /src/_includes/radar/radar_portal.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/src/_includes/radar/radar_portal.njk -------------------------------------------------------------------------------- /src/api/api.json: -------------------------------------------------------------------------------- 1 | { 2 | "sitemapExclude": true 3 | } -------------------------------------------------------------------------------- /src/api/pages-json.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/src/api/pages-json.njk -------------------------------------------------------------------------------- /src/api/posts-json.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/src/api/posts-json.njk -------------------------------------------------------------------------------- /src/api/product-json.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/src/api/product-json.njk -------------------------------------------------------------------------------- /src/api/radar-json.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/src/api/radar-json.njk -------------------------------------------------------------------------------- /src/apispecs/am-title_manager.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/src/apispecs/am-title_manager.yml -------------------------------------------------------------------------------- /src/creasoft_dev_logo_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/src/creasoft_dev_logo_icon.ico -------------------------------------------------------------------------------- /src/en/apibro/apibro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/src/en/apibro/apibro.json -------------------------------------------------------------------------------- /src/en/apibro/apiredoc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/src/en/apibro/apiredoc.md -------------------------------------------------------------------------------- /src/en/apibro/apiswagger.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/src/en/apibro/apiswagger.md -------------------------------------------------------------------------------- /src/en/apibro/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/src/en/apibro/index.md -------------------------------------------------------------------------------- /src/en/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/src/en/en.json -------------------------------------------------------------------------------- /src/en/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/src/en/index.md -------------------------------------------------------------------------------- /src/en/pages/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/src/en/pages/about.md -------------------------------------------------------------------------------- /src/en/pages/articles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/src/en/pages/articles.md -------------------------------------------------------------------------------- /src/en/pages/pages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/src/en/pages/pages.json -------------------------------------------------------------------------------- /src/en/pages/search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/src/en/pages/search.md -------------------------------------------------------------------------------- /src/en/posts/2020-07-10-first-post.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/src/en/posts/2020-07-10-first-post.md -------------------------------------------------------------------------------- /src/en/posts/posts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/src/en/posts/posts.json -------------------------------------------------------------------------------- /src/en/products/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/src/en/products/index.md -------------------------------------------------------------------------------- /src/en/products/repo/myproduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/src/en/products/repo/myproduct.md -------------------------------------------------------------------------------- /src/en/products/repo/repo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/src/en/products/repo/repo.json -------------------------------------------------------------------------------- /src/en/radar/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/src/en/radar/index.md -------------------------------------------------------------------------------- /src/en/radar/radar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/src/en/radar/radar.json -------------------------------------------------------------------------------- /src/en/radar/techniques.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/src/en/radar/techniques.md -------------------------------------------------------------------------------- /src/en/radar/techniques/domain-driven-design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/src/en/radar/techniques/domain-driven-design.md -------------------------------------------------------------------------------- /src/en/radar/techniques/techniques.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/src/en/radar/techniques/techniques.json -------------------------------------------------------------------------------- /src/en/radar/tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/src/en/radar/tools.md -------------------------------------------------------------------------------- /src/en/radar/tools/tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/src/en/radar/tools/tools.json -------------------------------------------------------------------------------- /src/en/radar/tools/typescript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/src/en/radar/tools/typescript.md -------------------------------------------------------------------------------- /src/es/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/src/es/es.json -------------------------------------------------------------------------------- /src/es/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/src/es/index.md -------------------------------------------------------------------------------- /src/es/pages/acerca.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: A Cerca 3 | --- 4 | 5 | # Compartamos conocimientos! -------------------------------------------------------------------------------- /src/es/pages/articulos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/src/es/pages/articulos.md -------------------------------------------------------------------------------- /src/es/pages/pages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/src/es/pages/pages.json -------------------------------------------------------------------------------- /src/es/posts/2020/2020-07-10-primer-articulo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/src/es/posts/2020/2020-07-10-primer-articulo.md -------------------------------------------------------------------------------- /src/es/posts/posts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/src/es/posts/posts.json -------------------------------------------------------------------------------- /src/images/algolia-blue-mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/src/images/algolia-blue-mark.png -------------------------------------------------------------------------------- /src/images/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/src/images/background.jpg -------------------------------------------------------------------------------- /src/images/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/src/images/logo.ico -------------------------------------------------------------------------------- /src/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/src/images/logo.png -------------------------------------------------------------------------------- /src/images/posts/books-1617327_1920-poixabay.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/src/images/posts/books-1617327_1920-poixabay.jpg -------------------------------------------------------------------------------- /src/images/posts/fundamenty_es.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/src/images/posts/fundamenty_es.jpg -------------------------------------------------------------------------------- /src/images/products/fundamenty-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/src/images/products/fundamenty-logo.png -------------------------------------------------------------------------------- /src/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/src/index.md -------------------------------------------------------------------------------- /src/robots-txt.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/src/robots-txt.njk -------------------------------------------------------------------------------- /src/scripts/ApiDocSwagger.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/src/scripts/ApiDocSwagger.jsx -------------------------------------------------------------------------------- /src/scripts/ProductSearch.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/src/scripts/ProductSearch.jsx -------------------------------------------------------------------------------- /src/scripts/Search.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/src/scripts/Search.jsx -------------------------------------------------------------------------------- /src/scripts/algolia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/src/scripts/algolia.js -------------------------------------------------------------------------------- /src/scripts/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/src/scripts/main.js -------------------------------------------------------------------------------- /src/sitemap-xml.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/src/sitemap-xml.njk -------------------------------------------------------------------------------- /src/styles/algolia.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/src/styles/algolia.css -------------------------------------------------------------------------------- /src/styles/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/src/styles/main.css -------------------------------------------------------------------------------- /src/styles/radar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/src/styles/radar.css -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tools/fundamenty-cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/tools/fundamenty-cli.js -------------------------------------------------------------------------------- /tools/scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/tools/scripts/README.md -------------------------------------------------------------------------------- /tools/scripts/apibro/pull.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/tools/scripts/apibro/pull.js -------------------------------------------------------------------------------- /tools/scripts/archi/$archi-item.md.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/tools/scripts/archi/$archi-item.md.njk -------------------------------------------------------------------------------- /tools/scripts/archi/item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/tools/scripts/archi/item.js -------------------------------------------------------------------------------- /tools/scripts/post/$post-item.md.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/tools/scripts/post/$post-item.md.njk -------------------------------------------------------------------------------- /tools/scripts/post/item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/tools/scripts/post/item.js -------------------------------------------------------------------------------- /tools/scripts/radar/$radar-item.md.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/tools/scripts/radar/$radar-item.md.njk -------------------------------------------------------------------------------- /tools/scripts/radar/item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/tools/scripts/radar/item.js -------------------------------------------------------------------------------- /tools/scripts/search/algolia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/tools/scripts/search/algolia.js -------------------------------------------------------------------------------- /tools/scripts/search/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/tools/scripts/search/es.js -------------------------------------------------------------------------------- /tools/scripts/search/es_index_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/tools/scripts/search/es_index_config.json -------------------------------------------------------------------------------- /tools/scripts/site/$.env.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/tools/scripts/site/$.env.njk -------------------------------------------------------------------------------- /tools/scripts/site/$_data_site.json.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/tools/scripts/site/$_data_site.json.njk -------------------------------------------------------------------------------- /tools/scripts/site/$locale.json.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/tools/scripts/site/$locale.json.njk -------------------------------------------------------------------------------- /tools/scripts/site/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/tools/scripts/site/init.js -------------------------------------------------------------------------------- /tools/scripts/site/locale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/tools/scripts/site/locale.js -------------------------------------------------------------------------------- /tools/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/tools/utils.js -------------------------------------------------------------------------------- /tools/utils.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/tools/utils.test.js -------------------------------------------------------------------------------- /utils/filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/utils/filters.js -------------------------------------------------------------------------------- /utils/passthroughs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/utils/passthroughs.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/webpack.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creasoft-dev/fundamenty/HEAD/yarn.lock --------------------------------------------------------------------------------