I'm trying to build a little Flask project using Polymer. I don't think the flask aspect is messing with me. When I click on the 'Edit Species' paper-item I don't go anywhere.
<body>
<core-header-panel flex>
<core-toolbar class="medium-tall">
<paper-menu-button icon="menu">
<paper-item label="Home" center horizontal layout flex></paper-item>
<paper-item label="Edit Species" center horizontal layout flex>
<a href="/speciesEdit"></a>
</paper-item>
...more...
</paper-menu-button>
...and so on...
Is there something else I need to do to get the link to work inside a paper-menu-button?
Thanks for your help!