Nicky Nicolson
Add solanacaea hosted portal site
5a291f2
---
layout: documentation
sideNavigation: sidenav.taxonomy
title: Browse
permalink: /taxonomy/browse
description: Browse the checklist of Solanaceae
klass: fullwidth
lang-ref: species-browse
---
You can download the latest version of the Solanceae Source list in .txt (with DarwinCore fields) from the [Catalogue of Life ChecklistBank](https://data.catalogueoflife.org/).
<!--react and gbif component-->
<script src="https://unpkg.com/react@16/umd/react.production.min.js"></script>
<script src="https://unpkg.com/react-dom@16/umd/react-dom.production.min.js"></script>
<script src="https://cdn.jsdelivr.net/gh/CatalogueOfLife/portal-components@{{site.col.version}}/umd/col-browser.min.js" ></script>
<div id="tree"></div>
<script>
'use strict';
const e = React.createElement;
class Tree extends React.Component {
render() {
return e(
ColBrowser.Tree,
{
catalogueKey: '{{site.col.catalogueKey}}',
pathToTree: '/taxonomy/browse',
pathToSearch: '/taxonomy/search',
pathToTaxon: '/taxonomy/taxon/',
defaultTaxonKey: '{{site.col.defaultTaxonKey}}',
citation: 'top'
}
);
}
}
const domContainer = document.querySelector('#tree');
ReactDOM.render(e(Tree), domContainer);
</script>