├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── _config.yml ├── _drafts └── 2020-12-30-splitting-the-problem-dimensions.html ├── _layouts ├── default.html ├── page.html └── post.html ├── assets ├── logo-openGraph.png ├── logoWithName-499x128.png ├── mantella-aurantiaca.svg ├── mantella-baroni.svg ├── mantella-bernhardi.svg ├── mantella-cowanii.svg ├── mantella-crocea.svg ├── mantella-ebenaui.svg ├── mantella-expectata.svg ├── mantella-haraldmeieri.svg ├── mantella-manery.svg ├── mantella-milotympanum.svg ├── mantella-viridis.svg ├── montserrat-400-italic.woff2 ├── montserrat-400-normal.woff2 ├── montserrat-600-normal.woff2 ├── nunito-300-normal.woff2 └── nunito-700-normal.woff2 ├── data-privacy.html ├── index.html ├── lib ├── salp.js └── utility.js ├── robots.txt └── sitemap.xml /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebiniemann/Mantella/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebiniemann/Mantella/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebiniemann/Mantella/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebiniemann/Mantella/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebiniemann/Mantella/HEAD/_config.yml -------------------------------------------------------------------------------- /_drafts/2020-12-30-splitting-the-problem-dimensions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebiniemann/Mantella/HEAD/_drafts/2020-12-30-splitting-the-problem-dimensions.html -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebiniemann/Mantella/HEAD/_layouts/default.html -------------------------------------------------------------------------------- /_layouts/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebiniemann/Mantella/HEAD/_layouts/page.html -------------------------------------------------------------------------------- /_layouts/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebiniemann/Mantella/HEAD/_layouts/post.html -------------------------------------------------------------------------------- /assets/logo-openGraph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebiniemann/Mantella/HEAD/assets/logo-openGraph.png -------------------------------------------------------------------------------- /assets/logoWithName-499x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebiniemann/Mantella/HEAD/assets/logoWithName-499x128.png -------------------------------------------------------------------------------- /assets/mantella-aurantiaca.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebiniemann/Mantella/HEAD/assets/mantella-aurantiaca.svg -------------------------------------------------------------------------------- /assets/mantella-baroni.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebiniemann/Mantella/HEAD/assets/mantella-baroni.svg -------------------------------------------------------------------------------- /assets/mantella-bernhardi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebiniemann/Mantella/HEAD/assets/mantella-bernhardi.svg -------------------------------------------------------------------------------- /assets/mantella-cowanii.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebiniemann/Mantella/HEAD/assets/mantella-cowanii.svg -------------------------------------------------------------------------------- /assets/mantella-crocea.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebiniemann/Mantella/HEAD/assets/mantella-crocea.svg -------------------------------------------------------------------------------- /assets/mantella-ebenaui.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebiniemann/Mantella/HEAD/assets/mantella-ebenaui.svg -------------------------------------------------------------------------------- /assets/mantella-expectata.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebiniemann/Mantella/HEAD/assets/mantella-expectata.svg -------------------------------------------------------------------------------- /assets/mantella-haraldmeieri.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebiniemann/Mantella/HEAD/assets/mantella-haraldmeieri.svg -------------------------------------------------------------------------------- /assets/mantella-manery.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebiniemann/Mantella/HEAD/assets/mantella-manery.svg -------------------------------------------------------------------------------- /assets/mantella-milotympanum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebiniemann/Mantella/HEAD/assets/mantella-milotympanum.svg -------------------------------------------------------------------------------- /assets/mantella-viridis.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebiniemann/Mantella/HEAD/assets/mantella-viridis.svg -------------------------------------------------------------------------------- /assets/montserrat-400-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebiniemann/Mantella/HEAD/assets/montserrat-400-italic.woff2 -------------------------------------------------------------------------------- /assets/montserrat-400-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebiniemann/Mantella/HEAD/assets/montserrat-400-normal.woff2 -------------------------------------------------------------------------------- /assets/montserrat-600-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebiniemann/Mantella/HEAD/assets/montserrat-600-normal.woff2 -------------------------------------------------------------------------------- /assets/nunito-300-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebiniemann/Mantella/HEAD/assets/nunito-300-normal.woff2 -------------------------------------------------------------------------------- /assets/nunito-700-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebiniemann/Mantella/HEAD/assets/nunito-700-normal.woff2 -------------------------------------------------------------------------------- /data-privacy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebiniemann/Mantella/HEAD/data-privacy.html -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebiniemann/Mantella/HEAD/index.html -------------------------------------------------------------------------------- /lib/salp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebiniemann/Mantella/HEAD/lib/salp.js -------------------------------------------------------------------------------- /lib/utility.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebiniemann/Mantella/HEAD/lib/utility.js -------------------------------------------------------------------------------- /robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebiniemann/Mantella/HEAD/robots.txt -------------------------------------------------------------------------------- /sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebiniemann/Mantella/HEAD/sitemap.xml --------------------------------------------------------------------------------